diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-01-02 23:07:08 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-01-02 23:07:08 (GMT) |
commit | c5de0969ca2a82c66efd30bb675f03c2324a3b27 (patch) | |
tree | 9a50d49199849591f11ef747cc63b1ed88f7622c /Misc/NEWS | |
parent | 44e1581df399d5a5d609296a0001c155a152e22a (diff) | |
download | cpython-c5de0969ca2a82c66efd30bb675f03c2324a3b27.zip cpython-c5de0969ca2a82c66efd30bb675f03c2324a3b27.tar.gz cpython-c5de0969ca2a82c66efd30bb675f03c2324a3b27.tar.bz2 |
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/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -108,6 +108,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. |