summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-03-15 19:22:50 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-03-15 19:22:50 (GMT)
commit9bb9877d8079ccfc4f5b5448ba111392140112e4 (patch)
tree62023543c0babffc15ce796aec05ebb566247aac /Doc/whatsnew
parent4a0b60c5273451909d8bd6e538c140c9c42593c7 (diff)
downloadcpython-9bb9877d8079ccfc4f5b5448ba111392140112e4.zip
cpython-9bb9877d8079ccfc4f5b5448ba111392140112e4.tar.gz
cpython-9bb9877d8079ccfc4f5b5448ba111392140112e4.tar.bz2
Followup to 4c59cd84086f: add an entry in the porting guide and a "versionchanged" attribute.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.2.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index 3829ce1..20ce228 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.
+