Searched refs:getcwdb (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_posixpath.py | 328 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
|
D | test_os.py | 147 cwd = os.getcwdb()
|
/external/python/cpython3/Lib/ |
D | ntpath.py | 510 cwd = os.getcwdb() 631 cwd = os.getcwdb()
|
D | posixpath.py | 377 cwd = os.getcwdb()
|
/external/python/six/documentation/ |
D | index.rst | 586 | ``getcwdb`` | :func:`py2:os.getcwd` | :func:`py3:os.getcwdb` …
|
/external/python/pyfakefs/pyfakefs/ |
D | fake_filesystem.py | 3243 return self.os.getcwdb() 3731 def getcwdb(self): member in FakeOsModule
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.0.rst | 319 instance, and :func:`os.getcwdb` returns the current working
|
D | 3.8.rst | 1854 * The :func:`os.getcwdb` function now uses the UTF-8 encoding on Windows,
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 2762 The :func:`os.getcwdb` function now uses the UTF-8 encoding on Windows,
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 1761 .. function:: getcwdb()
|