An error occurred fetching the project authors.
- 15 Sep, 2011 1 commit
-
-
Éric Araujo authored
This method was supposed to return only the file under the dist-info directory, but it actually returned all installed files. The tests didn’t catch this because they were flawed; I updated them. Thanks to Nadeem Vawda and Jeremy Kloth for testing. As a bonus, the removal of os.path.relpath use should also fix the Windows buildbots.
-
- 31 Jul, 2011 1 commit
-
-
Éric Araujo authored
This prevents tests from failing when run from a Python installed in a read-only directory. The code is a bit uglier; shutil.copytree calls copystat on directories behind our back, so I had to add an os.walk with os.chmod (*and* os.path.join!) calls. shutil, I am disappoint. This changeset is dedicated to the hundreds of neurons that were lost while I was debugging this on an otherwise fine afternoon.
-
- 29 Jul, 2011 1 commit
-
-
Éric Araujo authored
- Use shortcut dist.version instead of going through metadata; - Use %r throughout to display project names and paths.
-
- 16 Jun, 2011 1 commit
-
-
Éric Araujo authored
The two public functions in database default to sys.path if the given *paths* argument is None; the private functions don’t have default values for their arguments anymore, which is fine as the public functions that call them pass their arguments down. Likewise in install, the functions will pass down their *paths* arguments down to database functions. A one-line unneeded function in install was removed instead of being changed, and the few remaining tests that used brute-force restoration of sys.path have been cleaned up to use sys.path.remove.
-
- 30 May, 2011 2 commits
-
-
Tarek Ziade authored
-
Tarek Ziade authored
-
- 21 May, 2011 1 commit
-
-
Tarek Ziade authored
-
- 19 May, 2011 3 commits
-
-
Ezio Melotti authored
Skip tests that require zlib in the packaging tests. Also add a requires_zlib decorator to test.support.
-
Victor Stinner authored
We don't need to open the files in text mode just to create them (or update their modification time).
-
Tarek Ziade authored
-