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/datetimemodule.c | |
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/datetimemodule.c')
-rw-r--r-- | Modules/datetimemodule.c | 2 |
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 |