| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
In addition, update the create module to use logging.
|
| |
|
|
|
|
|
|
|
|
|
| |
- Use os.makedirs (I had forgotten about it!)
- Let TempdirManager.write_file call os.path.join for us
- Let TempdirManager.tearDown go back to the previous working directory
for us
- Use a skip instead of hiding a method with an underscore
- Reset the finalized attribute of command objects before calling
ensure_finalized a second time, so that it?s not a no-op
- Address pyflakes warnings
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
| |
The distutils2.install.remove function (a.k.a. the uninstall feature)
takes a path argument to allow client code to use custom directories
instead of sys.path. The test used to give self.root_dir as path, which
corresponds to a prefix option, but prefix is not on sys.path, it?s only
the base directory used to compute the stdlib and site-packages
directory paths. The test now gives a valid site-packages path to the
function.
|
| |
|
|
|
|
|
| |
install_lib may be the name of a module, a command or an option, so I
find it clearer to use site_packages to refer to a string object
containing the path of the site-packages directory created in a
temporary directory during tests.
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|