summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-01-17 16:15:29 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-01-17 16:15:29 (GMT)
commit2ff627a686c0ed9e91c0ce6ed2d73050d5fd60da (patch)
treed895e4dc0b94570d16fb44b04de0e4a390fa98b7 /Include
parentc4f1868e88b950d758f200080baadd7989dae593 (diff)
downloadcpython-2ff627a686c0ed9e91c0ce6ed2d73050d5fd60da.zip
cpython-2ff627a686c0ed9e91c0ce6ed2d73050d5fd60da.tar.gz
cpython-2ff627a686c0ed9e91c0ce6ed2d73050d5fd60da.tar.bz2
Merged revisions 77581 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77581 | antoine.pitrou | 2010-01-17 16:55:45 +0100 (dim., 17 janv. 2010) | 3 lines Use PyAPI_DATA. ........
Diffstat (limited to 'Include')
-rw-r--r--Include/bytearrayobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/bytearrayobject.h b/Include/bytearrayobject.h
index 8702e5a..e1281a6 100644
--- a/Include/bytearrayobject.h
+++ b/Include/bytearrayobject.h
@@ -49,7 +49,7 @@ PyAPI_FUNC(int) PyByteArray_Resize(PyObject *, Py_ssize_t);
Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string)
#define PyByteArray_GET_SIZE(self) (assert(PyByteArray_Check(self)),Py_SIZE(self))
-extern char _PyByteArray_empty_string[];
+PyAPI_DATA(char) _PyByteArray_empty_string[];
#ifdef __cplusplus
}