summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-12-27 16:23:28 (GMT)
committerGuido van Rossum <guido@python.org>2001-12-27 16:23:28 (GMT)
commitbb2501f6388544fabca7c2df33d91e8577d74ca5 (patch)
treebf1b382e3c5371fd2a78be23d936b95d0bc46b1d
parent226275f780c878f836542a1c1916688f581f34ec (diff)
downloadcpython-bb2501f6388544fabca7c2df33d91e8577d74ca5.zip
cpython-bb2501f6388544fabca7c2df33d91e8577d74ca5.tar.gz
cpython-bb2501f6388544fabca7c2df33d91e8577d74ca5.tar.bz2
Due to a cut-and-paste error, the type object exported under the name
statvfs_result was in fact the stat_result type object. :-( 2.2.1 bugfix!
-rw-r--r--Modules/posixmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index a7ec442..1290977 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -6014,5 +6014,5 @@ INITFUNC(void)
statvfs_result_desc.name = MODNAME ".statvfs_result";
PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc);
- PyDict_SetItemString(d, "statvfs_result", (PyObject*) &StatResultType);
+ PyDict_SetItemString(d, "statvfs_result", (PyObject*) &StatVFSResultType);
}