summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-02-19 15:28:47 (GMT)
committerGeorg Brandl <georg@python.org>2006-02-19 15:28:47 (GMT)
commite810fe2ca4374431ee817826f5f87b8945894261 (patch)
tree8558f9df4c948f3cc8cfb3a98aa31f2d26c94646
parentfe4b34cc4b3d4c91497460d64c8ed1fe7a983689 (diff)
downloadcpython-e810fe2ca4374431ee817826f5f87b8945894261.zip
cpython-e810fe2ca4374431ee817826f5f87b8945894261.tar.gz
cpython-e810fe2ca4374431ee817826f5f87b8945894261.tar.bz2
Remove two instances of trailing commas. Resolves patch #1209781.
-rw-r--r--Modules/datetimemodule.c2
-rw-r--r--Modules/expat/expat.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/datetimemodule.c b/Modules/datetimemodule.c
index 5c0f220..cb7b588 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 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
};