jupyter-ydoc 3.3.0__py3-none-any.whl → 3.3.1__py3-none-any.whl
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.
- jupyter_ydoc/_version.py +1 -1
- jupyter_ydoc/ynotebook.py +8 -3
- {jupyter_ydoc-3.3.0.dist-info → jupyter_ydoc-3.3.1.dist-info}/METADATA +1 -1
- {jupyter_ydoc-3.3.0.dist-info → jupyter_ydoc-3.3.1.dist-info}/RECORD +7 -7
- {jupyter_ydoc-3.3.0.dist-info → jupyter_ydoc-3.3.1.dist-info}/WHEEL +0 -0
- {jupyter_ydoc-3.3.0.dist-info → jupyter_ydoc-3.3.1.dist-info}/entry_points.txt +0 -0
- {jupyter_ydoc-3.3.0.dist-info → jupyter_ydoc-3.3.1.dist-info}/licenses/LICENSE +0 -0
jupyter_ydoc/_version.py
CHANGED
jupyter_ydoc/ynotebook.py
CHANGED
|
@@ -345,9 +345,14 @@ class YNotebook(YBaseDoc):
|
|
|
345
345
|
for key in shared_keys:
|
|
346
346
|
if old_cell[key] != new_cell[key]:
|
|
347
347
|
value = new_cell[key]
|
|
348
|
-
if
|
|
349
|
-
|
|
350
|
-
|
|
348
|
+
if (
|
|
349
|
+
key == "outputs"
|
|
350
|
+
and value
|
|
351
|
+
and any(output.get("output_type") == "stream" for output in value)
|
|
352
|
+
):
|
|
353
|
+
# Outputs with stream require complex handling as they have
|
|
354
|
+
# the Text type nested inside; for now skip creating them.
|
|
355
|
+
# Clearing all outputs is fine.
|
|
351
356
|
return False
|
|
352
357
|
|
|
353
358
|
if key in _CELL_KEY_TYPE_MAP:
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
jupyter_ydoc/__init__.py,sha256=itUidK7o0_wS6YcbKKIyt1su7hM3-YppQshFheTQQdw,428
|
|
2
|
-
jupyter_ydoc/_version.py,sha256=
|
|
2
|
+
jupyter_ydoc/_version.py,sha256=x_sVWMD6ap_A4vQm5y9tdlqTDcRFFLDXlpVUMVmxlIM,171
|
|
3
3
|
jupyter_ydoc/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
jupyter_ydoc/utils.py,sha256=yKvcuqhpylMinmjuscuZ_kY8KPEseFbwcg5K9VzYOfs,810
|
|
5
5
|
jupyter_ydoc/ybasedoc.py,sha256=c0jwhULtTNCjOYHbXhDhKaD6OJYn7hpL4hcLZWyGJsU,5115
|
|
6
6
|
jupyter_ydoc/yblob.py,sha256=JZiXQhONqFS8Cqdglx__AVeS18gyRq0yHq-AQKFPVfw,2316
|
|
7
7
|
jupyter_ydoc/yfile.py,sha256=XTMtAXDWgIOLU2KUQxkLJz2cGvSPlOxpvJc4daXCV6I,198
|
|
8
|
-
jupyter_ydoc/ynotebook.py,sha256=
|
|
8
|
+
jupyter_ydoc/ynotebook.py,sha256=Xplr1x57Y6gWAU84u-Krh9_Xkn_-AN-Vte4DJY5VOfw,13452
|
|
9
9
|
jupyter_ydoc/yunicode.py,sha256=ZLNLTJoy75gxCwI8ZNBv_gD42hrzHfD-J6GOO1WaJIE,2574
|
|
10
|
-
jupyter_ydoc-3.3.
|
|
11
|
-
jupyter_ydoc-3.3.
|
|
12
|
-
jupyter_ydoc-3.3.
|
|
13
|
-
jupyter_ydoc-3.3.
|
|
14
|
-
jupyter_ydoc-3.3.
|
|
10
|
+
jupyter_ydoc-3.3.1.dist-info/METADATA,sha256=rimDKlYURSFVG1DFMI9t5gYrAnGmuesVmQNu0k8a6Qs,2282
|
|
11
|
+
jupyter_ydoc-3.3.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
12
|
+
jupyter_ydoc-3.3.1.dist-info/entry_points.txt,sha256=lgvRG-rpsjRKf8cy7LpO7fqwwXy0sBVMCwhGOHgn4mc,164
|
|
13
|
+
jupyter_ydoc-3.3.1.dist-info/licenses/LICENSE,sha256=dqphsFbhnlzPK7Vlkc66Zc7g7PS-e1dln07GXIVpFCQ,1567
|
|
14
|
+
jupyter_ydoc-3.3.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|