]> granicus.if.org Git - python/commit
Fixed SF bug #663074. The codec system was using global static
authorGustavo Niemeyer <gustavo@niemeyer.net>
Wed, 19 Mar 2003 00:35:36 +0000 (00:35 +0000)
committerGustavo Niemeyer <gustavo@niemeyer.net>
Wed, 19 Mar 2003 00:35:36 +0000 (00:35 +0000)
commit5ddd4c3f77abe9282479d901696dfa73e6c3d573
tree1a36a11befd6fd5d1dc8a689a2cb39d2de487357
parent821a0fc140762c281b10dea4bb8676e913007270
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.
Include/pystate.h
Misc/NEWS
Python/codecs.c
Python/pystate.c
Python/pythonrun.c