summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/quex/files/quex-0.71.0-py37.patch')
-rw-r--r--dev-python/quex/files/quex-0.71.0-py37.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/dev-python/quex/files/quex-0.71.0-py37.patch b/dev-python/quex/files/quex-0.71.0-py37.patch
deleted file mode 100644
index 9c2ed48d5495..000000000000
--- a/dev-python/quex/files/quex-0.71.0-py37.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/quex/input/code/base.py 2020-08-17 11:27:16.948578316 +0200
-+++ b/quex/input/code/base.py 2020-08-17 11:27:27.604426654 +0200
-@@ -123,7 +123,7 @@
- def set_source_reference(self, SourceReference):
- self.__source_reference = SourceReference
-
-- @typed(Re=re._pattern_type)
-+ @typed(Re=re.Pattern)
- def contains_string(self, Re): return self.__check_code(lambda x: Re.search(x) is not None)
- def is_empty(self): return not self.__check_code(lambda x: len(x) != 0)
- def is_whitespace(self): return not self.__check_code(lambda x: len(x.strip()) != 0)