[Python-checkins] cpython: Removed trailing tabs.

serhiy.storchaka python-checkins at python.org
Sat Mar 21 08:26:28 CET 2015


https://hg.python.org/cpython/rev/cedf75f43b3c
changeset:   95108:cedf75f43b3c
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Sat Mar 21 09:25:53 2015 +0200
summary:
  Removed trailing tabs.

files:
  Include/grammar.h |  2 +-
  Include/node.h    |  2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Include/grammar.h b/Include/grammar.h
--- a/Include/grammar.h
+++ b/Include/grammar.h
@@ -37,7 +37,7 @@
 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
--- a/Include/node.h
+++ b/Include/node.h
@@ -26,7 +26,7 @@
 
 /* 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)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list