Commit 8f8b4898 authored by Guido van Rossum's avatar Guido van Rossum

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!
parent 4f804bf9
......@@ -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);
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment