From: Georg Brandl Date: Sun, 19 Feb 2006 15:28:47 +0000 (+0000) Subject: Remove two instances of trailing commas. Resolves patch #1209781. X-Git-Tag: v2.5a0~590 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e810fe2ca4374431ee817826f5f87b8945894261;p=thirdparty%2FPython%2Fcpython.git Remove two instances of trailing commas. Resolves patch #1209781. --- diff --git a/Modules/datetimemodule.c b/Modules/datetimemodule.c index 5c0f2201dcae..cb7b588a04f9 100644 --- a/Modules/datetimemodule.c +++ b/Modules/datetimemodule.c @@ -971,7 +971,7 @@ typedef enum { OFFSET_NAIVE, /* time or datetime where utcoffset() doesn't return None */ - OFFSET_AWARE, + OFFSET_AWARE } naivety; /* Classify an object as to whether it's naive or offset-aware. See diff --git a/Modules/expat/expat.h b/Modules/expat/expat.h index cb07c1c92e8b..ecba92e3d2ae 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 };