Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3d330ad

Browse files
committed
Remove C++-style comments
1 parent 2ed94eb commit 3d330ad

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/posixmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2330,7 +2330,7 @@ posix_listdir(PyObject *self, PyObject *args)
23302330
WIN32_FIND_DATAW wFileData;
23312331
Py_UNICODE *wnamebuf, *po_wchars;
23322332

2333-
if (po == NULL) { // Default arg: "."
2333+
if (po == NULL) { /* Default arg: "." */
23342334
po_wchars = L".";
23352335
len = 1;
23362336
} else {
@@ -2577,7 +2577,7 @@ posix_listdir(PyObject *self, PyObject *args)
25772577
oname = NULL;
25782578
if (!PyArg_ParseTuple(args, "|O&:listdir", PyUnicode_FSConverter, &oname))
25792579
return NULL;
2580-
if (oname == NULL) { // Default arg: "."
2580+
if (oname == NULL) { /* Default arg: "." */
25812581
oname = PyBytes_FromString(".");
25822582
}
25832583
name = PyBytes_AsString(oname);

0 commit comments

Comments
 (0)