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 e0b4aa0 commit 6af528bCopy full SHA for 6af528b
Parser/parser.c
@@ -2,10 +2,9 @@
2
#include "pegen.h"
3
4
#if defined(Py_DEBUG) && defined(Py_BUILD_CORE)
5
-extern int Py_DebugFlag;
6
-#define D(x) if (Py_DebugFlag) x;
+# define D(x) if (Py_DebugFlag) x;
7
#else
8
-#define D(x)
+# define D(x)
9
#endif
10
static const int n_keyword_lists = 9;
11
static KeywordToken *reserved_keywords[] = {
Tools/peg_generator/pegen/c_generator.py
@@ -31,10 +31,9 @@
31
32
33
34
35
36
37
38
39
40
"""
0 commit comments