From: Antoine Pitrou Date: Tue, 14 Sep 2010 10:08:08 +0000 (+0000) Subject: Remove C++-style comments X-Git-Tag: v3.2a3~270 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3d330add9e771748bb690b6a81a311067dc46823;p=thirdparty%2FPython%2Fcpython.git Remove C++-style comments --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 82bbd9196422..80260960b5ad 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -2330,7 +2330,7 @@ posix_listdir(PyObject *self, PyObject *args) WIN32_FIND_DATAW wFileData; Py_UNICODE *wnamebuf, *po_wchars; - if (po == NULL) { // Default arg: "." + if (po == NULL) { /* Default arg: "." */ po_wchars = L"."; len = 1; } else { @@ -2577,7 +2577,7 @@ posix_listdir(PyObject *self, PyObject *args) oname = NULL; if (!PyArg_ParseTuple(args, "|O&:listdir", PyUnicode_FSConverter, &oname)) return NULL; - if (oname == NULL) { // Default arg: "." + if (oname == NULL) { /* Default arg: "." */ oname = PyBytes_FromString("."); } name = PyBytes_AsString(oname);