commit | b385529ddfcd5e46890438dc32c6dba341e039b0 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sun Jul 07 02:07:23 2013 -1000 |
committer | Raymond Hettinger <python@rcn.com> | Sun Jul 07 02:07:23 2013 -1000 |
tree | 2980bf5cd8b38ea48d22cf11d5c770d7f22b9e1b | |
parent | 82df92545198ca1c0e69e3664cf4a3f0545498ec [diff] |
Fix #ifdef
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 2b42e0a..9924b63 100644 --- 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);