summaryrefslogtreecommitdiff
path: root/dev-java/jython/files/jython-2.7_beta2-maxrepeat-import.patch
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-05-11 12:45:53 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-05-11 12:45:53 +0000
commitfd8c338741e0a4b9350821c192bc87109ebdbfc8 (patch)
tree5eec42bf2ef9890643a50ea64e15c60d8c40dd4c /dev-java/jython/files/jython-2.7_beta2-maxrepeat-import.patch
parentdae546ae7e1a3f1ea89c9874497c1694a8a945e4 (diff)
downloadbaldeagleos-repo-fd8c338741e0a4b9350821c192bc87109ebdbfc8.tar.gz
baldeagleos-repo-fd8c338741e0a4b9350821c192bc87109ebdbfc8.tar.xz
baldeagleos-repo-fd8c338741e0a4b9350821c192bc87109ebdbfc8.zip
Adding metadata
Diffstat (limited to 'dev-java/jython/files/jython-2.7_beta2-maxrepeat-import.patch')
-rw-r--r--dev-java/jython/files/jython-2.7_beta2-maxrepeat-import.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-java/jython/files/jython-2.7_beta2-maxrepeat-import.patch b/dev-java/jython/files/jython-2.7_beta2-maxrepeat-import.patch
deleted file mode 100644
index 944bb195cb38..000000000000
--- a/dev-java/jython/files/jython-2.7_beta2-maxrepeat-import.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -r 035eded55c4d lib-python/2.7/sre_constants.py
---- a/lib-python/2.7/sre_constants.py Wed Apr 16 18:30:13 2014 -0600
-+++ b/lib-python/2.7/sre_constants.py Fri Jul 25 10:31:27 2014 -0700
-@@ -15,7 +15,11 @@
-
- MAGIC = 20031017
-
--from _sre import MAXREPEAT
-+try:
-+ from _sre import MAXREPEAT
-+except ImportError:
-+ import _sre
-+ MAXREPEAT = _sre.MAXREPEAT = 65535
-
- # SRE standard exception (access as sre.error)
- # should this really be here?