diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-04-19 23:11:36 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-19 11:41:36 -0600 |
commit | ab0d35d70dfe0b4c11583f8f735a8cc49b58c58b (patch) | |
tree | ed1f726c61787498c0d7fa9890c932d6945ee881 /Modules/_pickle.c | |
parent | 3c4380651301f255ef8149b638a1fae205ede575 (diff) | |
download | cpython-ab0d35d70dfe0b4c11583f8f735a8cc49b58c58b.tar.gz cpython-ab0d35d70dfe0b4c11583f8f735a8cc49b58c58b.zip |
bpo-46712: share more global strings in deepfreeze (gh-32152)
(for gh-90868)
Diffstat (limited to 'Modules/_pickle.c')
-rw-r--r-- | Modules/_pickle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_pickle.c b/Modules/_pickle.c index 84f469dee99..a5595eb10c8 100644 --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -1812,7 +1812,7 @@ get_dotted_path(PyObject *obj, PyObject *name) { PyObject *dotted_path; Py_ssize_t i, n; - + _Py_DECLARE_STR(dot, "."); dotted_path = PyUnicode_Split(name, &_Py_STR(dot), -1); if (dotted_path == NULL) return NULL; |