Issue #13374: Deprecate os.getcwdb() on Windows

This commit is contained in:
Victor Stinner 2011-11-16 23:43:07 +01:00
parent 345379a7f8
commit f7c5ae2257
3 changed files with 8 additions and 2 deletions

View file

@ -2410,6 +2410,9 @@ posix_getcwd(int use_bytes)
if (wbuf2 != wbuf) free(wbuf2);
return resobj;
}
if (win32_warn_bytes_api())
return NULL;
#endif
Py_BEGIN_ALLOW_THREADS