summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorTrent Mick <trentm@activestate.com>2006-06-19 23:21:25 +0000
committerTrent Mick <trentm@activestate.com>2006-06-19 23:21:25 +0000
commita440780031ab2de02809ce23e24e5008089ee0b6 (patch)
tree2ba51b3f0eec572b05693f4e87776475aa4ae3ed /Include
parente241132373bab9984cb5b148b39edfdad844702f (diff)
downloadcpython-a440780031ab2de02809ce23e24e5008089ee0b6.tar.gz
Upgrade pyexpat to expat 2.0.0 (http://python.org/sf/1462338).
Diffstat (limited to 'Include')
-rw-r--r--Include/pyexpat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/pyexpat.h b/Include/pyexpat.h
index 50ed49f5fc..1e79f4e762 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)(