[Python-checkins] cpython: Fix #ifdef

raymond.hettinger python-checkins at python.org
Sun Jul 7 14:07:31 CEST 2013


http://hg.python.org/cpython/rev/744dd749e25b
changeset:   84488:744dd749e25b
user:        Raymond Hettinger <python at rcn.com>
date:        Sun Jul 07 02:07:23 2013 -1000
summary:
  Fix #ifdef

files:
  Modules/_collectionsmodule.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c
--- a/Modules/_collectionsmodule.c
+++ b/Modules/_collectionsmodule.c
@@ -61,7 +61,7 @@
  * block is freed leaving another existing block as the new endpoint.
  */
 
-#if Py_DEBUG
+#ifdef Py_DEBUG
 #define MARK_END(link)  link = NULL;
 #define CHECK_END(link) assert(link == NULL);
 #define CHECK_NOT_END(link) assert(link != NULL);

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list