[issue13263] Group some os functions in submodules

Ezio Melotti report at bugs.python.org
Tue Oct 25 14:06:17 CEST 2011


New submission from Ezio Melotti <ezio.melotti at gmail.com>:

In Python 3.3 the os module gained a few new functions and constants:

Python 3.2.2+ (3.2:58a75eeb5c8e, Sep 29 2011, 02:11:05) 
>>> import os; len(dir(os))
232

Python 3.3.0a0 (default:a50f080c22ca+, Oct 25 2011, 09:56:01) 
>>> import os; len(dir(os))
332

http://docs.python.org/dev/py3k/whatsnew/3.3.html#os lists some of these additions, and they are already grouped (e.g. the sched_* functions, the "at" functions, ...).

Before the os API gets even more bloated, maybe we should group some of these functions in new submodules, like os.sched.*.

----------
components: Extension Modules
messages: 146363
nosy: benjamin.peterson, ezio.melotti, georg.brandl, loewis, pitrou, rhettinger
priority: normal
severity: normal
stage: needs patch
status: open
title: Group some os functions in submodules
type: feature request
versions: Python 3.3

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue13263>
_______________________________________


More information about the Python-bugs-list mailing list