index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
packaging
Commit message (
Expand
)
Author
Age
Files
Lines
*
fixed the test_uninstall patch
Tarek Ziade
2011-05-30
1
-2/+2
*
displaying the faulty project name is a good idea
Tarek Ziade
2011-05-30
1
-6/+8
*
removed spurious output
Tarek Ziade
2011-05-30
1
-1/+7
*
Cleaned up the installer output behavior.
Tarek Ziade
2011-05-30
6
-67/+86
*
cleanup packaging.database
Tarek Ziade
2011-05-30
2
-7/+4
*
a resource module for 2 functions is overkill. database is the right place fo...
Tarek Ziade
2011-05-30
4
-195/+171
*
Port r86353 to packaging (#10359: “;” after function definition is invali...
Éric Araujo
2011-05-29
1
-1/+1
*
Merge touch-ups and fixes for #9831 (+port fix to packaging) and #9223 from 3.2
Éric Araujo
2011-05-28
1
-3/+6
*
Issue #12180: Fixed a few remaining errors in test_packaging when no threading.
Tarek Ziade
2011-05-25
4
-7/+36
*
Issue #12167: packaging.tests.test_dist unloads the temporary module
Victor Stinner
2011-05-24
1
-0/+2
*
Issue #12167: packaging.tests.support, LoggingCatcher restores correctly the
Victor Stinner
2011-05-24
1
-1/+2
*
Issue #12125: fixed the failures under Solaris due to improper test cleanup.
Tarek Ziade
2011-05-23
3
-1/+14
*
fixed the cwd cleanup in packaging test_util
Tarek Ziade
2011-05-23
1
-1/+8
*
make sure the cwd is restored on tearDown
Tarek Ziade
2011-05-23
1
-0/+5
*
make sure build_dir.build_lib is synced to the faked build location
Tarek Ziade
2011-05-23
1
-0/+4
*
skip more tests in packaging if threading is not supported
Tarek Ziade
2011-05-22
3
-3/+20
*
not using a server name anymore as the 127.0.0.1 <> localhost symmetry is not...
Tarek Ziade
2011-05-22
1
-3/+1
*
Issue 12132 - skip the test_buil_ext test if the xx module is not found
Tarek Ziade
2011-05-22
1
-1/+5
*
Issue 10126 - backported distutils fix for the enable-share mode into packaging
Tarek Ziade
2011-05-22
3
-7/+30
*
added the Content-Length header. that fixes the weird packaging.pypi.errors.H...
Tarek Ziade
2011-05-21
1
-0/+1
*
deactivating one test under win32 for now
Tarek Ziade
2011-05-21
1
-0/+1
*
make sure the crawler can browse file-based indexes under win32
Tarek Ziade
2011-05-21
2
-7/+25
*
fixed the export symbols for the win32 linker
Tarek Ziade
2011-05-21
2
-2/+2
*
skip the pypi upload doc test via https, if ssl is not available
Tarek Ziade
2011-05-21
1
-0/+5
*
use the same line terminator everywhere
Tarek Ziade
2011-05-21
3
-6/+11
*
fixed the move api in packaging.install, and closing the handle left by mkste...
Tarek Ziade
2011-05-21
2
-10/+12
*
we want to generate /-separated paths setup.cfg files even under win32
Tarek Ziade
2011-05-21
1
-7/+13
*
fixed the way the cfg file markers values are split under win32
Tarek Ziade
2011-05-21
2
-2/+3
*
fixed the separator issues in packaging/resources+config
Tarek Ziade
2011-05-21
3
-3/+8
*
fixed a few mocking/cleanup issues in packaging test_util for win32
Tarek Ziade
2011-05-21
2
-15/+20
*
Close #12114: fix a potential deadlock in packaging.util._find_exe_version()
Victor Stinner
2011-05-21
2
-1/+4
*
Fix another ResourceWarning in test_packaging.
Ezio Melotti
2011-05-20
2
-1/+3
*
Fix more ResourceWarnings in test_packaging moving the join() and server_clos...
Ezio Melotti
2011-05-20
1
-6/+3
*
Fix several ResourceWarnings in test_packaging.
Ezio Melotti
2011-05-20
1
-1/+6
*
packaging.tests.test_command_install_data: restore correctly sysconfig._SCHEMES
Victor Stinner
2011-05-19
1
-4/+11
*
fix packaging tests on Windows: use os.path.join() in glob patterns
Victor Stinner
2011-05-19
2
-14/+16
*
packaging: fix the constructor of FakePopen
Victor Stinner
2011-05-19
1
-2/+8
*
fix packaging.compiler.msvc9compiler: os.environ['path'] value is also a str
Victor Stinner
2011-05-19
1
-2/+1
*
fix packaging.compiler.msvc9compiler: os.environ values are str, not bytes
Victor Stinner
2011-05-19
1
-2/+2
*
Issue #12112: fix the encoding of setup.py in the packaging module
Victor Stinner
2011-05-19
2
-4/+7
*
Refactor a few tests to use the new requires_zlib decorator.
Ezio Melotti
2011-05-19
1
-8/+2
*
Skip tests that require zlib in the packaging tests. Also add a requires_zli...
Ezio Melotti
2011-05-19
6
-13/+33
*
Issue #12120, Issue #12119: tests were missing a sys.dont_write_bytecode check
Tarek Ziade
2011-05-19
1
-1/+2
*
removed unused method in packaging.create
Tarek Ziade
2011-05-19
1
-13/+0
*
Issue #12112: packaging reads/writes metadata using UTF-8
Victor Stinner
2011-05-19
3
-9/+9
*
Issue #12112: packaging reads and writes setup.cfg using UTF-8
Victor Stinner
2011-05-19
5
-11/+11
*
package: replace open(fn, 'w').close() by open(fn, 'wb').close()
Victor Stinner
2011-05-19
5
-6/+6
*
packaging: use with open() instead of try/finally: close
Victor Stinner
2011-05-19
11
-70/+42
*
fixed the path splitting
Tarek Ziade
2011-05-19
1
-1/+2
*
Issue #12115: skipping all tests that need threading under a threadless envir...
Tarek Ziade
2011-05-19
4
-4/+35
[next]