[Python-checkins] python/dist/src/Misc NEWS,1.698,1.699
niemeyer@users.sourceforge.net
niemeyer@users.sourceforge.net
2003年3月18日 16:35:38 -0800
Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv14162/Misc
Modified Files:
NEWS
Log Message:
Fixed SF bug #663074. The codec system was using global static
variables to store internal data. As a result, any atempts to use the
unicode system with multiple active interpreters, or successive
interpreter executions, would fail.
Now that information is stored into members of the PyInterpreterState
structure.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.698
retrieving revision 1.699
diff -C2 -d -r1.698 -r1.699
*** NEWS 17 Mar 2003 19:46:03 -0000 1.698
--- NEWS 19 Mar 2003 00:35:35 -0000 1.699
***************
*** 30,33 ****
--- 30,38 ----
if the key value was larger than 2**32. See SF bug #689659.
+ - Fixed SF bug #663074. The codec system was using global static
+ variables to store internal data. As a result, any atempts to use the
+ unicode system with multiple active interpreters, or successive
+ interpreter executions, would fail.
+
Extension modules
-----------------