ipykernel-helper 0.0.35__tar.gz → 0.0.36__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.
- {ipykernel_helper-0.0.35/ipykernel_helper.egg-info → ipykernel_helper-0.0.36}/PKG-INFO +1 -1
- ipykernel_helper-0.0.36/ipykernel_helper/__init__.py +2 -0
- {ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36}/ipykernel_helper/core.py +2 -4
- {ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36/ipykernel_helper.egg-info}/PKG-INFO +1 -1
- ipykernel_helper-0.0.35/ipykernel_helper/__init__.py +0 -2
- {ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36}/LICENSE +0 -0
- {ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36}/MANIFEST.in +0 -0
- {ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36}/README.md +0 -0
- {ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36}/ipykernel_helper/_modidx.py +0 -0
- {ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36}/ipykernel_helper.egg-info/SOURCES.txt +0 -0
- {ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36}/ipykernel_helper.egg-info/dependency_links.txt +0 -0
- {ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36}/ipykernel_helper.egg-info/entry_points.txt +0 -0
- {ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36}/ipykernel_helper.egg-info/requires.txt +0 -0
- {ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36}/ipykernel_helper.egg-info/top_level.txt +0 -0
- {ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36}/pyproject.toml +0 -0
- {ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36}/setup.cfg +0 -0
|
@@ -12,7 +12,7 @@ from fastcore.meta import delegates
|
|
|
12
12
|
from fastcore.utils import patch,dict2obj
|
|
13
13
|
from fastcore.docments import sig_source,DocmentText
|
|
14
14
|
from fastcore.net import HTTP404NotFoundError
|
|
15
|
-
from fastcore.xtras import truncstr
|
|
15
|
+
from fastcore.xtras import truncstr,maybe_await
|
|
16
16
|
from types import ModuleType, FunctionType, MethodType, BuiltinFunctionType
|
|
17
17
|
from inspect import signature, currentframe
|
|
18
18
|
from functools import cmp_to_key,partial
|
|
@@ -337,8 +337,6 @@ def _await_cell_magic(lines):
|
|
|
337
337
|
return lines
|
|
338
338
|
|
|
339
339
|
def load_ipython_extension(ip):
|
|
340
|
-
from ipykernel_helper import transient,run_cmd
|
|
341
|
-
|
|
342
340
|
ns = ip.user_ns
|
|
343
|
-
|
|
341
|
+
for o in ('read_gh_repo','read_url','transient','run_cmd','maybe_await'): ns[o] = globals()[o]
|
|
344
342
|
ip.input_transformer_manager.line_transforms.append(_await_cell_magic)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36}/ipykernel_helper.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{ipykernel_helper-0.0.35 → ipykernel_helper-0.0.36}/ipykernel_helper.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|