[issue17220] Little enhancements of _bootstrap.py

2013-02-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2528e4aea338 by Serhiy Storchaka in branch 'default': Issue #17220: Little cleanup of _bootstrap.py. http://hg.python.org/cpython/rev/2528e4aea338 -- nosy: +python-dev ___ Python tracker

[issue17220] Little enhancements of _bootstrap.py

2013-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - fixed stage: commit review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17220

[issue17220] Little enhancements of _bootstrap.py

2013-02-25 Thread Zachary Ware
Zachary Ware added the comment: 2528e4aea338 seems to have broken building on Windows: http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%203.x/builds/1517 -- nosy: +zach.ware ___ Python tracker rep...@bugs.python.org

[issue17220] Little enhancements of _bootstrap.py

2013-02-25 Thread Brett Cannon
Brett Cannon added the comment: I dug into http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%203.x/builds/1517/steps/compile/logs/stdio and found this traceback: EXEC : Fatal Python error : Py_Initialize: unable to load the file system codec

[issue17220] Little enhancements of _bootstrap.py

2013-02-25 Thread Brett Cannon
Brett Cannon added the comment: Found another bug introduced by this patch which I will have a patch for shortly. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17220 ___

[issue17220] Little enhancements of _bootstrap.py

2013-02-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset d98a82f4c9bd by Brett Cannon in branch 'default': Issue #17220: two fixes for changeset 2528e4aea338. http://hg.python.org/cpython/rev/d98a82f4c9bd -- ___ Python tracker rep...@bugs.python.org

[issue17220] Little enhancements of _bootstrap.py

2013-02-18 Thread Brett Cannon
Brett Cannon added the comment: It all LGTM. Nice cleanup! Totally didn't remember about to_bytes and from_bytes. If you are feeling adventurous you can look at possibly porting the changes you made to _path_join() and _path_split() to os.py since I mostly copied them. -- assignee:

[issue17220] Little enhancements of _bootstrap.py

2013-02-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: _path_join() and _path_split() do not look as join() and split() from ntpath or posixpath. They rather look as very simplified and limited versions of join() and split(). Perhaps they are enough for _bootstrap.py, but real os.path functions are more

[issue17220] Little enhancements of _bootstrap.py

2013-02-17 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: The proposed patch a little cleans and optimizes some bits of _bootstrap.py. -- components: Interpreter Core files: _bootstrap.diff keywords: patch messages: 182280 nosy: brett.cannon, ncoghlan, serhiy.storchaka priority: normal severity: normal

[issue17220] Little enhancements of _bootstrap.py

2013-02-17 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17220 ___