You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/compat.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,12 @@ functions to bridge a gap. We aim to keep these as minimal as possible.
9
9
10
10
Whenever a Python exception is displayed by Julia, `sys.last_traceback` and friends are set. This allows the post-mortem debugger `pdb.pm()` to work. Disable by setting `PythonCall.CONFIG.auto_sys_last_traceback = false`.
11
11
12
+
## Julia standard library
13
+
14
+
Python objects can be serialised with the [`Serialization`](https://docs.julialang.org/en/v1/stdlib/Serialization/) stdlib.
15
+
This uses [`pickle`](https://docs.python.org/3/library/pickle.html) library under the hood.
16
+
You can opt into using [`dill`](https://pypi.org/project/dill/) instead by setting the environment variable `JULIA_PYTHONCALL_PICKLE="dill"`.
17
+
12
18
## Tabular data / Pandas
13
19
14
20
The abstract type [`PyTable`](@ref) is for wrapper types around Python tables, providing the
0 commit comments