summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-21 07:25:53 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-21 07:25:53 (GMT)
commitf402775e5d886e76613101c5ec75616e7628293c (patch)
tree6bc29d92078463e00a7d7453af9ed3ccb2664b21 /Include
parente9ae8340a3060637ae74825024683d05e3bb71e3 (diff)
downloadcpython-f402775e5d886e76613101c5ec75616e7628293c.zip
cpython-f402775e5d886e76613101c5ec75616e7628293c.tar.gz
cpython-f402775e5d886e76613101c5ec75616e7628293c.tar.bz2
Removed trailing tabs.
Diffstat (limited to 'Include')
-rw-r--r--Include/grammar.h2
-rw-r--r--Include/node.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Include/grammar.h b/Include/grammar.h
index ba7d19d..85120b9 100644
--- a/Include/grammar.h
+++ b/Include/grammar.h
@@ -37,7 +37,7 @@ typedef struct {
typedef struct {
int s_narcs;
arc *s_arc; /* Array of arcs */
-
+
/* Optional accelerators */
int s_lower; /* Lowest label index */
int s_upper; /* Highest label index */
diff --git a/Include/node.h b/Include/node.h
index 2e4e2ba..654ad85 100644
--- a/Include/node.h
+++ b/Include/node.h
@@ -26,7 +26,7 @@ PyAPI_FUNC(Py_ssize_t) _PyNode_SizeOf(node *n);
/* Node access functions */
#define NCH(n) ((n)->n_nchildren)
-
+
#define CHILD(n, i) (&(n)->n_child[i])
#define RCHILD(n, i) (CHILD(n, NCH(n) + i))
#define TYPE(n) ((n)->n_type)