execnb 0.1.10__tar.gz → 0.1.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {execnb-0.1.10/execnb.egg-info → execnb-0.1.11}/PKG-INFO +1 -1
- execnb-0.1.11/execnb/__init__.py +1 -0
- {execnb-0.1.10 → execnb-0.1.11}/execnb/shell.py +4 -4
- {execnb-0.1.10 → execnb-0.1.11/execnb.egg-info}/PKG-INFO +1 -1
- {execnb-0.1.10 → execnb-0.1.11}/settings.ini +1 -1
- execnb-0.1.10/execnb/__init__.py +0 -1
- {execnb-0.1.10 → execnb-0.1.11}/LICENSE +0 -0
- {execnb-0.1.10 → execnb-0.1.11}/MANIFEST.in +0 -0
- {execnb-0.1.10 → execnb-0.1.11}/README.md +0 -0
- {execnb-0.1.10 → execnb-0.1.11}/execnb/_modidx.py +0 -0
- {execnb-0.1.10 → execnb-0.1.11}/execnb/nbio.py +0 -0
- {execnb-0.1.10 → execnb-0.1.11}/execnb.egg-info/SOURCES.txt +0 -0
- {execnb-0.1.10 → execnb-0.1.11}/execnb.egg-info/dependency_links.txt +0 -0
- {execnb-0.1.10 → execnb-0.1.11}/execnb.egg-info/entry_points.txt +0 -0
- {execnb-0.1.10 → execnb-0.1.11}/execnb.egg-info/not-zip-safe +0 -0
- {execnb-0.1.10 → execnb-0.1.11}/execnb.egg-info/requires.txt +0 -0
- {execnb-0.1.10 → execnb-0.1.11}/execnb.egg-info/top_level.txt +0 -0
- {execnb-0.1.10 → execnb-0.1.11}/pyproject.toml +0 -0
- {execnb-0.1.10 → execnb-0.1.11}/setup.cfg +0 -0
- {execnb-0.1.10 → execnb-0.1.11}/setup.py +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.1.11"
|
@@ -18,7 +18,7 @@ from IPython.core.interactiveshell import InteractiveShell, ExecutionInfo, Execu
|
|
18
18
|
from IPython.core.displayhook import DisplayHook
|
19
19
|
from IPython.utils.capture import capture_output
|
20
20
|
from IPython.utils.text import strip_ansi
|
21
|
-
from IPython.core.completer import IPCompleter,provisionalcompleter
|
21
|
+
from IPython.core.completer import IPCompleter,provisionalcompleter,Completer
|
22
22
|
from IPython.core.hooks import CommandChainDispatcher
|
23
23
|
from IPython.core.completerlib import module_completer
|
24
24
|
from IPython.utils.strdispatch import StrDispatch
|
@@ -307,9 +307,9 @@ class SmartCompleter(IPCompleter):
|
|
307
307
|
def __call__(self, c):
|
308
308
|
if not c: return []
|
309
309
|
with provisionalcompleter():
|
310
|
-
|
311
|
-
|
312
|
-
|
310
|
+
res = [o.text.rpartition('.')[-1] for o in self.completions(c, len(c)) if o.type!='magic']
|
311
|
+
if res and res[0][-1]=='=': res = [o for o in res if o[-1]=='=']
|
312
|
+
return res
|
313
313
|
|
314
314
|
# %% ../nbs/02_shell.ipynb
|
315
315
|
@patch
|
execnb-0.1.10/execnb/__init__.py
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.1.10"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|