diff options
author | Trent Mick <trentm@activestate.com> | 2006-06-19 23:21:25 (GMT) |
---|---|---|
committer | Trent Mick <trentm@activestate.com> | 2006-06-19 23:21:25 (GMT) |
commit | f08d663a2f9cbd8dd0ca868272f03ad115691df7 (patch) | |
tree | 229b8e5158e39dbf09fcad82b0b2c32f0c5e87bb /Modules/expat/xmltok.h | |
parent | 3dbc8916f55cb6093ea056962d49b8215de0501f (diff) | |
download | cpython-f08d663a2f9cbd8dd0ca868272f03ad115691df7.zip cpython-f08d663a2f9cbd8dd0ca868272f03ad115691df7.tar.gz cpython-f08d663a2f9cbd8dd0ca868272f03ad115691df7.tar.bz2 |
Upgrade pyexpat to expat 2.0.0 (http://python.org/sf/1462338).
Diffstat (limited to 'Modules/expat/xmltok.h')
-rw-r--r-- | Modules/expat/xmltok.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/expat/xmltok.h b/Modules/expat/xmltok.h index 1ecd05f..ca867aa 100644 --- a/Modules/expat/xmltok.h +++ b/Modules/expat/xmltok.h @@ -111,8 +111,8 @@ extern "C" { typedef struct position { /* first line and first column are 0 not 1 */ - unsigned long lineNumber; - unsigned long columnNumber; + XML_Size lineNumber; + XML_Size columnNumber; } POSITION; typedef struct { |