Home
last modified time | relevance | path

Searched refs:getcwdb (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_posixpath.py328 self.assertEqual(realpath(b'.'), os.getcwdb())
329 self.assertEqual(realpath(b'./.'), os.getcwdb())
330 self.assertEqual(realpath(b'/'.join([b'.'] * 100)), os.getcwdb())
338 self.assertEqual(realpath(b'..'), dirname(os.getcwdb()))
339 self.assertEqual(realpath(b'../..'), dirname(dirname(os.getcwdb())))
536 (real_getcwdb, os.getcwdb) = (os.getcwdb, lambda: br"/home/user/bar")
538 curdir = os.path.split(os.getcwdb())[-1]
563 os.getcwdb = real_getcwdb
Dtest_os.py147 cwd = os.getcwdb()
/external/python/cpython3/Lib/
Dntpath.py510 cwd = os.getcwdb()
631 cwd = os.getcwdb()
Dposixpath.py377 cwd = os.getcwdb()
/external/python/six/documentation/
Dindex.rst586 | ``getcwdb`` | :func:`py2:os.getcwd` | :func:`py3:os.getcwdb` …
/external/python/pyfakefs/pyfakefs/
Dfake_filesystem.py3243 return self.os.getcwdb()
3731 def getcwdb(self): member in FakeOsModule
/external/python/cpython3/Doc/whatsnew/
D3.0.rst319 instance, and :func:`os.getcwdb` returns the current working
D3.8.rst1854 * The :func:`os.getcwdb` function now uses the UTF-8 encoding on Windows,
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst2762 The :func:`os.getcwdb` function now uses the UTF-8 encoding on Windows,
/external/python/cpython3/Doc/library/
Dos.rst1761 .. function:: getcwdb()