[issue18554] os.__all__ is incomplete

2014-09-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7230978647a8 by Yury Selivanov in branch 'default': os: Include posix functions in os.__all__. Closes issue #18554. https://hg.python.org/cpython/rev/7230978647a8 -- nosy: +python-dev ___ Python tracker

[issue18554] os.__all__ is incomplete

2014-09-26 Thread Yury Selivanov
Yury Selivanov added the comment: Thanks for the patch. I've committed this to 3.5 only, as there is a slight chance that it breaks backwards compatibility for some scripts. -- resolution: - fixed status: open - closed ___ Python tracker

[issue18554] os.__all__ is incomplete

2014-08-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. Please commit. -- assignee: - ronaldoussoren nosy: +serhiy.storchaka stage: patch review - commit review versions: +Python 2.7, Python 3.5 -Python 3.3 ___ Python tracker rep...@bugs.python.org

[issue18554] os.__all__ is incomplete

2014-08-18 Thread Martin Panter
Martin Panter added the comment: I ran into this today, trying to do “help(os)”. The workaround was to do “import posix; help(posix)”. -- nosy: +vadmium ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18554

[issue18554] os.__all__ is incomplete

2014-01-31 Thread Yury Selivanov
Yury Selivanov added the comment: bump? -- nosy: +yselivanov ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18554 ___ ___ Python-bugs-list mailing

[issue18554] os.__all__ is incomplete

2013-07-25 Thread Ronald Oussoren
New submission from Ronald Oussoren: On Unix the __all__ of the os module doesn't list the names imported from the posix module. The attached patch ensures that exports from the posix module are added to __all__, just like they are for NT and for Python 2.7. -- components: Library