diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-15 19:23:30 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-15 19:23:30 (GMT) |
commit | ec43833cc7d6d3a41de7ccfb11b69f5738ec7db5 (patch) | |
tree | 02849b7191156803287ed8bb15883d41cc43acb7 /Doc/whatsnew/3.2.rst | |
parent | ab1dfd68e1dd1e5251c6dfa9bc45b10f45ce39a6 (diff) | |
parent | 9bb9877d8079ccfc4f5b5448ba111392140112e4 (diff) | |
download | cpython-ec43833cc7d6d3a41de7ccfb11b69f5738ec7db5.zip cpython-ec43833cc7d6d3a41de7ccfb11b69f5738ec7db5.tar.gz cpython-ec43833cc7d6d3a41de7ccfb11b69f5738ec7db5.tar.bz2 |
Merge doc update
Diffstat (limited to 'Doc/whatsnew/3.2.rst')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 1baa9e1..256b343 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -2698,3 +2698,7 @@ require changes to your code: a new function, :func:`asyncore.handle_accepted`, was added to replace it. (Contributed by Giampaolo Rodola in :issue:`6706`.) + +* Due to the new :term:`GIL` implementation, :c:func:`PyEval_InitThreads()` + cannot be called before :c:func:`Py_Initialize()` anymore. + |