Home
last modified time | relevance | path

Searched refs:_os (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dtempfile.py32 import os as _os namespace
64 _text_openflags = _os.O_RDWR | _os.O_CREAT | _os.O_EXCL
65 if hasattr(_os, 'O_NOINHERIT'):
66 _text_openflags |= _os.O_NOINHERIT
67 if hasattr(_os, 'O_NOFOLLOW'):
68 _text_openflags |= _os.O_NOFOLLOW
71 if hasattr(_os, 'O_BINARY'):
72 _bin_openflags |= _os.O_BINARY
74 if hasattr(_os, 'TMP_MAX'):
75 TMP_MAX = _os.TMP_MAX
[all …]
Ddumbdbm.py24 import os as _os namespace
44 _os = _os # for _commit() variable in _Database
55 self._dirfile = filebasename + _os.extsep + 'dir'
61 self._datfile = filebasename + _os.extsep + 'dat'
62 self._bakfile = filebasename + _os.extsep + 'bak'
101 self._os.unlink(self._bakfile)
102 except self._os.error:
106 self._os.rename(self._dirfile, self._bakfile)
107 except self._os.error:
221 if hasattr(self._os, 'chmod'):
[all …]
Dargparse.py87 import os as _os namespace
163 width = int(_os.environ['COLUMNS'])
1573 prog = _os.path.basename(_sys.argv[0])
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dargparse.py87 import os as _os namespace
163 width = int(_os.environ['COLUMNS'])
1586 prog = _os.path.basename(_sys.argv[0])