summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-01-29 22:38:32 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2001-01-29 22:38:32 (GMT)
commit09ac89ae78a4977af6eda4b0e0c396f577220bd2 (patch)
tree6bfc8e9088453e23013db3603a540a8ae173089b /Objects
parent2d339f9369122998d104e77cbfb8b42349370d0b (diff)
downloadcpython-09ac89ae78a4977af6eda4b0e0c396f577220bd2.zip
cpython-09ac89ae78a4977af6eda4b0e0c396f577220bd2.tar.gz
cpython-09ac89ae78a4977af6eda4b0e0c396f577220bd2.tar.bz2
fix indentation glitch
Diffstat (limited to 'Objects')
-rw-r--r--Objects/classobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c
index 60214a4..ed79da5 100644
--- a/Objects/classobject.c
+++ b/Objects/classobject.c
@@ -626,7 +626,7 @@ instance_getattr2(register PyInstanceObject *inst, PyObject *name)
if (class != NULL) {
if (PyFunction_Check(v)) {
PyObject *w = PyMethod_New(v, (PyObject *)inst,
- (PyObject *)class);
+ (PyObject *)class);
Py_DECREF(v);
v = w;
}