diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-15 14:38:20 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-15 14:38:20 (GMT) |
commit | e60698317dc7772983784037d966d24d1d30dc87 (patch) | |
tree | f467acf867ca089d40b187e03909ff0b05d0971d /Include | |
parent | 7a6debe79c1aabe7686b60e19ad77055b874c2f4 (diff) | |
download | cpython-e60698317dc7772983784037d966d24d1d30dc87.zip cpython-e60698317dc7772983784037d966d24d1d30dc87.tar.gz cpython-e60698317dc7772983784037d966d24d1d30dc87.tar.bz2 |
Fix build under Windows
Diffstat (limited to 'Include')
-rw-r--r-- | Include/codecs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/codecs.h b/Include/codecs.h index c503f5c..0d9e9b4 100644 --- a/Include/codecs.h +++ b/Include/codecs.h @@ -174,7 +174,7 @@ PyAPI_FUNC(PyObject *) PyCodec_XMLCharRefReplaceErrors(PyObject *exc); /* replace the unicode encode error with backslash escapes (\x, \u and \U) */ PyAPI_FUNC(PyObject *) PyCodec_BackslashReplaceErrors(PyObject *exc); -extern const char *Py_hexdigits; +PyAPI_DATA(const char *) Py_hexdigits; #ifdef __cplusplus } |