Incompatibility between _decimal and _pydecimal: Context.__hash__
未关闭
@rhettinger 已经在做这个了。
开始于 2022年6月22日。
extension-modules
type-bug
- 主要语言
- Python
- 星标
- 77.2k
- 派生
- 36k
- PR 合并指标
- PR 指标待抓取
描述
Bug report
_decimal.Context.__hash__() returns an int value, while _pydecimal.Context.__hash__() is explicitly disabled:
Python 3.10.5 (main, Jun 7 2022, 12:59:15) [GCC 10.2.1 20210110] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from _decimal import Context
>>> Context().__hash__()
8743628939711
>>> from _pydecimal import Context
>>> Context().__hash__()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'NoneType' object is not callable
I assume that _decimal just didn't bother to override __hash__ and inherits its implementation from object, but I think the implementations should match.
Your environment
Tested:
- Python 3.10.5 (main, Jun 7 2022, 12:59:15) [GCC 10.2.1 20210110] on linux
- Python 3.9.2 (default, Feb 28 2021, 17:03:44)
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
评估
这个 Issue 还没有评估数据。