diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-01-02 23:16:51 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-01-02 23:16:51 (GMT) |
commit | fd6032d4522945805959030b47ab07985a785ffa (patch) | |
tree | 2f96c4e831eb5e350bacfdaa62b87d0e748dedf5 /Misc | |
parent | d84616535c8084e2c83dccd9418227de7ab9bfa9 (diff) | |
download | cpython-fd6032d4522945805959030b47ab07985a785ffa.zip cpython-fd6032d4522945805959030b47ab07985a785ffa.tar.gz cpython-fd6032d4522945805959030b47ab07985a785ffa.tar.bz2 |
Merged revisions 68182 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68182 | mark.dickinson | 2009-01-02 23:07:08 +0000 (Fri, 02 Jan 2009) | 4 lines
Issue #4812: add missing underscore prefix to some internal-use-only
constants in the decimal module. (Dec_0 becomes _Dec_0, etc.)
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -150,6 +150,9 @@ Core and Builtins Library ------- +- Issue #4812: add missing underscore prefix to some internal-use-only + constants in the decimal module. (Dec_0 becomes _Dec_0, etc.) + - Issue #4795: inspect.isgeneratorfunction() returns False instead of None when the function is not a generator. |