diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2008-09-03 18:58:51 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2008-09-03 18:58:51 (GMT) |
commit | fff953048f965b4f0a56f775d3f4ce1634df3da7 (patch) | |
tree | 528a28abc4354994c6818caac6257c52bc0d1704 /Misc | |
parent | 658fad8aae60e6c25a102fb56884bf66577366f8 (diff) | |
download | cpython-fff953048f965b4f0a56f775d3f4ce1634df3da7.zip cpython-fff953048f965b4f0a56f775d3f4ce1634df3da7.tar.gz cpython-fff953048f965b4f0a56f775d3f4ce1634df3da7.tar.bz2 |
Issue #3696: Error parsing arguments on OpenBSD <= 4.4 and Cygwin.
Patch by Amaury Forgeot d'Arc, reviewed by me.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,11 @@ What's New in Python 3.0 release candidate 1 Core and Builtins ----------------- +- Issue #3696: Error parsing arguments on OpenBSD <= 4.4 and Cygwin. On + these systems, the mbstowcs() function is slightly buggy and must be + replaced with strlen() for the purpose of counting of number of wide + characters needed to represent the multi-byte character string. + - Issue #3697: "Fatal Python error: Cannot recover from stack overflow" could be easily encountered under Windows in debug mode when exercising the recursion limit checking code, due to bogus handling of recursion |