diff options
author | Guido van Rossum <guido@python.org> | 1992-09-03 20:34:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-09-03 20:34:07 (GMT) |
commit | f2c8beba0b818f59ffc65abfff6cbfbb0efe04de (patch) | |
tree | 0abf591ed2554aa3b546a254894014905198fa22 /Include/object.h | |
parent | 2e8f6140ff8dfc5d5d81825ac7ec8826f750fede (diff) | |
download | cpython-f2c8beba0b818f59ffc65abfff6cbfbb0efe04de.zip cpython-f2c8beba0b818f59ffc65abfff6cbfbb0efe04de.tar.gz cpython-f2c8beba0b818f59ffc65abfff6cbfbb0efe04de.tar.bz2 |
AOnly define NDEDBUG if DEBUG is not defined
Diffstat (limited to 'Include/object.h')
-rw-r--r-- | Include/object.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/object.h b/Include/object.h index a66629c..081bb86 100644 --- a/Include/object.h +++ b/Include/object.h @@ -22,7 +22,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ +#ifndef DEBUG #define NDEBUG +#endif + /* Object and type object interface */ /* |