diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-01-02 23:23:21 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-01-02 23:23:21 (GMT) |
commit | f923641b414992d2960d6cf7988df4f88ebe2fb6 (patch) | |
tree | 367bb5e95244a8ade41612bddad5f13f12784d2d /Misc | |
parent | ad9d96bc1a706302bb94710f8a1bc21dcdddb567 (diff) | |
download | cpython-f923641b414992d2960d6cf7988df4f88ebe2fb6.zip cpython-f923641b414992d2960d6cf7988df4f88ebe2fb6.tar.gz cpython-f923641b414992d2960d6cf7988df4f88ebe2fb6.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
@@ -78,6 +78,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 #4702: Throwing a DistutilsPlatformError instead of IOError in case no MSVC compiler is found under Windows. Original patch by Philip Jenvey. |