summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Branch mergeÉric Araujo2012-02-057-47/+99
|\
| * Stop converting package_data to extra_files in pysetup create (#13712).Éric Araujo2012-02-053-28/+35
| | | | | | | | | | | | | | | | pysetup create, the setup.cfg creation helper, used to convert package_data (from an existing setup.py) into extra_files, the replacement for MANIFEST.in, but these files are only present in sdists, not installed: they don’t have the same use case at all, so converting one into the other did not work.
| * Allow multiple values for package_data in setup.cfg (#11805).Éric Araujo2012-02-043-14/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | Even though the resources system obsoletes data_files and package_data (see bug discussion), package_data still exists to allow compatibility with distutils and thus an easier transition. In setup.py, the values are lists of glob patterns, so the setup.cfg syntax needed a way to express multiple values too. Doc for this option will be added later as part of the big packaging doc patches. For now, the test serves as example. Reported by Erik Bray.
| * Improve one packaging test, remove a setuptoolism in anotherÉric Araujo2012-02-042-5/+14
| |
* | merge with 3.2Georg Brandl2012-02-051-4/+4
|\ \
| * | Closes #13944: fix capitalization of class name.Georg Brandl2012-02-051-4/+4
| | |
* | | Issue #12142: Fixed reference cycle when importing ctypesMeador Inge2012-02-051-1/+1
|\ \ \ | |/ /
| * | Issue #12142: Fixed reference cycle when importing ctypesMeador Inge2012-02-051-1/+1
| | |
* | | _Py_Identifier are always ASCII stringsVictor Stinner2012-02-051-3/+2
| | |
* | | Null merge.Nadeem Vawda2012-02-040-0/+0
|\ \ \ | |/ /
| * | Issue #1625: Document BZ2File's lack of support for multi-stream inputs.Nadeem Vawda2012-02-041-0/+9
| | |
* | | Issue #13933: mergeNed Deily2012-02-042-2/+5
|\ \ \ | |/ /
| * | Issue #13933: IDLE auto-complete did not work with some importedNed Deily2012-02-042-2/+5
| | | | | | | | | | | | module, like hashlib. (Patch by Roger Serwy)
* | | Fix failing test on big-endian machines (issue #13806).Antoine Pitrou2012-02-041-8/+23
|\ \ \ | |/ /
| * | Fix failing test on big-endian machines (issue #13806).Antoine Pitrou2012-02-041-8/+23
| | |
* | | merge 3.2Benjamin Peterson2012-02-041-8/+0
|\ \ \ | |/ /
| * | threading primitives now have timeoutsBenjamin Peterson2012-02-041-8/+0
| | |
| * | Issue #8184: Fix a potential file descriptor leak when aCharles-François Natali2012-02-041-4/+8
| | | | | | | | | | | | multiprocessing.Connection socket can't be bound.
* | | Issue #8184: Fix a potential file descriptor leak when aCharles-François Natali2012-02-041-4/+8
| | | | | | | | | | | | multiprocessing.Connection socket can't be bound.
* | | Document that some of LZMAFile.__init__()'s args are keyword-only.Nadeem Vawda2012-02-041-1/+1
| | |
* | | Make BZ2File.__init__()'s fileobj argument keyword-only.Nadeem Vawda2012-02-042-2/+2
| | |
* | | Update docstring for BZ2File.__init__().Nadeem Vawda2012-02-041-3/+7
| |/ |/|
* | Small grammar fixes by Mark Summerfield.Georg Brandl2012-02-041-10/+10
| |
* | merge 3.2Benjamin Peterson2012-02-041-5/+10
|\ \ | |/
| * put returns on their own linesBenjamin Peterson2012-02-041-5/+10
| |
* | merge 3.2Benjamin Peterson2012-02-041-1/+0
|\ \ | |/
| * remove unused importBenjamin Peterson2012-02-041-1/+0
| |
* | Issue #13861: mergeNed Deily2012-02-031-2/+2
|\ \ | |/
| * Issue #13861: Prevent test_apropos* test case failures in test_pydoc.Ned Deily2012-02-031-2/+2
| |
* | MergeBrett Cannon2012-02-038-6/+141
|\ \
| * | Issue #13777: Add PF_SYSTEM sockets on OS X.Martin v. Löwis2012-02-038-6/+141
| | | | | | | | | | | | Patch by Michael Goderbauer.
* | | Check for errors in creating sub-interpreters when testing the C API.Brett Cannon2012-02-031-0/+8
|/ /
* | Issue #13901: Prevent test_packaging failures on OS X with --enable-shared.Ned Deily2012-02-031-3/+8
| |
* | mergeNed Deily2012-02-032-2/+10
|\ \ | |/
| * Issue #13901: Prevent test_distutils failures on OS X with --enable-shared.Ned Deily2012-02-032-2/+10
| |
* | Fix small grammatical inconsistency.Georg Brandl2012-02-021-1/+2
| |
* | Null merge.Charles-François Natali2012-02-020-0/+0
|\ \
| * \ Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fixCharles-François Natali2012-02-022-1/+26
| |\ \ | | | | | | | | | | | | | | | | a random deadlock when fork() is called in a multithreaded process in debug mode, and make PyOS_AfterFork() more robust.
* | \ \ Merge.Charles-François Natali2012-02-022-1/+26
|\ \ \ \ | | |_|/ | |/| |
| * | | Merge.Charles-François Natali2012-02-022-1/+26
| |\ \ \ | | | |/ | | |/|
| | * | Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fixCharles-François Natali2012-02-022-1/+26
| | | | | | | | | | | | | | | | | | | | a random deadlock when fork() is called in a multithreaded process in debug mode, and make PyOS_AfterFork() more robust.
* | | | Merge branch 3.2Petri Lehtinen2012-02-024-3/+10
|\ \ \ \ | |/ / / | | | | | | | | Closes #13402.
| * | | Document absoluteness of sys.executablePetri Lehtinen2012-02-024-3/+10
| |/ / | | | | | | | | | Closes #13402.
* | | Make sqlite3 tests editable with EmacsPetri Lehtinen2012-02-027-7/+7
| |/ |/| | | | | | | Change the coding declaration from ISO-8859-1 to iso-8859-1. Emacs doesn't understand the former.
* | Issue #1813: merge changeset that reverts a glibc workaround for theStefan Krah2012-02-021-3/+0
|\ \ | |/ | | | | Fedora buildbot.
| * Issue #1813: Revert workaround for a glibc bug on the Fedora buildbot.Stefan Krah2012-02-021-3/+0
| |
| * merge. again.Brian Curtin2012-02-012-3/+3
| |\
* | \ merge updatesBrian Curtin2012-02-016-9/+59
|\ \ \
| * \ \ Merge branch 3.2Petri Lehtinen2012-02-015-9/+54
| |\ \ \ | | |/ / | | | | | | | | Closes #13676.
| | * | sqlite3: Handle strings with embedded zeros correctlyPetri Lehtinen2012-02-015-9/+54
| | | | | | | | | | | | | | | | Closes #13676.