我可以确认 Python 3.3 的行为。它以某种方式检测到您传递了None
作为上下文并且它不喜欢它(即使它被记录为默认值)。
Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:57:17) [MSC v.1600 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import decimal
>>> decimal.Decimal('3', None)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: optional argument must be a context
>>> decimal.Decimal('3')
Decimal('3')
更新:但它适用于 3.2.3
Python 3.2.3 (default, Apr 11 2012, 07:12:16) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import decimal
>>> decimal.Decimal('3', None)
Decimal('3')
>>>
更新:原因可以在文档中找到...
Python 3.3 的新增功能说:
十进制
问题 7652 - 集成快速本机十进制算术。Stefan Krah 编写的 C 模块和 libmpdec。
比较decimal.py
文件时,它们一开始可能看起来相同,但 Python 3.3 版本几乎在末尾包含以下代码:
try:
import _decimal
except ImportError:
pass
else:
s1 = set(dir())
s2 = set(dir(_decimal))
for name in s1 - s2:
del globals()[name]
del s1, s2, name
from _decimal import *
...而较旧的 Python 3.2 没有。它说如果_decimal
可以导入二进制实现,decimal.py
则忽略旧的实现。并且二进制模块无法使用 Python 代码调试器进行调试。
问题是观察到的行为是否不应该被视为错误。