Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2ff627a

Browse files
committed
Merged revisions 77581 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r77581 | antoine.pitrou | 2010-01-17 16:55:45 +0100 (dim., 17 janv. 2010) | 3 lines Use PyAPI_DATA. ........
1 parent c4f1868 commit 2ff627a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Include/bytearrayobject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ PyAPI_FUNC(int) PyByteArray_Resize(PyObject *, Py_ssize_t);
4949
Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string)
5050
#define PyByteArray_GET_SIZE(self) (assert(PyByteArray_Check(self)),Py_SIZE(self))
5151

52-
extern char _PyByteArray_empty_string[];
52+
PyAPI_DATA(char) _PyByteArray_empty_string[];
5353

5454
#ifdef __cplusplus
5555
}

0 commit comments

Comments
 (0)