[Python-checkins] r84422 - python/branches/import_unicode/Modules/posixmodule.c
victor.stinner
python-checkins at python.org
Thu Sep 2 00:14:24 CEST 2010
Author: victor.stinner
Date: Thu Sep 2 00:14:24 2010
New Revision: 84422
Log:
Remove outdated comment
Modified:
python/branches/import_unicode/Modules/posixmodule.c
Modified: python/branches/import_unicode/Modules/posixmodule.c
==============================================================================
--- python/branches/import_unicode/Modules/posixmodule.c (original)
+++ python/branches/import_unicode/Modules/posixmodule.c Thu Sep 2 00:14:24 2010
@@ -2771,8 +2771,6 @@
return NULL;
path = PyBytes_AsString(opath);
Py_BEGIN_ALLOW_THREADS
- /* PyUnicode_AS_UNICODE OK without thread lock as
- it is a simple dereference. */
res = CreateDirectoryA(path, NULL);
Py_END_ALLOW_THREADS
if (!res) {
More information about the Python-checkins
mailing list