diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-12-18 10:08:32 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-12-18 10:08:32 +0000 |
commit | 213ae9a9a4fe56c95f02809a23c26af8a030b5c3 (patch) | |
tree | c2f4ec73918caaebb9c2c64e402a93f52f94018e /lang/python23/files/patch-Python::ceval.c | |
parent | - Reset maintainer, his email bounces: (diff) |
- Get rid python-2.3 and python-3.0 (no longer under developement)
Reviewed by: alexbl, clsung, pav
Diffstat (limited to '')
-rw-r--r-- | lang/python23/files/patch-Python::ceval.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lang/python23/files/patch-Python::ceval.c b/lang/python23/files/patch-Python::ceval.c deleted file mode 100644 index fc42c6e58d51..000000000000 --- a/lang/python23/files/patch-Python::ceval.c +++ /dev/null @@ -1,14 +0,0 @@ ---- Python/ceval.c.orig Sat Dec 20 15:13:53 2003 -+++ Python/ceval.c Sat Dec 20 15:15:46 2003 -@@ -496,7 +496,10 @@ - - /* The interpreter's recursion limit */ - --static int recursion_limit = 1000; -+#ifndef PYTHON_DEFAULT_RECURSION_LIMIT -+#define PYTHON_DEFAULT_RECURSION_LIMIT 1000 -+#endif -+static int recursion_limit = PYTHON_DEFAULT_RECURSION_LIMIT; - - int - Py_GetRecursionLimit(void) |