Skip to content

Commit

Permalink
Make CXX work with a Python 3 debug build.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom committed Jun 12, 2012
1 parent 9bfc97b commit 68e7569
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CXX/Python3/cxx_extensions.cxx
Expand Up @@ -440,10 +440,10 @@ PythonType::PythonType( size_t basic_size, int itemsize, const char *default_nam
table->tp_version_tag = 0;

#ifdef COUNT_ALLOCS
table->tp_alloc = 0;
table->tp_free = 0;
table->tp_allocs = 0;
table->tp_frees = 0;
table->tp_maxalloc = 0;
table->tp_orev = 0;
table->tp_prev = 0;
table->tp_next = 0;
#endif
}
Expand Down

0 comments on commit 68e7569

Please sign in to comment.