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 70b1f4d commit 20da474Copy full SHA for 20da474
Objects/dictobject.c
@@ -582,7 +582,7 @@ calculate_log2_keysize(Py_ssize_t minsize)
582
#if SIZEOF_LONG == SIZEOF_SIZE_T
583
minsize = (minsize | PyDict_MINSIZE) - 1;
584
return _Py_bit_length(minsize | (PyDict_MINSIZE-1));
585
-#elif defined(_MSC_VER)
+#elif defined(_WIN32)
586
// On 64bit Windows, sizeof(long) == 4.
587
588
unsigned long msb;
0 commit comments