Changeset ferringb%2Fpkgcore-dev,3508
- Timestamp:
- 06/28/08 13:41:47 (8 weeks ago)
- Author:
- Brian Harring <ferringb@…>
- Message:
-
correct a false positive for when snakeoil c extensions aren't available
- Location:
- ferringb/pkgcore-dev
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r3507
|
r3508
|
|
| 4 | 4 | See ChangeLog for full commit logs; this is summarized/major changes. |
| 5 | 5 | |
| | 6 | * correct a false positive in pkgcore.test.util.test_commandline that occurs |
| | 7 | when snakeoil c extensions aren't enabled. |
| 6 | 8 | |
| 7 | 9 | * ticket 193; follow symlinks in /etc/portage/*/ directories. |
-
|
r3062
|
r3508
|
|
| 252 | 252 | def main(options, out, err): |
| 253 | 253 | for f in (out, err): |
| 254 | | f.write(f.__class__.__name__, autoline=False) |
| | 254 | name = f.__class__.__name__ |
| | 255 | if name.startswith("native_"): |
| | 256 | name = name[len("native_"):] |
| | 257 | f.write(name, autoline=False) |
| 255 | 258 | |
| 256 | 259 | for args, out_kind, err_kind in [ |