mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
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:
parent
226275f780
commit
bb2501f638
1 changed files with 1 additions and 1 deletions
|
|
@ -6014,5 +6014,5 @@ INITFUNC(void)
|
||||||
|
|
||||||
statvfs_result_desc.name = MODNAME ".statvfs_result";
|
statvfs_result_desc.name = MODNAME ".statvfs_result";
|
||||||
PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc);
|
PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc);
|
||||||
PyDict_SetItemString(d, "statvfs_result", (PyObject*) &StatResultType);
|
PyDict_SetItemString(d, "statvfs_result", (PyObject*) &StatVFSResultType);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue