Amaury Forgeot d'Arc <amaur...@gmail.com> added the comment: +1 for the patch! Note that fdopen is now a simple call to open(), so theses lines are equivalent:
python2.7: open(filename, 're') python3.3: open(os.open(filename, os.O_RDONLY|os.O_CLOEXEC)) ---------- resolution: -> accepted stage: -> commit review _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue12105> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com