Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f737703 commit 5646de4Copy full SHA for 5646de4
1 file changed
Modules/posixmodule.c
@@ -11692,7 +11692,7 @@ static PyMethodDef DirEntry_methods[] = {
11692
{NULL}
11693
};
11694
11695
-PyTypeObject DirEntryType = {
+static PyTypeObject DirEntryType = {
11696
PyVarObject_HEAD_INIT(NULL, 0)
11697
MODNAME ".DirEntry", /* tp_name */
11698
sizeof(DirEntry), /* tp_basicsize */
@@ -12024,7 +12024,7 @@ ScandirIterator_dealloc(ScandirIterator *iterator)
12024
Py_TYPE(iterator)->tp_free((PyObject *)iterator);
12025
}
12026
12027
-PyTypeObject ScandirIteratorType = {
+static PyTypeObject ScandirIteratorType = {
12028
12029
MODNAME ".ScandirIterator", /* tp_name */
12030
sizeof(ScandirIterator), /* tp_basicsize */
0 commit comments