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.
Add backports for capturing output and a parameterization function. (i…
…python#38) * Simplify the way we handle exceptions * Add tests for capture_output and partial * Add Lazy to the top level API * Include a notebook parameterization module (ipython#37)
- Loading branch information
Showing
19 changed files
with
1,301 additions
and
385 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,4 +1,5 @@ | ||
__all__ = 'Notebook', 'Partial', 'reload', 'load_ipython_extension', 'unload_ipython_extension' | ||
__all__ = 'Notebook', 'Partial', 'reload', 'Parameterize', 'Lazy' | ||
|
||
from .loader import Notebook, Partial, load_ipython_extension, unload_ipython_extension, reload | ||
from . import utils | ||
from .loader import Notebook, Partial, load_ipython_extension, unload_ipython_extension, reload, Lazy | ||
from .parameterize import Parameterize | ||
from . import utils |
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.