Thanks to visit codestin.com Credit goes to github.com
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 97b5228 commit d6ba6b7Copy full SHA for d6ba6b7
1 file changed
Include/cpython/unicodeobject.h
@@ -11,8 +11,13 @@
11
12
/* --- Internal Unicode Operations ---------------------------------------- */
13
14
-#define HAVE_UNICODE_WCHAR_CACHE 1
15
-#define USE_UNICODE_WCHAR_CACHE 1
+#ifndef HAVE_UNICODE_WCHAR_CACHE
+# define HAVE_UNICODE_WCHAR_CACHE 1
16
+#endif /* HAVE_UNICODE_WCHAR_CACHE */
17
+
18
+#ifndef USE_UNICODE_WCHAR_CACHE
19
+# define USE_UNICODE_WCHAR_CACHE HAVE_UNICODE_WCHAR_CACHE
20
+#endif /* USE_UNICODE_WCHAR_CACHE */
21
22
/* Since splitting on whitespace is an important use case, and
23
whitespace in most situations is solely ASCII whitespace, we
0 commit comments