os: Include posix functions in os.__all__. Closes issue #18554.

Patch by Ronald Oussoren.
This commit is contained in:
Yury Selivanov 2014-09-26 12:33:06 -04:00
parent 4f6355f861
commit 97e2e06af8
3 changed files with 14 additions and 0 deletions

View file

@ -61,6 +61,10 @@ if 'posix' in _names:
except ImportError:
pass
import posix
__all__.extend(_get_exports_list(posix))
del posix
elif 'nt' in _names:
name = 'nt'
linesep = '\r\n'