summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove webbrowser doc reference to the previously removed internet-config ↵Ned Deily2012-04-181-7/+2
| | | | option.
* SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno ↵Benjamin Peterson2012-04-183-2/+17
| | | | (closes #14612)
* Clean-up the SQLite introduction.Raymond Hettinger2012-04-171-26/+26
|
* Clarify that a new connection needs to be made after the close.Raymond Hettinger2012-04-171-0/+6
|
* Issue #5113: Fix a test_posix failure on HP-UX, where non-root users canCharles-François Natali2012-04-171-3/+9
| | | | chown() to root under certain circumstances.
* Tweaked format of cookbook example.Vinay Sajip2012-04-161-5/+6
|
* Added cookbook example for log insertion.Vinay Sajip2012-04-161-0/+44
|
* Issue #14452: remove BOM insertion code.Vinay Sajip2012-04-162-2/+2
|
* Issue #14589: Update certificate chain for sha256.tbs-internet.com, fixing a ↵Antoine Pitrou2012-04-162-112/+117
| | | | test failure in test_ssl.
* Remove accidentally-committed debugging code.Mark Dickinson2012-04-151-3/+0
|
* Issue 13496: Fix bisect.bisect overflow bug for large collections.Mark Dickinson2012-04-153-2/+21
|
* Issue #13889: On MSVC builds, set FPU control word at runtime for all string ↵Mark Dickinson2012-04-152-0/+28
| | | | <-> float conversions. Patch by Samuel Iseli and Stefan Krah.
* #14399: corrected news itemR David Murray2012-04-131-3/+3
|
* move outside WITH_THREAD conditionalBenjamin Peterson2012-04-131-2/+2
|
* take linkage def outside of WITH_THREAD conditional (closes #14569)Benjamin Peterson2012-04-131-4/+3
|
* merge headsAmaury Forgeot d'Arc2012-04-133-0/+11
|\
| * Issue14559: Attempt to fix compilation with previous versions of the ↵Amaury Forgeot d'Arc2012-04-133-0/+11
| | | | | | | | | | | | | | | | | | | | | | Microsoft Compiler. Update the various project files with Python/random.c which was recently added. On my old Windows XP computer: - VS8.0 works reasonably. - I don't have the VS7.1 compiler. - VC6 does not compile, at least with the SDK shipped with the compiler (12 years ago!); newer SDKs might work.
* | #14399: zipfile now correctly handles comments added to empty zipfiles.R David Murray2012-04-124-12/+42
|/ | | | Patch by Serhiy Storchaka.
* Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban.Charles-François Natali2012-04-123-0/+7
|
* #14552: remove redundant wording in 'test' docs.R David Murray2012-04-111-4/+4
| | | | Original patch by Tshepang Lekhonkhobe.
* merge headsBenjamin Peterson2012-04-116-83/+110
|\
| * Issue 10484 - Incorporate improvements to CGI module - Suggested by Glenn ↵Senthil Kumaran2012-04-122-61/+64
| | | | | | | | Linderman. Refactor code and tests
| * Fix closes Issue14258 - Clarify the re.LOCALE and re.UNICODE flags for \S ↵Senthil Kumaran2012-04-111-12/+12
| | | | | | | | class
| * merge headsSenthil Kumaran2012-04-112-2/+29
| |\
| | * Merged upstream change.Vinay Sajip2012-04-100-0/+0
| | |\
| | * | Updated logging reference and HOWTO.Vinay Sajip2012-04-102-2/+29
| | | |
| * | | fix the incorrect changes made for PATH_INFO value - Issue10484Senthil Kumaran2012-04-112-11/+7
| | |/ | |/|
| * | null mergeBarry Warsaw2012-04-100-0/+0
| |\ \ | | |/ | |/|
| | * Post release twiddle.Barry Warsaw2012-04-102-1/+13
| | |
| * | Mostly null merge from 2.6; tag addedBarry Warsaw2012-04-101-0/+1
| |\ \ | | |/
| | * Added tag v2.6.8 for changeset c9910fd022fcBarry Warsaw2012-04-101-0/+1
| | |
| | * Bump to 2.6.8v2.6.8Barry Warsaw2012-04-106-8/+16
| | |
| | * update docsBarry Warsaw2012-04-101-1/+1
| | |
* | | merge headsBenjamin Peterson2012-04-111-1/+1
|\ \ \ | |/ /
| * | minor .rst fixSenthil Kumaran2012-04-101-1/+1
| | |
* | | we live in a post 2.7.3 worldBenjamin Peterson2012-04-111-1/+1
|/ /
* | merge 2.7.3 release branchBenjamin Peterson2012-04-095-6/+7
|\ \
| * | Added tag v2.7.3 for changeset 70274d53c1ddBenjamin Peterson2012-04-091-0/+1
| | |
| * | bump to 2.7.3 finalv2.7.3Benjamin Peterson2012-04-095-7/+7
| | |
* | | merge 2.7 release branchBenjamin Peterson2012-04-092-0/+4
|\ \ \ | |/ /
| * | fix build without Py_DEBUG and DNDEBUG (closes #14509)Benjamin Peterson2012-04-092-0/+4
| | |
| * | move news thing aroundBenjamin Peterson2012-03-221-3/+11
| | |
| * | Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884).Éric Araujo2012-02-254-54/+98
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These regex changes fix a number of issues for distutils on Windows: - #6884: impossible to include a file starting with 'build' - #9691 and #14004: sdist includes too many files - #13193: test_filelist failures This commit replaces the incorrect changes done in 557a973709de, c566a3447ba1 and 3925081a7ca0 to fix #13193; we were too eager to fix the test failures and I did not study the code enough before greenlighting patches. This time we have unit tests from the problems reported by users to be sure we have the right fix. Thanks to Nadeem Vawda for his help.
* | | Fix the patch for issue #7978: select() raises select.error before 3.3, not ↵Antoine Pitrou2012-04-092-3/+3
| | | | | | | | | | | | OSError.
* | | Fix flakiness in test_socketserverAntoine Pitrou2012-04-091-1/+4
| | |
* | | Issue #7978: socketserver now restarts the select() call when EINTR is returned.Antoine Pitrou2012-04-094-2/+52
| | | | | | | | | | | | | | | This avoids crashing the server loop when a signal is received. Patch by Jerzy Kozera.
* | | Make test_mailbox runnable via python -m unittest.R David Murray2012-04-081-17/+17
| | |
* | | Issue #14502: release() and unlocked lock generates a ThreadErrorSandro Tosi2012-04-051-1/+1
| | |
* | | Issue #14505: Fix file descriptor leak when deallocating file objects ↵Antoine Pitrou2012-04-052-1/+5
| | | | | | | | | | | | created with PyFile_FromString().
* | | Closes #14489: correct link target.Georg Brandl2012-04-051-1/+1
| | |