[Python-checkins] cpython: Fix whitespace.

ezio.melotti python-checkins at python.org
Thu Sep 29 00:00:37 CEST 2011


http://hg.python.org/cpython/rev/addbb996f885
changeset:   72505:addbb996f885
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Thu Sep 29 01:00:19 2011 +0300
summary:
  Fix whitespace.

files:
  Modules/_sre.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/_sre.c b/Modules/_sre.c
--- a/Modules/_sre.c
+++ b/Modules/_sre.c
@@ -3776,7 +3776,7 @@
 
 #define SCAN_OFF(x) offsetof(ScannerObject, x)
 static PyMemberDef scanner_members[] = {
-    {"pattern", T_OBJECT,       SCAN_OFF(pattern),      READONLY},
+    {"pattern", T_OBJECT, SCAN_OFF(pattern), READONLY},
     {NULL}  /* Sentinel */
 };
 

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


More information about the Python-checkins mailing list