]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
changelog for pullreq github:55
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 9 Jan 2014 23:34:44 +0000 (18:34 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 9 Jan 2014 23:34:44 +0000 (18:34 -0500)
doc/build/changelog/changelog_09.rst

index 6e28465ff3bb9d4869d18ddb3f234d79f369c109..38db136e99296398fec9d4596341e69ad1a3a199 100644 (file)
     :version: 0.9.1
     :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