diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-02-04 15:10:55 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-02-04 15:10:55 (GMT) |
commit | 091d017ab11b42a542711ede2b171e432a0394b9 (patch) | |
tree | 32a49dc30de15934b491a31a1edc66f71574675b /Modules | |
parent | c5640385800ea75445824d7e8caf8386ded238dc (diff) | |
download | cpython-091d017ab11b42a542711ede2b171e432a0394b9.zip cpython-091d017ab11b42a542711ede2b171e432a0394b9.tar.gz cpython-091d017ab11b42a542711ede2b171e432a0394b9.tar.bz2 |
restore namespacing of pyexpat symbols (closes #19186)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/expat/expat_external.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/expat/expat_external.h b/Modules/expat/expat_external.h index 2c03284..f337e1c 100644 --- a/Modules/expat/expat_external.h +++ b/Modules/expat/expat_external.h @@ -7,6 +7,10 @@ /* External API definitions */ +/* Namespace external symbols to allow multiple libexpat version to + co-exist. */ +#include "pyexpatns.h" + #if defined(_MSC_EXTENSIONS) && !defined(__BEOS__) && !defined(__CYGWIN__) #define XML_USE_MSC_EXTENSIONS 1 #endif |