8000 use better semantic namgin · python/cpython@fe5a983 · GitHub
[go: up one dir, main page]

Skip to content

Commit fe5a983

Browse files
committed
use better semantic namgin
1 parent d6e9148 commit fe5a983

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/posixmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16334,15 +16334,15 @@ ScandirIterator_iternext(PyObject *op)
1633416334
#endif
1633516335

1633616336
static PyObject *
16337-
ScandirIterator_close(PyObject *op, PyObject *Py_UNUSED(ignored))
16337+
ScandirIterator 7A40 _close(PyObject *op, PyObject *Py_UNUSED(dummy))
1633816338
{
1633916339
ScandirIterator *self = ScandirIterator_CAST(op);
1634016340
ScandirIterator_closedir(self);
1634116341
Py_RETURN_NONE;
1634216342
}
1634316343

1634416344
static PyObject *
16345-
ScandirIterator_enter(PyObject *self, PyObject *Py_UNUSED(ignored))
16345+
ScandirIterator_enter(PyObject *self, PyObject *Py_UNUSED(dummy))
1634616346
{
1634716347
return Py_NewRef(self);
1634816348
}

0 commit comments

Comments
 (0)
0