[Python-checkins] r42498 - in python/trunk/Modules: datetimemodule.c expat/expat.h

georg.brandl python-checkins at python.org
Sun Feb 19 16:28:49 CET 2006


Author: georg.brandl
Date: Sun Feb 19 16:28:47 2006
New Revision: 42498

Modified:
   python/trunk/Modules/datetimemodule.c
   python/trunk/Modules/expat/expat.h
Log:
Remove two instances of trailing commas. Resolves patch #1209781.



Modified: python/trunk/Modules/datetimemodule.c
==============================================================================
--- python/trunk/Modules/datetimemodule.c	(original)
+++ python/trunk/Modules/datetimemodule.c	Sun Feb 19 16:28:47 2006
@@ -971,7 +971,7 @@
 	      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

Modified: python/trunk/Modules/expat/expat.h
==============================================================================
--- python/trunk/Modules/expat/expat.h	(original)
+++ python/trunk/Modules/expat/expat.h	Sun Feb 19 16:28:47 2006
@@ -43,7 +43,7 @@
 #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
 };
 


More information about the Python-checkins mailing list