summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-01-09 18:34:44 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2014-01-09 18:34:44 -0500
commit120b4a566ecdec67c26df3c7b974ba4effc5dd80 (patch)
treed0b301c83613b2cab94f24b2e32718ebfe31d2ec
parent20dcbbe97f89a88514e824bbdaa58c2826b6434b (diff)
downloadsqlalchemy-pullreq55.tar.gz
changelog for pullreq github:55pullreq55
-rw-r--r--doc/build/changelog/changelog_09.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst
index 6e28465ff..38db136e9 100644
--- a/doc/build/changelog/changelog_09.rst
+++ b/doc/build/changelog/changelog_09.rst
@@ -16,6 +16,17 @@
:released: January 5, 2014
.. change::
+ :tags: bug, py3k, cextensions
+ :pullreq: github:55
+
+ Fixed an issue where the C extensions in Py3K are using the wrong API
+ to specify the top-level module function, which breaks
+ in Python 3.4b2. Py3.4b2 changes PyMODINIT_FUNC to return
+ "void" instead of "PyObject *", so we now make sure to use
+ "PyMODINIT_FUNC" instead of "PyObject *" directly. Pull request
+ courtesy cgohlke.
+
+ .. change::
:tags: bug, orm, events
:tickets: 2905