diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-07-01 20:15:21 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-07-01 20:15:21 +0000 |
commit | 21d896cfa1646a1da4e0ead57db9defc2ade397c (patch) | |
tree | bf71a5632709fe09a2990ff128b3118444482584 /Include/stringobject.h | |
parent | 59aba128a5266a944d9773f7223f25b164372146 (diff) | |
download | cpython-git-21d896cfa1646a1da4e0ead57db9defc2ade397c.tar.gz |
Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macros
Diffstat (limited to 'Include/stringobject.h')
-rw-r--r-- | Include/stringobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/stringobject.h b/Include/stringobject.h index 7f67a1f1c0..3deea8f5d8 100644 --- a/Include/stringobject.h +++ b/Include/stringobject.h @@ -65,7 +65,7 @@ PyAPI_FUNC(int) _PyString_Eq(PyObject *, PyObject*); PyAPI_FUNC(PyObject *) PyString_Format(PyObject *, PyObject *); PyAPI_FUNC(PyObject *) _PyString_FormatLong(PyObject*, int, int, int, char**, int*); -extern DL_IMPORT(PyObject *) PyString_DecodeEscape(const char *, int, +PyAPI_FUNC(PyObject *) PyString_DecodeEscape(const char *, int, const char *, int, const char *); |