Commit Graph

40453 Commits

Author SHA1 Message Date
Benjamin Peterson 97179b0f58 Fix #3634 invalid return value from _weakref.ref(Exception).__init__
Reviewers: Amaury, Antoine, Benjamin
2008-09-09 20:55:01 +00:00
Georg Brandl c0f10f34b1 #3472: update Mac-bundled Python version info. 2008-09-09 20:28:31 +00:00
Georg Brandl 98064078f7 Fix varname in docstring. #3822. 2008-09-09 19:26:00 +00:00
Vinay Sajip 844f741039 Issue #3809: Fixed spurious 'test.blah' file left behind by test_logging. 2008-09-09 13:42:08 +00:00
Amaury Forgeot d'Arc d3ffb8974f #3777: long(4.2) returned an int, and broke backward compatibility.
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
2008-09-09 07:24:30 +00:00
Brett Cannon 672237dc6c warnings.catch_warnings() now returns a list or None instead of the custom
WarningsRecorder object. This makes the API simpler to use as no special object
must be learned.

Closes issue 3781.
Review by Benjamin Peterson.
2008-09-09 00:49:16 +00:00
Hirokazu Yamamoto 631be01252 Issue #3806: LockTests in test_imp should be skipped when thread is not available.
Reviewed by Benjamin Peterson.
2008-09-08 23:38:42 +00:00
Hirokazu Yamamoto 74ce88fd67 Issue #3804: Added test for Issue #2222.
Reviewed by Benjamin Peterson.
2008-09-08 23:03:47 +00:00
Bill Janssen 61c001a939 incorporate fixes from issue 3162; SSL doc patch 2008-09-08 16:37:24 +00:00
Martin v. Löwis 996b9f38db Add UUIDs for upcoming releases 2008-09-08 16:15:38 +00:00
Mark Summerfield ffde3cfcb1 Added xrefs to each other. 2008-09-08 14:45:37 +00:00
Martin v. Löwis 3f5fda8c50 Issue #2271: Set SecureCustomProperties so that installation will properly
use the TARGETDIR even for unprivileged users.
2008-09-08 13:50:10 +00:00
Martin v. Löwis 67543a9dc9 Allow passing the MSI file name to merge.py. 2008-09-08 12:02:45 +00:00
Facundo Batista ace0bcf669 Issue 3801. Fixing a dumb error in the deprecated parse_qsl()
function.  Tests added.
2008-09-08 00:20:28 +00:00
Gregory P. Smith e080cdf30a reran autoconf 2008-09-07 19:19:04 +00:00
Gregory P. Smith 29ec750a86 bugfix to r66283 (see issue #1204). 2008-09-07 19:18:16 +00:00
Georg Brandl 0f3629d913 Add a new howto about Python and the web, by Marek Kubica. 2008-09-07 17:00:17 +00:00
Gregory P. Smith cc023f1194 reran autoconf for r66283's checkin 2008-09-07 05:15:58 +00:00
Gregory P. Smith 980b99b529 - Issue #1204: The configure script now tests for additional libraries
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).
2008-09-07 05:15:18 +00:00
Josiah Carlson b7a841ca40 undoing change that broke trunk. Need to find a better solution to this. 2008-09-07 04:37:10 +00:00
Josiah Carlson 1680b8c16c This fixes a small inconsistency between trunk and 3.0, closing bug 3764. 2008-09-07 03:53:58 +00:00
Benjamin Peterson a853a89dc3 fix missing module 2008-09-06 23:19:15 +00:00
Antoine Pitrou 9fb1aca5d8 Backport relevant part of r66274 (in issue #874900). 2008-09-06 23:04:32 +00:00
Andrew M. Kuchling fe38e44123 #1317: describe the does_esmtp, ehlo_resp, esmtp_features, and helo_resp attributes 2008-09-06 21:26:02 +00:00
Amaury Forgeot d'Arc feb8cade4d #3796: A test class was not run in test_float.
Reviewed by Benjamin.
2008-09-06 20:53:51 +00:00
Andrew M. Kuchling cd52023e6f #3669 from Robert Lehmann: simplify use of iterator in example 2008-09-06 20:28:01 +00:00
Benjamin Peterson 873c9f15d0 docs are pretty good about new-style classes these days 2008-09-06 19:42:39 +00:00
Benjamin Peterson 6ac7d7c80b #1638033: add support for httponly on Cookie.Morsel
Reviewer: Benjamin
2008-09-06 19:28:11 +00:00
Andrew M. Kuchling 810f807b1b #3040: include 'dest' argument in example; trim some trailing whitespace 2008-09-06 13:04:02 +00:00
Andrew M. Kuchling 48a937ab41 Various corrections 2008-09-06 12:50:05 +00:00
Benjamin Peterson ad2a9e72f1 actually tell the name of the flag to use 2008-09-06 03:00:00 +00:00
Jesse Noller d5ff5b2ec4 Fix typo in multiprocessing doc, cancel_join_thread was missing _thread 2008-09-06 01:20:11 +00:00
Antoine Pitrou ebcd0ced14 Issue #3535: zipfile couldn't read some zip files larger than 2GB.
Reviewed by Amaury Forgeot d'Arc.
2008-09-05 23:30:23 +00:00
Brett Cannon cdeb24bb05 GNU coding guidelines say that ``make check`` should verify the build. That
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.
2008-09-05 22:59:17 +00:00
Antoine Pitrou 187ac1bda4 #3601: test_unicode.test_raiseMemError fails in UCS4
Reviewed by Benjamin Peterson on IRC.
2008-09-05 22:04:54 +00:00
Brett Cannon 32476fc5a8 Deprecate bsddb for removal in Python 3.0.
Closes issue 3776.
Review by Nick Coghlan.
2008-09-05 18:33:51 +00:00
Andrew M. Kuchling 6024834ed9 #3671: Typo fix 2008-09-05 15:15:56 +00:00
Brett Cannon 3dffcd1a72 Make it more obvious that warnings.catch_warnings() and its arguments should be considered keyword-only. 2008-09-05 03:52:59 +00:00
Benjamin Peterson 15ad6c0f2b flesh out the documentation on using 2to3 2008-09-04 23:31:27 +00:00
Hirokazu Yamamoto 42e459ef43 Added NEWS 2008-09-04 14:25:30 +00:00
Andrew M. Kuchling 3ff2275628 #3671: various corrections and markup fixes noted by Kent Johnson 2008-09-04 13:26:24 +00:00
Hirokazu Yamamoto 171c4aae4e Issue #3762: platform.architecture() fails if python is lanched via its symbolic link.
Reviewed by Amaury Forgeot d'Arc.
2008-09-04 11:15:14 +00:00
Vinay Sajip 65d66e1006 Issue #3772: Fixed regression problem in StreamHandler.emit(). 2008-09-04 07:31:21 +00:00
Brett Cannon a0b7444f68 test_py3kwarn had been overlooked when test.test_support.catch_warning() was
re-implemented to use warnings.catch_warnings() and had its API improved.

Closes issue #3768.
Code review by Benjamin Peterson.
2008-09-03 22:45:11 +00:00
Facundo Batista c585df9476 Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module
to the urlparse one.  Added a PendingDeprecationWarning in the old
module, it will be deprecated in the future.  Docs and tests updated.
2008-09-03 22:35:50 +00:00
Jesus Cea 69acb43327 Python3.0 bsddb testsuite compatibility improvements 2008-09-03 22:07:11 +00:00
Benjamin Peterson cde6dc9a86 3.0 still has the old threading names 2008-09-03 21:48:20 +00:00
Jesse Noller b814d6a704 Fix issue 3110 - solaris compilation of multiprocessing fails, reviewed by pitrou 2008-09-03 18:10:30 +00:00
Jesus Cea ac25fab12f Fix some leaks - Neal Norwitz 2008-09-03 17:50:32 +00:00
Marc-André Lemburg b339b2aa6f Issue #2562: Fix distutils PKG-INFO writing logic to allow having
non-ascii characters and Unicode in setup.py meta-data.
2008-09-03 11:13:56 +00:00