[Python-checkins] cpython: Reformat by replacing tabs with 4-spaces. Makes the code more PEP-7 compliant

eli.bendersky python-checkins at python.org
Thu Apr 5 05:44:41 CEST 2012


http://hg.python.org/cpython/rev/64b8fdb0bfa9
changeset: 76112:64b8fdb0bfa9
user: Eli Bendersky <eliben at gmail.com>
date: Thu Apr 05 06:42:48 2012 +0300
summary:
 Reformat by replacing tabs with 4-spaces. Makes the code more PEP-7 compliant
and gets rid of some gross formatting on tab=4-space-configured editors.
files:
 Include/methodobject.h | 16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/Include/methodobject.h b/Include/methodobject.h
--- a/Include/methodobject.h
+++ b/Include/methodobject.h
@@ -17,7 +17,7 @@
 
 typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,
-					 PyObject *);
+ PyObject *);
 typedef PyObject *(*PyNoArgsFunction)(PyObject *);
 
 PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *);
@@ -33,22 +33,22 @@
 (((PyCFunctionObject *)func) -> m_ml -> ml_flags & METH_STATIC ? \
 NULL : ((PyCFunctionObject *)func) -> m_self)
 #define PyCFunction_GET_FLAGS(func) \
-	(((PyCFunctionObject *)func) -> m_ml -> ml_flags)
+ (((PyCFunctionObject *)func) -> m_ml -> ml_flags)
 #endif
 PyAPI_FUNC(PyObject *) PyCFunction_Call(PyObject *, PyObject *, PyObject *);
 
 struct PyMethodDef {
- const char	*ml_name;	/* The name of the built-in function/method */
- PyCFunction ml_meth;	/* The C function that implements it */
- int		 ml_flags;	/* Combination of METH_xxx flags, which mostly
-				 describe the args expected by the C func */
- const char	*ml_doc;	/* The __doc__ attribute, or NULL */
+ const char *ml_name; /* The name of the built-in function/method */
+ PyCFunction ml_meth; /* The C function that implements it */
+ int ml_flags; /* Combination of METH_xxx flags, which mostly
+ describe the args expected by the C func */
+ const char *ml_doc; /* The __doc__ attribute, or NULL */
 };
 typedef struct PyMethodDef PyMethodDef;
 
 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *, 
-					 PyObject *);
+ PyObject *);
 
 /* Flag passed to newmethodobject */
 /* #define METH_OLDARGS 0x0000 -- unsupported now */
-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list

AltStyle によって変換されたページ (->オリジナル) /