summaryrefslogtreecommitdiff
path: root/lang/python/files/patch-Objects::intobject.c
diff options
context:
space:
mode:
authorHye-Shik Chang <perky@FreeBSD.org>2004-05-27 15:58:02 +0000
committerHye-Shik Chang <perky@FreeBSD.org>2004-05-27 15:58:02 +0000
commit7866c5194c5f15d90bbb54820bb31a69998c6bed (patch)
treeeb238db7252a16aab5fb4ffc996c86d0e23c9d2f /lang/python/files/patch-Objects::intobject.c
parent- Add WWW (diff)
- Update to Python 2.3.4.
- Test WITHOUT_* instead of WITH_* for values which are on by default so that package build clusters detect correctly.
Notes
Notes: svn path=/head/; revision=110139
Diffstat (limited to 'lang/python/files/patch-Objects::intobject.c')
-rw-r--r--lang/python/files/patch-Objects::intobject.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/lang/python/files/patch-Objects::intobject.c b/lang/python/files/patch-Objects::intobject.c
deleted file mode 100644
index 05983721a6cb..000000000000
--- a/lang/python/files/patch-Objects::intobject.c
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -u python/dist/src/Objects/intobject.c:2.105 python/dist/src/Objects/intobject.c:2.105.8.1
---- Objects/intobject.c:2.105 Sat Jun 28 13:04:24 2003
-+++ Objects/intobject.c Sun Feb 8 10:56:07 2004
-@@ -1080,7 +1080,7 @@
- int ival;
- #if NSMALLNEGINTS + NSMALLPOSINTS > 0
- for (ival = -NSMALLNEGINTS; ival < NSMALLPOSINTS; ival++) {
-- if ((free_list = fill_free_list()) == NULL)
-+ if (!free_list && (free_list = fill_free_list()) == NULL)
- return 0;
- /* PyObject_New is inlined */
- v = free_list;