diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-25 18:00:48 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-25 18:00:48 (GMT) |
commit | 270ce7360cbb41dee36866c458319c336be2f996 (patch) | |
tree | 7b2295d10480e24aa022c1072a2c4a4e80bfca31 | |
parent | f031a6f334ab13b72c269c8e3158b5dad9d5d2b6 (diff) | |
download | cpython-270ce7360cbb41dee36866c458319c336be2f996.zip cpython-270ce7360cbb41dee36866c458319c336be2f996.tar.gz cpython-270ce7360cbb41dee36866c458319c336be2f996.tar.bz2 |
Fix typo (issue #19619).
-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 5ca505f..8f0014e 100644 --- a/Include/codecs.h +++ b/Include/codecs.h @@ -94,7 +94,7 @@ PyAPI_FUNC(PyObject *) PyCodec_Decode( const char *errors ); -#ifndef PY_LIMITED_API +#ifndef Py_LIMITED_API /* Text codec specific encoding and decoding API. Checks the encoding against a list of codecs which do not |