]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Removed trailing tabs.
authorSerhiy Storchaka <storchaka@gmail.com>
Sat, 21 Mar 2015 07:25:53 +0000 (09:25 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 21 Mar 2015 07:25:53 +0000 (09:25 +0200)
Include/grammar.h
Include/node.h

index ba7d19d821b68e1ee313c1f5939c59b58ed27665..85120b9be963d52a2ae55fb66b144b9102a321ae 100644 (file)
@@ -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 */
index 2e4e2bada7f2edacd8628fe54cec7bd03adfd2ba..654ad8582301457752a5e86d12a2213c516281e2 100644 (file)
@@ -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)