From 6d6b0519039cf59f10721aa5824afdf0d3e8ab80 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Sun, 19 Jan 2025 23:57:02 +0800 Subject: [PATCH] ... --- docs/modules/pickle.md | 5 ++--- docs/modules/sys.md | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/modules/pickle.md b/docs/modules/pickle.md index e53b25f5..47f81e62 100644 --- a/docs/modules/pickle.md +++ b/docs/modules/pickle.md @@ -23,11 +23,10 @@ The following types can be pickled: - [ ] functions (built-in and user-defined) accessible from the top level of a module (using def, not lambda); - [x] classes accessible from the top level of a module; - [x] instances of such classes -- [x] `PY_STRUCT_LIKE` objects The following magic methods are available: -- [x] `__getnewargs__` +- [] `__getnewargs__` - [ ] `__getstate__` - [ ] `__setstate__` -- [ ] `__reduce__` +- [x] `__reduce__` diff --git a/docs/modules/sys.md b/docs/modules/sys.md index 9cdf1ec7..005bc77f 100644 --- a/docs/modules/sys.md +++ b/docs/modules/sys.md @@ -19,4 +19,4 @@ May be one of: ### `sys.argv` -The command line arguments. Set by `vm->set_main_argv`. +The command line arguments. Set by `py_sys_setargv`.