summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2005-06-20 16:52:57 (GMT)
committerMichael W. Hudson <mwh@python.net>2005-06-20 16:52:57 (GMT)
commit188d4366bed88bbca777c05e7f1a5cb3878ff335 (patch)
treeb77be5cef3108cf44dbf6bcd8e53dc23a77112e7 /Misc
parentfb662972e001aa051e5085862cf5eac323e1756f (diff)
downloadcpython-188d4366bed88bbca777c05e7f1a5cb3878ff335.zip
cpython-188d4366bed88bbca777c05e7f1a5cb3878ff335.tar.gz
cpython-188d4366bed88bbca777c05e7f1a5cb3878ff335.tar.bz2
Fix bug:
[ 1163563 ] Sub threads execute in restricted mode basically by fixing bug 1010677 in a non-broken way. Backport candidate.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4763598..80f7dc7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,12 @@ What's New in Python 2.5 alpha 1?
Core and builtins
-----------------
+- SF bug #1163563: the original fix for bug #1010677 ("thread Module
+ Breaks PyGILState_Ensure()") broke badly in the case of multiple
+ interpreter states; back out that fix and do a better job (see
+ http://mail.python.org/pipermail/python-dev/2005-June/054258.html
+ for a longer write-up of the problem).
+
- SF patch #1180995: marshal now uses a binary format by default when
serializing floats.