[Python-checkins] r73448 - python/trunk/Objects/exceptions.c

georg.brandl python-checkins at python.org
Tue Jun 16 19:43:44 CEST 2009


Author: georg.brandl
Date: Tue Jun 16 19:43:44 2009
New Revision: 73448

Log:
Remove unused macro.

Modified:
   python/trunk/Objects/exceptions.c

Modified: python/trunk/Objects/exceptions.c
==============================================================================
--- python/trunk/Objects/exceptions.c	(original)
+++ python/trunk/Objects/exceptions.c	Tue Jun 16 19:43:44 2009
@@ -9,7 +9,6 @@
 #include "structmember.h"
 #include "osdefs.h"
 
-#define MAKE_IT_NONE(x) (x) = Py_None; Py_INCREF(Py_None);
 #define EXC_MODULE_NAME "exceptions."
 
 /* NOTE: If the exception class hierarchy changes, don't forget to update


More information about the Python-checkins mailing list