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 6bc3d73 commit 85a8baeCopy full SHA for 85a8bae
Python/sysmodule.c
@@ -36,7 +36,7 @@ Data members:
36
#include "pycore_pystats.h" // _Py_PrintSpecializationStats()
37
#include "pycore_structseq.h" // _PyStructSequence_InitBuiltinWithFlags()
38
#include "pycore_sysmodule.h" // export _PySys_GetSizeOf()
39
-#include "pycore_unicodeobject.h" // _PyUnicode_InternImmortal()
+#include "pycore_unicodeobject.h" // _PyUnicode_InternImmortal(), _PyUnicode_EqualToASCIIString()
40
41
#include "pydtrace.h" // PyDTrace_AUDIT()
42
#include "osdefs.h" // DELIM
@@ -213,6 +213,8 @@ PySys_GetObject(const char *name)
213
return NULL;
214
}
215
216
+#else
217
+ (void) ret; // ignore unused variable warning
218
#endif
219
return value;
220
0 commit comments