[Python-checkins] cpython (2.7): untabify

benjamin.peterson python-checkins at python.org
Wed Jan 2 19:25:21 CET 2013


http://hg.python.org/cpython/rev/ded5386604fd
changeset:   81245:ded5386604fd
branch:      2.7
parent:      81241:c5199d9eee04
user:        Benjamin Peterson <benjamin at python.org>
date:        Wed Jan 02 12:25:15 2013 -0600
summary:
  untabify

files:
  Objects/stringobject.c |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Objects/stringobject.c b/Objects/stringobject.c
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -4490,9 +4490,9 @@
                     else {
                         iobj = PyNumber_Int(v);
                         if (iobj==NULL) {
-			    PyErr_Clear();
-			    iobj = PyNumber_Long(v);
-			}
+                            PyErr_Clear();
+                            iobj = PyNumber_Long(v);
+                        }
                     }
                     if (iobj!=NULL) {
                         if (PyInt_Check(iobj)) {

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


More information about the Python-checkins mailing list