Nov. 27, 2010
8:03 p.m.
Author: barry.warsaw Date: Sat Nov 27 21:03:03 2010 New Revision: 86837 Log: Roumen Petrov's fix for when all paths are absolute. (Issue 10520) Modified: python/branches/py3k/setup.py Modified: python/branches/py3k/setup.py ============================================================================== --- python/branches/py3k/setup.py (original) +++ python/branches/py3k/setup.py Sat Nov 27 21:03:03 2010 @@ -38,7 +38,8 @@ for i, path in enumerate(dirlist): if not os.path.isabs(path): dirlist.insert(i + 1, dir) - break + return + dirlist.insert(0, dir) def macosx_sdk_root(): """
5623
Age (days ago)
5623
Last active (days ago)
0 comments
1 participants
participants (1)
-
barry.warsaw