diff options
author | Georg Brandl <georg@python.org> | 2009-06-16 19:24:38 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-06-16 19:24:38 (GMT) |
commit | 2c8600446d4b73c15136ea34c5aad546372ac506 (patch) | |
tree | 9f083c34b48780e8384d0a37ced9a49df3da2d06 /Objects | |
parent | fc11f27f616fe875d3ce01a51cb2498dc7c86500 (diff) | |
download | cpython-2c8600446d4b73c15136ea34c5aad546372ac506.zip cpython-2c8600446d4b73c15136ea34c5aad546372ac506.tar.gz cpython-2c8600446d4b73c15136ea34c5aad546372ac506.tar.bz2 |
Merged revisions 73447-73448 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73447 | georg.brandl | 2009-06-16 19:41:33 +0200 (Di, 16 Jun 2009) | 1 line
Add tabularcolumns directive for tables with bullet lists in them.
........
r73448 | georg.brandl | 2009-06-16 19:43:44 +0200 (Di, 16 Jun 2009) | 1 line
Remove unused macro.
........
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/exceptions.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/exceptions.c b/Objects/exceptions.c index 9258ace..adaece1 100644 --- a/Objects/exceptions.c +++ b/Objects/exceptions.c @@ -9,7 +9,6 @@ #include "structmember.h" #include "osdefs.h" -#define MAKE_IT_NONE(x) (x) = Py_None; Py_INCREF(Py_None); /* NOTE: If the exception class hierarchy changes, don't forget to update * Lib/test/exception_hierarchy.txt |