summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
...
| * Fix distutils test_install for shared CPython buildsÉric Araujo2011-08-211-0/+1
| |
| * Factor out the build_ext fixup for shared Python builds.Éric Araujo2011-08-212-25/+33
| | | | | | | | I need this to fix the failing test_install.
* | Merge 3.2Éric Araujo2011-08-211-1/+2
|\ \ | |/
| * Add missing name in shutilÉric Araujo2011-08-211-1/+1
| |
* | Merge 3.2Éric Araujo2011-08-211-1/+1
|\ \ | |/
| * Add missing closing paren in docstring (thanks Ezio)Éric Araujo2011-08-211-1/+1
| |
* | Issue #12783: Fix test_posix failures on FreeBSD buildbots, due toCharles-François Natali2011-08-211-2/+8
| | | | | | | | | | sched_setparam() returning EINVAL for processes with SCHED_OTHER scheduling policy.
* | Issue #12326: refactor usage of sys.platformVictor Stinner2011-08-207-17/+10
| | | | | | | | | | | | | | | | * Use str.startswith(tuple): I didn't know this Python feature, Python rocks! * Replace sometimes sys.platform.startswith('linux') with sys.platform == 'linux' * sys.platform doesn't contain the major version on Cygwin on Mac OS X (it's just 'cygwin' and 'darwin')
* | #5301: merge with 3.2Sandro Tosi2011-08-201-0/+1
|\ \ | |/
| * #5301: add image/vnd.microsoft.icon (.ico) MIME typeSandro Tosi2011-08-201-0/+1
| |
* | Close #12326: sys.platform is now always 'linux' on LinuxVictor Stinner2011-08-2010-1083/+0
| | | | | | | | | | | | On Linux, sys.platform doesn't contain the major version anymore. It is now always 'linux', instead of 'linux2' or 'linux3' depending on the Linux version used to build Python.
* | Merge 3.2Éric Araujo2011-08-201-3/+3
|\ \ | |/
| * Branch mergeÉric Araujo2011-08-203-33/+90
| |\
| | * Dedent example in docstringÉric Araujo2011-08-201-3/+3
| | |
* | | Branch mergeÉric Araujo2011-08-209-86/+224
|\ \ \
| * | | Fix sdist test on Windows (#12678). Patch by Jeremy Kloth.Éric Araujo2011-08-201-0/+1
| | | |
| * | | Add a simple test for the packaging RECORD file.Éric Araujo2011-08-201-1/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The existing test_record is not easily extendable to add script files or extension modules: it collects all files from fake_dists and generates a RECORD file at runtime. I felt more comfortable adding a new test written from scratch more self-contained (just one project with well-defined files) and more stupid (the checksums and sizes are computed once and hard-coded).
| * | | Minor cleanupÉric Araujo2011-08-202-12/+7
| | | | | | | | | | | | | | | | | | | | | | | | - Rename an attribute and create it in initialize_options instead of finalize_options to match the other install_* classes - Remove unnecessary method call in tests
| * | | Add a test for extension modules in the old-style record fileÉric Araujo2011-08-201-1/+24
| | | |
| * | | Rework test_old_record a bit to make the test more exactÉric Araujo2011-08-201-13/+13
| | | | | | | | | | | | | | | | (i.e. to check the files found are what we expect)
| * | | Refactor the copying of xxmodule.c in packaging tests (#12141).Éric Araujo2011-08-202-27/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I need to copy this file in another test too, so I moved the support code to distutils.tests.support and improved it to use proper skip machinery instead of custom print/return/test suite fiddling. Contrary to my similar change in distutils tests, I did not add support for finding xxmodule.c when running a test from the tests directory, because in that case my compiler didn’t find Python.h, so I figured it’s better to skip than to fail.
| * | | Merge 3.2Éric Araujo2011-08-203-33/+90
| |\ \ \ | | | |/ | | |/|
| | * | Add a test for extension modules in the distutils record file.Éric Araujo2011-08-201-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | I made a note a month ago that install --record wrote incorrect entries for extension modules (I think the problem was that the first character of the file was stripped), so I’m now adding a test to try to reproduce that in the current versions.
| | * | Rework test_record a bit to make the test more exactÉric Araujo2011-08-201-10/+12
| | | |
| | * | Refactor the copying of xxmodule.c in distutils tests (#12141).Éric Araujo2011-08-202-24/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I need to copy this file in another test too, so I moved the support code to distutils.tests.support and improved it: - don’t skip when run from the Lib/distutils/tests directory - use proper skip machinery instead of custom print/return/test suite fiddling.
* | | | Issue #12213: Fix a buffering bug with interleaved reads and writes thatAntoine Pitrou2011-08-201-2/+42
|\ \ \ \ | | |_|/ | |/| | | | | | could appear on BufferedRandom streams.
| * | | Issue #12213: Fix a buffering bug with interleaved reads and writes thatAntoine Pitrou2011-08-201-2/+42
| | | | | | | | | | | | | | | | could appear on BufferedRandom streams.
* | | | Issue #12791: Break reference cycles early when a generator exits with an ↵Antoine Pitrou2011-08-201-0/+62
|\ \ \ \ | |/ / / | | | | | | | | exception.
| * | | Issue #12791: Break reference cycles early when a generator exits with an ↵Antoine Pitrou2011-08-201-0/+62
| | | | | | | | | | | | | | | | exception.
* | | | Fix typo in test namesAntoine Pitrou2011-08-191-4/+4
|\ \ \ \ | |/ / /
| * | | Fix typo in test namesAntoine Pitrou2011-08-191-4/+4
| | |/ | |/|
| * | Branch mergeÉric Araujo2011-08-191-1/+1
| |\ \
* | | | Issue #12778: Reduce memory consumption when JSON-encoding a large container ↵Antoine Pitrou2011-08-191-1/+18
| |_|/ |/| | | | | | | | of many small objects.
* | | Restore $HOME after test has run (should fix #12765)Éric Araujo2011-08-191-0/+3
| | |
* | | Branch mergeÉric Araujo2011-08-194-28/+21
|\ \ \
| * \ \ Merge 3.2Éric Araujo2011-08-191-1/+1
| |\ \ \ | | | |/ | | |/|
| | * | Make logging call lazyÉric Araujo2011-08-191-1/+1
| | | |
| * | | Improve “pysetup create” help messages.Éric Araujo2011-08-181-18/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The example version numbers were invalid and “package” was misused. I also made lines shorter, replaced “e-mail” with “email” (more common in the stdlib and I believe in English generally) and tweaked a few other things.
| * | | Fix typoÉric Araujo2011-08-181-1/+1
| | | |
| * | | Remove class that was only useful with Sphinx autodocÉric Araujo2011-08-181-8/+0
| | | |
* | | | Issue #12780: Merged fix from 3.2.Vinay Sajip2011-08-191-2/+0
|\ \ \ \ | | |_|/ | |/| |
| * | | Issue #12780: Removed checks in logging for .pyc/.pyo in __file__.Vinay Sajip2011-08-191-2/+0
| | | |
* | | | Merge: Fix ResourceWarnings in test_subprocess.Nadeem Vawda2011-08-191-0/+4
|\ \ \ \ | |/ / /
| * | | Fix ResourceWarnings in test_subprocess.Nadeem Vawda2011-08-191-0/+4
| | | |
* | | | Issue #12650: fix failures on some buildbots, when a subprocess takes a longCharles-François Natali2011-08-181-12/+0
|\ \ \ \ | |/ / / | | | | | | | | time to spawn.
| * | | Issue #12650: fix failures on some buildbots, when a subprocess takes a longCharles-François Natali2011-08-181-12/+0
| | | | | | | | | | | | | | | | time to spawn.
* | | | Issue #12650: Fix a race condition where a subprocess.Popen could leakCharles-François Natali2011-08-182-1/+64
|\ \ \ \ | |/ / / | | / / | |/ / |/| | resources (FD/zombie) when killed at the wrong time.
| * | Issue #12650: Fix a race condition where a subprocess.Popen could leakCharles-François Natali2011-08-182-1/+64
| |/ | | | | | | resources (FD/zombie) when killed at the wrong time.
* | Issue #12326: don't test the major version of sys.platformVictor Stinner2011-08-177-49/+46
| | | | | | | | | | Use startswith, instead of ==, when testing sys.platform to support new platforms like Linux 3 or OpenBSD 5.
* | make __doc__ mutable on heaptypes (closes #12773)Benjamin Peterson2011-08-171-0/+13
| |