diff options
author | Andrey Grozin <grozin@gentoo.org> | 2016-10-12 21:10:04 +0700 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2016-10-12 21:10:04 +0700 |
commit | 900c6bed7375926fc47143f7b6e8efb5295f1682 (patch) | |
tree | b1605331d27614d811d091ca9e8a2b3ce412569b /dev-python/bpython/files | |
parent | ae9cf0227e5181ae09019ba9914803463bb22f4e (diff) | |
download | gentoo-900c6bed7375926fc47143f7b6e8efb5295f1682.tar.gz gentoo-900c6bed7375926fc47143f7b6e8efb5295f1682.tar.xz |
dev-python/bpython: cleaning old
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-python/bpython/files')
-rw-r--r-- | dev-python/bpython/files/bpython-0.14.patch | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/dev-python/bpython/files/bpython-0.14.patch b/dev-python/bpython/files/bpython-0.14.patch deleted file mode 100644 index 00b8e5a420d..00000000000 --- a/dev-python/bpython/files/bpython-0.14.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -r -U2 bpython-0.14.orig/bpython/curtsiesfrontend/repl.py bpython-0.14/bpython/curtsiesfrontend/repl.py ---- bpython-0.14.orig/bpython/curtsiesfrontend/repl.py 2015-02-17 05:07:38.000000000 +0600 -+++ bpython-0.14/bpython/curtsiesfrontend/repl.py 2015-02-19 00:09:13.758932344 +0600 -@@ -420,7 +420,9 @@ - # for reading modules if they fail to load - old_module_locations = {} -+ default_level = 0 if py3 else -1 - - @functools.wraps(self.orig_import) -- def new_import(name, globals={}, locals={}, fromlist=[], level=-1): -+ def new_import(name, globals={}, locals={}, fromlist=[], -+ level=default_level): - try: - m = self.orig_import(name, globals=globals, locals=locals, |