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 /Include/pyexpat.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 'Include/pyexpat.h')
-rw-r--r-- | Include/pyexpat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/pyexpat.h b/Include/pyexpat.h index 50ed49f..1e79f4e 100644 --- a/Include/pyexpat.h +++ b/Include/pyexpat.h @@ -16,8 +16,8 @@ struct PyExpat_CAPI the end, if needed */ const XML_LChar * (*ErrorString)(enum XML_Error code); enum XML_Error (*GetErrorCode)(XML_Parser parser); - int (*GetErrorColumnNumber)(XML_Parser parser); - int (*GetErrorLineNumber)(XML_Parser parser); + XML_Size (*GetErrorColumnNumber)(XML_Parser parser); + XML_Size (*GetErrorLineNumber)(XML_Parser parser); enum XML_Status (*Parse)( XML_Parser parser, const char *s, int len, int isFinal); XML_Parser (*ParserCreate_MM)( |