summaryrefslogtreecommitdiff
path: root/lang/python24/files
diff options
context:
space:
mode:
Diffstat (limited to 'lang/python24/files')
-rw-r--r--lang/python24/files/patch-Python::ceval.c16
-rw-r--r--lang/python24/files/patch-setup.py11
2 files changed, 0 insertions, 27 deletions
diff --git a/lang/python24/files/patch-Python::ceval.c b/lang/python24/files/patch-Python::ceval.c
deleted file mode 100644
index 057d4b6a066e..000000000000
--- a/lang/python24/files/patch-Python::ceval.c
+++ /dev/null
@@ -1,16 +0,0 @@
---- Python/ceval.c.orig Wed Nov 24 03:06:08 2004
-+++ Python/ceval.c Wed Dec 1 22:29:37 2004
-@@ -414,8 +414,11 @@
-
- /* The interpreter's recursion limit */
-
--static int recursion_limit = 1000;
--int _Py_CheckRecursionLimit = 1000;
-+#ifndef PYTHON_DEFAULT_RECURSION_LIMIT
-+#define PYTHON_DEFAULT_RECURSION_LIMIT 1000
-+#endif
-+static int recursion_limit = PYTHON_DEFAULT_RECURSION_LIMIT;
-+int _Py_CheckRecursionLimit = PYTHON_DEFAULT_RECURSION_LIMIT;
-
- int
- Py_GetRecursionLimit(void)
diff --git a/lang/python24/files/patch-setup.py b/lang/python24/files/patch-setup.py
deleted file mode 100644
index 7a4e76912d96..000000000000
--- a/lang/python24/files/patch-setup.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- setup.py.orig Tue Aug 31 10:37:25 2004
-+++ setup.py Fri Sep 3 10:42:53 2004
-@@ -15,7 +15,7 @@
- from distutils.command.install_lib import install_lib
-
- # This global variable is used to hold the list of modules to be disabled.
--disabled_module_list = []
-+disabled_module_list = ["_bsddb", "_tkinter", "gdbm", "mpz"]
-
- def add_dir_to_list(dirlist, dir):
- """Add the directory 'dir' to the list 'dirlist' (at the front) if