ipykernel-helper 0.0.45__tar.gz → 0.0.46__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.45/ipykernel_helper.egg-info → ipykernel_helper-0.0.46}/PKG-INFO +1 -1
- ipykernel_helper-0.0.46/ipykernel_helper/__init__.py +2 -0
- {ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46}/ipykernel_helper/core.py +2 -2
- {ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46/ipykernel_helper.egg-info}/PKG-INFO +1 -1
- ipykernel_helper-0.0.45/ipykernel_helper/__init__.py +0 -2
- {ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46}/LICENSE +0 -0
- {ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46}/MANIFEST.in +0 -0
- {ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46}/README.md +0 -0
- {ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46}/ipykernel_helper/_modidx.py +0 -0
- {ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46}/ipykernel_helper.egg-info/SOURCES.txt +0 -0
- {ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46}/ipykernel_helper.egg-info/dependency_links.txt +0 -0
- {ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46}/ipykernel_helper.egg-info/entry_points.txt +0 -0
- {ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46}/ipykernel_helper.egg-info/requires.txt +0 -0
- {ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46}/ipykernel_helper.egg-info/top_level.txt +0 -0
- {ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46}/pyproject.toml +0 -0
- {ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46}/setup.cfg +0 -0
|
@@ -391,7 +391,7 @@ def structured_traceback(self:SyntaxTB, etype, evalue, etb, tb_offset=None, cont
|
|
|
391
391
|
def _getfile(obj): return str(inspect._orig_getfile(obj))
|
|
392
392
|
|
|
393
393
|
# %% ../nbs/00_core.ipynb #ff4984b9
|
|
394
|
-
@patch
|
|
394
|
+
@patch
|
|
395
395
|
async def run_cell_magic(self:InteractiveShell, magic_name, line, cell):
|
|
396
396
|
result = self._orig_run_cell_magic(magic_name, line, cell)
|
|
397
397
|
if inspect.iscoroutine(result): result = await result
|
|
@@ -399,7 +399,7 @@ async def run_cell_magic(self:InteractiveShell, magic_name, line, cell):
|
|
|
399
399
|
return result
|
|
400
400
|
|
|
401
401
|
def _await_cell_magic(lines):
|
|
402
|
-
if lines and 'get_ipython().run_cell_magic('
|
|
402
|
+
if lines and lines[0].lstrip().startswith('get_ipython().run_cell_magic('): lines[0] = f'await {lines[0]}'
|
|
403
403
|
return lines
|
|
404
404
|
|
|
405
405
|
def load_ipython_extension(ip):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46}/ipykernel_helper.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{ipykernel_helper-0.0.45 → ipykernel_helper-0.0.46}/ipykernel_helper.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|