[Python-checkins] r68639 - in python/branches/release30-maint: Modules/_dbmmodule.c
mark.dickinson
python-checkins at python.org
Fri Jan 16 21:25:36 CET 2009
Author: mark.dickinson
Date: Fri Jan 16 21:25:35 2009
New Revision: 68639
Log:
Merged revisions 68638 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r68638 | mark.dickinson | 2009年01月16日 19:31:13 +0000 (2009年1月16日) | 3 lines
Define PY_SSIZE_T_CLEAN at the top of the dbm module. This should fix the
segfaults on the PPC64/Debian buildbots.
........
Modified:
python/branches/release30-maint/ (props changed)
python/branches/release30-maint/Modules/_dbmmodule.c
Modified: python/branches/release30-maint/Modules/_dbmmodule.c
==============================================================================
--- python/branches/release30-maint/Modules/_dbmmodule.c (original)
+++ python/branches/release30-maint/Modules/_dbmmodule.c Fri Jan 16 21:25:35 2009
@@ -2,6 +2,7 @@
/* DBM module using dictionary interface */
+#define PY_SSIZE_T_CLEAN
#include "Python.h"
#include <sys/types.h>
More information about the Python-checkins
mailing list