mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Make 2 module variables static. Assuming this is correct.
This commit is contained in:
parent
0732301738
commit
0ae4c4a823
1 changed files with 2 additions and 2 deletions
|
@ -120,10 +120,10 @@ static PyObject *extension_cache;
|
|||
static PyObject *two_tuple;
|
||||
|
||||
/* object.__reduce__, the default reduce callable. */
|
||||
PyObject *object_reduce;
|
||||
static PyObject *object_reduce;
|
||||
|
||||
/* copy_reg._better_reduce, the protocol 2 reduction function. */
|
||||
PyObject *better_reduce;
|
||||
static PyObject *better_reduce;
|
||||
|
||||
static PyObject *__class___str, *__getinitargs___str, *__dict___str,
|
||||
*__getstate___str, *__setstate___str, *__name___str, *__reduce___str,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue