summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update to test Unicode 5.1.Martin v. Löwis2008-09-101-1/+1
|
* - Issue #3629: Fix sre "bytecode" validator for an end case.Guido van Rossum2008-09-103-3/+10
| | | | Reviewed by Amaury.
* Issue #3811: The Unicode database was updated to 5.1.Martin v. Löwis2008-09-109-15272/+18540
| | | | Reviewed by Fredrik Lundh and Marc-Andre Lemburg.
* use the latest pygments versionBenjamin Peterson2008-09-091-1/+1
|
* Fix #3634 invalid return value from _weakref.ref(Exception).__init__Benjamin Peterson2008-09-093-1/+12
| | | | Reviewers: Amaury, Antoine, Benjamin
* #3472: update Mac-bundled Python version info.Georg Brandl2008-09-091-5/+8
|
* Fix varname in docstring. #3822.Georg Brandl2008-09-091-2/+2
|
* Issue #3809: Fixed spurious 'test.blah' file left behind by test_logging.Vinay Sajip2008-09-092-3/+5
|
* #3777: long(4.2) returned an int, and broke backward compatibility.Amaury Forgeot d'Arc2008-09-093-1/+17
| | | | | | | the __long__ slot is allowed to return either int or long, but the behaviour of float objects should not change between 2.5 and 2.6. Reviewed by Benjamin Peterson
* warnings.catch_warnings() now returns a list or None instead of the customBrett Cannon2008-09-0924-253/+268
| | | | | | | | WarningsRecorder object. This makes the API simpler to use as no special object must be learned. Closes issue 3781. Review by Benjamin Peterson.
* Issue #3806: LockTests in test_imp should be skipped when thread is not ↵Hirokazu Yamamoto2008-09-081-4/+10
| | | | | | available. Reviewed by Benjamin Peterson.
* Issue #3804: Added test for Issue #2222.Hirokazu Yamamoto2008-09-081-0/+7
| | | | Reviewed by Benjamin Peterson.
* incorporate fixes from issue 3162; SSL doc patchBill Janssen2008-09-083-7/+163
|
* Add UUIDs for upcoming releasesMartin v. Löwis2008-09-081-0/+4
|
* Added xrefs to each other.Mark Summerfield2008-09-082-2/+7
|
* Issue #2271: Set SecureCustomProperties so that installation will properlyMartin v. Löwis2008-09-082-0/+5
| | | | use the TARGETDIR even for unprivileged users.
* Allow passing the MSI file name to merge.py.Martin v. Löwis2008-09-082-3/+8
|
* Issue 3801. Fixing a dumb error in the deprecated parse_qsl()Facundo Batista2008-09-082-1/+12
| | | | function. Tests added.
* reran autoconfGregory P. Smith2008-09-071-2/+2
|
* bugfix to r66283 (see issue #1204).Gregory P. Smith2008-09-071-1/+1
|
* Add a new howto about Python and the web, by Marek Kubica.Georg Brandl2008-09-072-0/+698
|
* reran autoconf for r66283's checkinGregory P. Smith2008-09-071-96/+31
|
* - Issue #1204: The configure script now tests for additional librariesGregory P. Smith2008-09-073-10/+33
| | | | | | that may be required when linking against readline. This fixes issues with x86_64 builds on some platforms (at least a few Linux flavors as well as OpenBSD/amd64).
* undoing change that broke trunk. Need to find a better solution to this.Josiah Carlson2008-09-071-1/+1
|
* This fixes a small inconsistency between trunk and 3.0, closing bug 3764.Josiah Carlson2008-09-071-1/+1
|
* fix missing moduleBenjamin Peterson2008-09-061-1/+1
|
* Backport relevant part of r66274 (in issue #874900).Antoine Pitrou2008-09-061-2/+5
|
* #1317: describe the does_esmtp, ehlo_resp, esmtp_features, and helo_resp ↵Andrew M. Kuchling2008-09-061-1/+9
| | | | attributes
* #3796: A test class was not run in test_float.Amaury Forgeot d'Arc2008-09-062-4/+8
| | | | Reviewed by Benjamin.
* #3669 from Robert Lehmann: simplify use of iterator in exampleAndrew M. Kuchling2008-09-061-1/+1
|
* docs are pretty good about new-style classes these daysBenjamin Peterson2008-09-061-6/+0
|
* #1638033: add support for httponly on Cookie.MorselBenjamin Peterson2008-09-064-1/+18
| | | | Reviewer: Benjamin
* #3040: include 'dest' argument in example; trim some trailing whitespaceAndrew M. Kuchling2008-09-061-3/+3
|
* Various correctionsAndrew M. Kuchling2008-09-061-15/+15
|
* actually tell the name of the flag to useBenjamin Peterson2008-09-061-7/+7
|
* Fix typo in multiprocessing doc, cancel_join_thread was missing _threadJesse Noller2008-09-061-1/+1
|
* Issue #3535: zipfile couldn't read some zip files larger than 2GB.Antoine Pitrou2008-09-052-4/+6
| | | | Reviewed by Amaury Forgeot d'Arc.
* GNU coding guidelines say that ``make check`` should verify the build. ThatBrett Cannon2008-09-052-1/+7
| | | | | | | | clashes with what Python's build target did. Rename the target to 'patchcheck' to avoid the culture clash. Closes issue 3758. Reviewed by Benjamin Peterson.
* #3601: test_unicode.test_raiseMemError fails in UCS4Antoine Pitrou2008-09-051-1/+4
| | | | Reviewed by Benjamin Peterson on IRC.
* Deprecate bsddb for removal in Python 3.0.Brett Cannon2008-09-058-6/+26
| | | | | Closes issue 3776. Review by Nick Coghlan.
* #3671: Typo fixAndrew M. Kuchling2008-09-051-4/+5
|
* Make it more obvious that warnings.catch_warnings() and its arguments should ↵Brett Cannon2008-09-051-1/+1
| | | | be considered keyword-only.
* flesh out the documentation on using 2to3Benjamin Peterson2008-09-041-14/+35
|
* Added NEWSHirokazu Yamamoto2008-09-041-0/+3
|
* #3671: various corrections and markup fixes noted by Kent JohnsonAndrew M. Kuchling2008-09-041-24/+26
|
* Issue #3762: platform.architecture() fails if python is lanched via its ↵Hirokazu Yamamoto2008-09-041-1/+1
| | | | | | symbolic link. Reviewed by Amaury Forgeot d'Arc.
* Issue #3772: Fixed regression problem in StreamHandler.emit().Vinay Sajip2008-09-043-3/+31
|
* test_py3kwarn had been overlooked when test.test_support.catch_warning() wasBrett Cannon2008-09-032-10/+15
| | | | | | | re-implemented to use warnings.catch_warnings() and had its API improved. Closes issue #3768. Code review by Benjamin Peterson.
* Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi moduleFacundo Batista2008-09-038-128/+177
| | | | | to the urlparse one. Added a PendingDeprecationWarning in the old module, it will be deprecated in the future. Docs and tests updated.
* Python3.0 bsddb testsuite compatibility improvementsJesus Cea2008-09-032-1/+5
|