summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-01-02 23:07:08 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-01-02 23:07:08 (GMT)
commitc5de0969ca2a82c66efd30bb675f03c2324a3b27 (patch)
tree9a50d49199849591f11ef747cc63b1ed88f7622c /Misc/NEWS
parent44e1581df399d5a5d609296a0001c155a152e22a (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f286561..4169950 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.