diff options
author | Georg Brandl <georg@python.org> | 2006-02-19 15:28:47 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-02-19 15:28:47 (GMT) |
commit | e810fe2ca4374431ee817826f5f87b8945894261 (patch) | |
tree | 8558f9df4c948f3cc8cfb3a98aa31f2d26c94646 /Modules/expat | |
parent | fe4b34cc4b3d4c91497460d64c8ed1fe7a983689 (diff) | |
download | cpython-e810fe2ca4374431ee817826f5f87b8945894261.zip cpython-e810fe2ca4374431ee817826f5f87b8945894261.tar.gz cpython-e810fe2ca4374431ee817826f5f87b8945894261.tar.bz2 |
Remove two instances of trailing commas. Resolves patch #1209781.
Diffstat (limited to 'Modules/expat')
-rw-r--r-- | Modules/expat/expat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/expat/expat.h b/Modules/expat/expat.h index cb07c1c..ecba92e 100644 --- a/Modules/expat/expat.h +++ b/Modules/expat/expat.h @@ -43,7 +43,7 @@ enum XML_Status { #define XML_STATUS_ERROR XML_STATUS_ERROR XML_STATUS_OK = 1, #define XML_STATUS_OK XML_STATUS_OK - XML_STATUS_SUSPENDED = 2, + XML_STATUS_SUSPENDED = 2 #define XML_STATUS_SUSPENDED XML_STATUS_SUSPENDED }; |