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 vstinner
Recipients christian.heimes, jftuga, larry, serhiy.storchaka, vstinner
Date 2012-09-20.12:12:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348143157.49.0.737787908322.issue15972@psf.upfronthosting.co.za>
In-reply-to
Content
Functions of the os module uses PyUnicode_FSConverter() function (which uses PyBytes_Check() on bytes) in Python 3.2, whereas PyBytes_FromObject() is used in Python 3.3. Related change:

changeset:   77597:27f9c26fdd8b
user:        Larry Hastings <larry@hastings.org>
date:        Fri Jun 22 16:30:09 2012 -0700
files:       Doc/library/os.rst Lib/os.py Lib/shutil.py Lib/test/support.py Lib/test/test_os.py Lib/test/test_posix.py Lib/test/test_shutil.py Misc/NEWS Modules/posixmodule.c
description:
Issue #14626: Large refactoring of functions / parameters in the os module.
Many functions now support "dir_fd" and "follow_symlinks" parameters;
some also support accepting an open file descriptor in place of of a path
string.  Added os.support_* collections as LBYL helpers.  Removed many
functions only previously seen in 3.3 alpha releases (often starting with
"f" or "l", or ending with "at").  Originally suggested by Serhiy Storchaka;
implemented by Larry Hastings.
History
Date User Action Args
2012-09-20 12:12:37vstinnersetrecipients: + vstinner, larry, christian.heimes, serhiy.storchaka, jftuga
2012-09-20 12:12:37vstinnersetmessageid: <1348143157.49.0.737787908322.issue15972@psf.upfronthosting.co.za>
2012-09-20 12:12:37vstinnerlinkissue15972 messages
2012-09-20 12:12:36vstinnercreate