summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-07-20 20:59:48 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-07-20 20:59:48 +0000
commitb3bc70ad417b14fdedebf6a7fd0dba94412336c2 (patch)
tree75af4cf81d75fdd9e85cc03499055250d0f19cbc /dev-python/bpython/files
parentDelete older ebuild. (diff)
downloadgentoo-2-b3bc70ad417b14fdedebf6a7fd0dba94412336c2.tar.gz
gentoo-2-b3bc70ad417b14fdedebf6a7fd0dba94412336c2.tar.bz2
gentoo-2-b3bc70ad417b14fdedebf6a7fd0dba94412336c2.zip
Delete old patch.
Diffstat (limited to 'dev-python/bpython/files')
-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: