Commit 5fb16acd authored by Yusei Tahara's avatar Yusei Tahara

erp5_data_notebook: Don't save ZBigArray in data notebook. It may be too big...

erp5_data_notebook: Don't save ZBigArray in data notebook. It may be too big that zope process may crash.
parent 5005c662
......@@ -30,7 +30,8 @@ display_data_wrapper_lock = threading.Lock()
# Well known unserializable types
from Record import Record
well_known_unserializable_type_tuple = (ModuleType, Record,)
from wendelin.bigarray.array_zodb import ZBigArray
well_known_unserializable_type_tuple = (ModuleType, Record, ZBigArray)
def Base_executeJupyter(self, python_expression=None, reference=None, \
title=None, request_reference=False, **kw):
......
......@@ -46,13 +46,13 @@
<key> <string>text_content_warning_message</string> </key>
<value>
<tuple>
<string>W:395, 10: Use of exec (exec-used)</string>
<string>W:441, 10: Use of exec (exec-used)</string>
<string>W:454, 10: Use of exec (exec-used)</string>
<string>W:543, 4: No exception type(s) specified (bare-except)</string>
<string>W:551, 6: No exception type(s) specified (bare-except)</string>
<string>W:863, 6: Use of exec (exec-used)</string>
<string>W:1098, 2: Redefining name \'IFrame\' from outer scope (line 4) (redefined-outer-name)</string>
<string>W:396, 10: Use of exec (exec-used)</string>
<string>W:442, 10: Use of exec (exec-used)</string>
<string>W:455, 10: Use of exec (exec-used)</string>
<string>W:544, 4: No exception type(s) specified (bare-except)</string>
<string>W:552, 6: No exception type(s) specified (bare-except)</string>
<string>W:864, 6: Use of exec (exec-used)</string>
<string>W:1099, 2: Redefining name \'IFrame\' from outer scope (line 4) (redefined-outer-name)</string>
</tuple>
</value>
</item>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment