Home | History | Annotate | Download | only in python2.7

Lines Matching defs:posix

1 r"""OS routines for Mac, NT, or Posix depending on what system we're on.
4 - all functions from posix, nt, os2, or ce, e.g. unlink, stat, etc.
6 - os.name is 'posix', 'nt', 'os2', 'ce' or 'riscos'
41 if 'posix' in _names:
42 name = 'posix'
44 from posix import *
46 from posix import _exit
51 import posix
52 __all__.extend(_get_exports_list(posix))
53 del posix