- Python Home
- About
- News
- Documentation
- Downloads
- Community
- Foundation
- Developer's Guide
- Issue Tracker
- Issues
- Summaries
- User
- Administration
- Help
Message122407
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 | rpetrov |
|---|---|
| Recipients | barry, benjamin.peterson, doko, eric.araujo, pitrou, rpetrov, skrah, tarek |
| Date | 2010-11-25.20:40:48 |
| SpamBayes Score | 0.06603703 |
| Marked as misclassified | No |
| Message-id | <1290717658.21.0.209984775869.issue10520@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
It is wort to fix regression if all directories are absolute.
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -54,7 +54,8 @@
for i, path in enumerate(dirlist):
if not os.path.isabs(path):
dirlist.insert(i + 1, dir)
- break
+ return
+ dirlist.insert(0, dir) |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2010-11-25 20:40:58 | rpetrov | set | recipients: + rpetrov, barry, doko, pitrou, benjamin.peterson, tarek, eric.araujo, skrah |
| 2010-11-25 20:40:58 | rpetrov | set | messageid: <1290717658.21.0.209984775869.issue10520@psf.upfronthosting.co.za> |
| 2010-11-25 20:40:48 | rpetrov | link | issue10520 messages |
| 2010-11-25 20:40:48 | rpetrov | create | |

