From e810fe2ca4374431ee817826f5f87b8945894261 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 19 Feb 2006 15:28:47 +0000 Subject: [PATCH] Remove two instances of trailing commas. Resolves patch #1209781. --- Modules/datetimemodule.c | 2 +- Modules/expat/expat.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/datetimemodule.c b/Modules/datetimemodule.c index 5c0f2201dca..cb7b588a04f 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 cb07c1c92e8..ecba92e3d2a 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 };