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!
This commit is contained in:
Guido van Rossum 2001-12-27 16:23:28 +00:00
parent 226275f780
commit bb2501f638

View file

@ -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);
}