-
Notifications
You must be signed in to change notification settings - Fork 391
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Percent representation for frozen cells #101
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
tests/notebooks/mirror/ipynb_to_percent/frozen_cell_test.py
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# --- | ||
# jupyter: | ||
# kernelspec: | ||
# display_name: Python 3 | ||
# language: python | ||
# name: python3 | ||
# language_info: | ||
# codemirror_mode: | ||
# name: ipython | ||
# version: 3 | ||
# file_extension: .py | ||
# mimetype: text/x-python | ||
# name: python | ||
# nbconvert_exporter: python | ||
# pygments_lexer: ipython3 | ||
# version: 3.7.0 | ||
# --- | ||
|
||
# %% {"ExecuteTime": {"end_time": "2018-10-17T10:31:56.160823Z", "start_time": "2018-10-17T10:31:56.157308Z"}} | ||
# This is an unfrozen cell. Works as usual. | ||
print("I'm a regular cell so I run and print!") | ||
|
||
# %% {"deletable": false, "editable": false, "run_control": {"frozen": true}} | ||
# # This is an frozen cell | ||
# print("I'm frozen so Im not executed :(") |