mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
closes bpo-32460: ensure all non-static globals have initializers (#5061)
This commit is contained in:
parent
6c6d3a4608
commit
0a37a30037
9 changed files with 58 additions and 59 deletions
|
@ -17,7 +17,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
_Py_HashSecret_t _Py_HashSecret;
|
||||
_Py_HashSecret_t _Py_HashSecret = {0};
|
||||
|
||||
#if Py_HASH_ALGORITHM == Py_HASH_EXTERNAL
|
||||
extern PyHash_FuncDef PyHash_Func;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue