Strict equality not working between string and uuid
未关闭
还没有人认领这个 Issue。
- 主要语言
- Python
- 星标
- 5.1k
- 派生
- 2.1k
- 平均合并
- 1 天 19 小时
- 30 天内合并 PR
- 82
描述
Bug Report
--strict-equality seems to only work in very reduced cases. In particular, it is not working when comparing strings and uuids.
To Reproduce
import uuid
from typing import TYPE_CHECKING, reveal_type
a = uuid.uuid4()
b = str(a)
if TYPE_CHECKING:
reveal_type(a)
reveal_type(b)
print(a == b)
c = "c"
d = 500
print(c == d)
Expected Behavior
The comparison in line 10 should raise a comparison overlap error. Something like
test_strict_equality.py:10: error: Non-overlapping equality check (left operand type: "str", right operand type: "uuid.UUID") [comparison-overlap]
Actual Behavior
Mypy does not flag the string/UUID comparison as incompatible
test_strict_equality.py:8: note: Revealed type is "uuid.UUID"
test_strict_equality.py:9: note: Revealed type is "builtins.str"
test_strict_equality.py:14: error: Non-overlapping equality check (left operand type: "str", right operand type: "int") [comparison-overlap]
Found 1 error in 1 file (checked 1 source file)
Your Environment
- Mypy version used: 1.15.0
- Mypy command-line flags:
--strict-equality --show-error-codes - Mypy configuration options from
mypy.ini(and other config files): - Python version used: 3.12.9
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先使用 mypy 1.15.0、Python 3.12.9、--strict-equality 和 --show-error-codes 运行提供的 Python reproducer。调查为什么不会报告 string/uuid.UUID 相等比较,而会报告 string/int,然后为此用例添加或更新 coverage。完成的标准是 UUID 比较产生 comparison-overlap 错误,同时不改变现有的 string/int 行为。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- tooling
- Issue 类型
- 缺陷
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 42/100