forked from ipython/ipynb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge changes that use separate the application of ast NodeTransforme…
…rs (ipython#41) * Reorder the hierarchy of the classes. * Deprecate parameterize for execute * Make the necessary changes for parameterize * Replace docstrings in utils source * Update the readme
- Loading branch information
Showing
26 changed files
with
1,360 additions
and
1,477 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,24 @@ | ||
|
||
# coding: utf-8 | ||
|
||
__all__ = "Notebook", "Partial", "reload", "Parameterize", "Lazy", "NotebookTest", "testmod", "Execute" | ||
__all__ = "Notebook", "reload", "Parameterize", "NotebookTest", "testmod", "Execute" | ||
|
||
try: | ||
from .loader import ( | ||
Notebook, | ||
Partial, | ||
load_ipython_extension, | ||
unload_ipython_extension, | ||
reload, | ||
Lazy, | ||
) | ||
from .parameterize import Parameterize | ||
from .nbtest import NotebookTest, testmod | ||
from .execute import Execute | ||
from .execute import Execute, Parameterize | ||
|
||
except: | ||
from loader import ( | ||
Notebook, | ||
Partial, | ||
load_ipython_extension, | ||
unload_ipython_extension, | ||
reload, | ||
Lazy, | ||
) | ||
from parameterize import Parameterize | ||
from execute import Execute | ||
from execute import Execute, Parameterize | ||
from nbtest import NotebookTest, testmod |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.