Show More
@@ -22,7 +22,7 b" name = 'ipython'" | |||
|
22 | 22 | # because bdist_rpm does not accept dashes (an RPM) convention, and |
|
23 | 23 | # bdist_deb does not accept underscores (a Debian convention). |
|
24 | 24 | |
|
25 |
revision = ' |
|
|
25 | revision = '96' | |
|
26 | 26 | branch = 'ipython' |
|
27 | 27 | |
|
28 | 28 | if branch == 'ipython': |
@@ -85,7 +85,7 b' def main():' | |||
|
85 | 85 | #import ipy_winpdb |
|
86 | 86 | |
|
87 | 87 | # For bzr completer, requires bzrlib (the python installation of bzr) |
|
88 |
#i |
|
|
88 | #ip.load('ipy_bzr') | |
|
89 | 89 | |
|
90 | 90 | |
|
91 | 91 |
@@ -32,7 +32,9 b' import imp' | |||
|
32 | 32 | import sys |
|
33 | 33 | |
|
34 | 34 | # Replacement for __import__() |
|
35 | def deep_import_hook(name, globals=None, locals=None, fromlist=None): | |
|
35 | def deep_import_hook(name, globals=None, locals=None, fromlist=None, level=-1): | |
|
36 | # For now level is ignored, it's just there to prevent crash | |
|
37 | # with from __future__ import absolute_import | |
|
36 | 38 | parent = determine_parent(globals) |
|
37 | 39 | q, tail = find_head_package(parent, name) |
|
38 | 40 | m = load_tail(q, tail) |
General Comments 0
You need to be logged in to leave comments.
Login now