summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-python/bpython/files/bpython-0.9.5.2-python-3.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/dev-python/bpython/files/bpython-0.9.5.2-python-3.patch b/dev-python/bpython/files/bpython-0.9.5.2-python-3.patch
deleted file mode 100644
index 6142c9ed3f67..000000000000
--- a/dev-python/bpython/files/bpython-0.9.5.2-python-3.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- bpython/importcompletion.py
-+++ bpython/importcompletion.py
-@@ -77,7 +77,7 @@
- name = os.path.splitext(name)[0]
- try:
- fo, pathname, _ = imp.find_module(name, [path])
-- except ImportError:
-+ except (ImportError, SyntaxError):
- continue
- else:
- if fo is not None: