We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39a0b7c commit 4749890Copy full SHA for 4749890
Modules/_zoneinfo.c
@@ -100,8 +100,6 @@ typedef struct {
100
} zoneinfo_state;
101
102
// Globals
103
-static size_t ZONEINFO_STRONG_CACHE_MAX_SIZE = 8;
104
-
105
static zoneinfo_state global_state;
106
107
static _ttinfo NO_TTINFO = {NULL, NULL, NULL, 0};
@@ -120,6 +118,8 @@ static const int SOURCE_NOCACHE = 0;
120
118
static const int SOURCE_CACHE = 1;
121
119
static const int SOURCE_FILE = 2;
122
+static const size_t ZONEINFO_STRONG_CACHE_MAX_SIZE = 8;
+
123
// Forward declarations
124
static int
125
load_data(zoneinfo_state *state, PyZoneInfo_ZoneInfo *self,
0 commit comments