diff options
author | Raymond Hettinger <python@rcn.com> | 2013-07-07 12:07:23 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-07-07 12:07:23 (GMT) |
commit | b385529ddfcd5e46890438dc32c6dba341e039b0 (patch) | |
tree | 2980bf5cd8b38ea48d22cf11d5c770d7f22b9e1b | |
parent | 82df92545198ca1c0e69e3664cf4a3f0545498ec (diff) | |
download | cpython-b385529ddfcd5e46890438dc32c6dba341e039b0.zip cpython-b385529ddfcd5e46890438dc32c6dba341e039b0.tar.gz cpython-b385529ddfcd5e46890438dc32c6dba341e039b0.tar.bz2 |
Fix #ifdef
-rw-r--r-- | Modules/_collectionsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ typedef struct BLOCK { * 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); |