diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-08-18 19:23:47 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-08-18 19:23:47 (GMT) |
commit | 351ffb80c3fffc2996cc320fd9e0eaf3778eba25 (patch) | |
tree | 68cae3a2d1cb3725df982beb86b69dbc0b4da5d6 /Misc/NEWS | |
parent | 26f521668a52d233597c713fd20a294437ad1c26 (diff) | |
download | cpython-351ffb80c3fffc2996cc320fd9e0eaf3778eba25.zip cpython-351ffb80c3fffc2996cc320fd9e0eaf3778eba25.tar.gz cpython-351ffb80c3fffc2996cc320fd9e0eaf3778eba25.tar.bz2 |
#2234 distutils failed with mingw binutils 2.18.50.20080109.
Be less strict when parsing these version numbers,
they don't necessarily follow the python numbering scheme.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -48,6 +48,10 @@ Core and Builtins Library ------- +- Issue #2234: distutils failed for some versions of the cygwin compiler. The + version reported by these tools does not necessarily follow the python + version numbering scheme, so the module is less strict when parsing it. + - Issue #2235: Added Py3k warnings for types which will become unhashable under the stricter __hash__ inheritance rules in 3.0. Several types which did not meet the rules for hash invariants and were already |