diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-07-14 21:12:35 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-07-14 21:12:35 (GMT) |
commit | 7c6309c6afebecd9cefe7c547b87cf23abcbe2a3 (patch) | |
tree | 9852412a7bad47617cd0d42e01d37e3400229b04 /Modules/expat/ascii.h | |
parent | 15810673dc33436cbf8d1a6a6f9622249845b205 (diff) | |
download | cpython-7c6309c6afebecd9cefe7c547b87cf23abcbe2a3.zip cpython-7c6309c6afebecd9cefe7c547b87cf23abcbe2a3.tar.gz cpython-7c6309c6afebecd9cefe7c547b87cf23abcbe2a3.tar.bz2 |
Update the embedded copy of the expat XML parser to 2.1.0. It brings
with it a vareity of bug fixes, both security and behavior. See
http://www.libexpat.org/ for the list.
NOTE: I already backported the expat hash randomization fix in March.
Fixes issue #14340.
Diffstat (limited to 'Modules/expat/ascii.h')
-rw-r--r-- | Modules/expat/ascii.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/expat/ascii.h b/Modules/expat/ascii.h index 337e5bb..d10530b 100644 --- a/Modules/expat/ascii.h +++ b/Modules/expat/ascii.h @@ -83,3 +83,10 @@ #define ASCII_LSQB 0x5B #define ASCII_RSQB 0x5D #define ASCII_UNDERSCORE 0x5F +#define ASCII_LPAREN 0x28 +#define ASCII_RPAREN 0x29 +#define ASCII_FF 0x0C +#define ASCII_SLASH 0x2F +#define ASCII_HASH 0x23 +#define ASCII_PIPE 0x7C +#define ASCII_COMMA 0x2C |