summaryrefslogtreecommitdiffstats
path: root/Modules/datetimemodule.c
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 /Modules/datetimemodule.c
parentfe4b34cc4b3d4c91497460d64c8ed1fe7a983689 (diff)
downloadcpython-e810fe2ca4374431ee817826f5f87b8945894261.zip
cpython-e810fe2ca4374431ee817826f5f87b8945894261.tar.gz
cpython-e810fe2ca4374431ee817826f5f87b8945894261.tar.bz2
Remove two instances of trailing commas. Resolves patch #1209781.
Diffstat (limited to 'Modules/datetimemodule.c')
-rw-r--r--Modules/datetimemodule.c2
1 files changed, 1 insertions, 1 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