This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ezio.melotti
Recipients benjamin.peterson, ezio.melotti, georg.brandl, loewis, pitrou, rhettinger
Date 2011-10-25.12:06:16
SpamBayes Score 0.00029899675
Marked as misclassified No
Message-id <1319544377.25.0.706220454632.issue13263@psf.upfronthosting.co.za>
In-reply-to
Content
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.*.
History
Date User Action Args
2011-10-25 12:06:17ezio.melottisetrecipients: + ezio.melotti, loewis, georg.brandl, rhettinger, pitrou, benjamin.peterson
2011-10-25 12:06:17ezio.melottisetmessageid: <1319544377.25.0.706220454632.issue13263@psf.upfronthosting.co.za>
2011-10-25 12:06:16ezio.melottilinkissue13263 messages
2011-10-25 12:06:16ezio.melotticreate