summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Issue #8184: Fix a potential file descriptor leak when aCharles-François Natali2012-02-041-4/+8
| | | | multiprocessing.Connection socket can't be bound.
* Make BZ2File.__init__()'s fileobj argument keyword-only.Nadeem Vawda2012-02-041-1/+1
|
* Update docstring for BZ2File.__init__().Nadeem Vawda2012-02-041-3/+7
|
* 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
| |
* | Issue #13901: Prevent test_packaging failures on OS X with --enable-shared.Ned Deily2012-02-031-3/+8
| |
* | mergeNed Deily2012-02-031-2/+8
|\ \ | |/
| * Issue #13901: Prevent test_distutils failures on OS X with --enable-shared.Ned Deily2012-02-031-2/+8
| |
* | Merge.Charles-François Natali2012-02-021-0/+23
|\ \ | |/
| * Merge.Charles-François Natali2012-02-021-0/+23
| |\
| | * Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fixCharles-François Natali2012-02-021-0/+23
| | | | | | | | | | | | | | | 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-021-0/+3
|\ \ \ | |/ / | | | | | | Closes #13402.
| * | Document absoluteness of sys.executablePetri Lehtinen2012-02-021-0/+3
| |/ | | | | | | 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-011-1/+1
| |\
* | \ merge updatesBrian Curtin2012-02-012-1/+43
|\ \ \
| * \ \ Merge branch 3.2Petri Lehtinen2012-02-012-1/+43
| |\ \ \ | | |/ / | | | | | | | | Closes #13676.
| | * | sqlite3: Handle strings with embedded zeros correctlyPetri Lehtinen2012-02-012-1/+43
| | | | | | | | | | | | | | | | Closes #13676.
* | | | merge from 3.2Brian Curtin2012-02-011-1/+1
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | Add a hint that CSD == Service Pack.Brian Curtin2012-02-011-1/+1
| |/ | | | | | | | | | | | | | | | | | | | | People searcing for the way to get a "service pack" will never find that we provide it here, and people that find this function won't know what CSD is until they run the function. On top of this, they won't know what the value means unless they really have a service pack installed. CSD, or Customer Service Diagnostics, is apparently no longer used, and was rarely used term at that. Most references to it online are from universities making Windows 2000 and XP service packs available to students.
* | Fix a minor output typo as found by Terry Reedy.Brett Cannon2012-01-311-1/+1
| |
* | MergeBrett Cannon2012-01-312-9/+15
|\ \
| * \ Merge with 3.2 whitespaceTerry Jan Reedy2012-01-311-1/+1
| |\ \ | | |/
| | * whitespaceTerry Jan Reedy2012-01-311-1/+1
| | |
| * | Merge 3.2Terry Jan Reedy2012-01-312-9/+15
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | - Issue #13506: Add '' to path for IDLE Shell when started and restarted with Restart Shell. Original patches by Marco Scataglini and Roger Serwy. Merge 3.2 #13506 Add '' to path for interactive interpreter by adding with_cwd parameter to PyShell.PyShell.transfer_path() and changing elsewhere as needed. Original patches by Marco Scataglini and Roger Serwy.
| | * #13506 Add '' to path for interactive interpreter by adding with_cwd parameterTerry Jan Reedy2012-01-312-9/+15
| | | | | | | | | | | | | | | to PyShell.PyShell.transfer_path() and changing elsewhere as needed. Original patches by Marco Scataglini and Roger Serwy.
* | | Let importlib.test.benchmark take a specific benchmark name to run.Brett Cannon2012-01-311-3/+18
| | |
* | | Allow for the specification of a file to dump importlib benchmarkBrett Cannon2012-01-311-10/+36
|/ / | | | | | | | | | | results to (and to compare against previous runs). * * * Move importlib.test.benchmark to argparse.
* | Issue #8828: Add new function os.replace(), for cross-platform renaming with ↵Antoine Pitrou2012-01-301-0/+12
| | | | | | | | overwriting.
* | Issue #13890: Also fix for extension module tests for case-insensitivity.Brett Cannon2012-01-301-0/+6
| |
* | Issue #13890: Fix importlib case-sensitivity tests to not run on Windows.Brett Cannon2012-01-301-0/+6
| | | | | | | | | | | | | | Thanks to os.environ under Windows only updating the dict and not the environment itself (as exposed by nt.environ), tests using PYTHONCASEOK always fail. Now the tests are skipped when os.environ does not do what is expected.
* | Issue #13847: Fix test_time, time.gmtime() doesn't use localtime()Victor Stinner2012-01-291-1/+0
| | | | | | | | On Windows, localtime(-1) fails, but not gmtime(1).
* | Issue #13848: open() and the FileIO constructor now check for NUL characters ↵Antoine Pitrou2012-01-292-0/+10
|\ \ | |/ | | | | | | | | in the file name. Patch by Hynek Schlawack.
| * Issue #13848: open() and the FileIO constructor now check for NUL characters ↵Antoine Pitrou2012-01-292-0/+10
| | | | | | | | | | | | in the file name. Patch by Hynek Schlawack.
* | merge 3.2Benjamin Peterson2012-01-291-285/+0
|\ \ | |/
| * remove tests from really old regex moduleBenjamin Peterson2012-01-291-285/+0
| |
* | Issue #13806: The size check in audioop decompression functions was too ↵Antoine Pitrou2012-01-281-6/+19
|\ \ | |/ | | | | | | | | strict and could reject valid compressed data. Patch by Oleg Plakhotnyuk.
| * Issue #13806: The size check in audioop decompression functions was too ↵Antoine Pitrou2012-01-281-6/+19
| | | | | | | | | | | | strict and could reject valid compressed data. Patch by Oleg Plakhotnyuk.
* | Issue #13895: fix test_ssl hanging under UbuntuAntoine Pitrou2012-01-281-25/+25
|\ \ | |/
| * Issue #13895: fix test_ssl hanging under UbuntuAntoine Pitrou2012-01-281-20/+20
| |
* | Fix typo in comment.Nadeem Vawda2012-01-281-1/+1
| |
* | Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. PatchCharles-François Natali2012-01-281-0/+1
|\ \ | |/ | | | | by Matt Joiner.
| * Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. PatchCharles-François Natali2012-01-281-0/+1
| | | | | | | | by Matt Joiner.
* | Fix intermittent test_ssl failure.Antoine Pitrou2012-01-271-0/+1
|\ \ | |/
| * Fix intermittent test_ssl failure.Antoine Pitrou2012-01-271-0/+1
| |
* | Issue #13812: When a multiprocessing Process child raises an exception, ↵Antoine Pitrou2012-01-273-5/+27
|\ \ | |/ | | | | flush stderr after printing the exception traceback.