summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* 3.0 still has the old threading namesBenjamin Peterson2008-09-031-8/+8
|
* Fix issue 3110 - solaris compilation of multiprocessing fails, reviewed by ↵Jesse Noller2008-09-032-0/+14
| | | | pitrou
* Fix some leaks - Neal NorwitzJesus Cea2008-09-032-4/+6
|
* Issue #2562: Fix distutils PKG-INFO writing logic to allow havingMarc-André Lemburg2008-09-033-14/+64
| | | | non-ascii characters and Unicode in setup.py meta-data.
* Issue #3726: Allowed spaces in separators in logging configuration files.Vinay Sajip2008-09-033-5/+58
|
* Fix issue 3645: OpenBSD required -lcurses when linking with readlineGregory P. Smith2008-09-032-13/+17
| | | | | | | | to get the correct completion_matches function to avoid crashes on x86_64 (amd64). I don't have OpenBSD to test myself. I tested that it does not break anything on linux. It is simple.
* Merged revisions 66176 via svnmerge fromBenjamin Peterson2008-09-031-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r66176 | benjamin.peterson | 2008-09-02 21:04:06 -0500 (Tue, 02 Sep 2008) | 1 line fix typo ........
* update 2to3 script from 2to3 trunkBenjamin Peterson2008-09-031-3/+2
|
* Merged revisions 66173 via svnmerge fromBenjamin Peterson2008-09-037-169/+214
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r66173 | benjamin.peterson | 2008-09-02 18:57:48 -0500 (Tue, 02 Sep 2008) | 8 lines A little 2to3 refactoring #3637 This moves command line logic from refactor.py to a new file called main.py. RefactoringTool now merely deals with the actual fixers and refactoring; options processing for example is abstracted out. This patch was reviewed by Gregory P. Smith. ........
* Issue 2975: when compiling multiple extension modules with visual studio 2008Amaury Forgeot d'Arc2008-09-022-2/+17
| | | | | | | | | | from the same python instance, some environment variables (LIB, INCLUDE) would grow without limit. Tested with these statements: distutils.ccompiler.new_compiler().initialize() print os.environ['LIB'] But I don't know how to turn them into reliable unit tests.
* Attempt to correct the build files for the Microsoft VS7.1 compiler.Amaury Forgeot d'Arc2008-09-022-10/+13
| | | | | I don't have a working VS7.1, but VS2005 can automatically convert the project and build a working python interpreter.
* Use vs9to8.py to refresh the Visual Studio 2005 build files.Amaury Forgeot d'Arc2008-09-028-299/+985
|
* Issue #3759: test_asyncore.py leaked handle.Hirokazu Yamamoto2008-09-021-0/+2
| | | | Reviewed by Amaury Forgeot d'Arc
* Add e-mail addressAndrew M. Kuchling2008-09-021-1/+1
|
* Clarify example; add importsAndrew M. Kuchling2008-09-021-4/+10
|
* Add news item for #3719.Marc-André Lemburg2008-09-021-0/+3
|
* Add quotes around the file name to avoid issues with spaces.Marc-André Lemburg2008-09-021-1/+1
| | | | Closes #3719.
* Issue 3747: Fix caching in ABCMeta.__subclasscheck__ (R: Georg Brandl)Nick Coghlan2008-09-021-2/+2
|
* a typoMark Summerfield2008-09-021-1/+1
|
* Issue #3708: os.urandom no longer goes into an infinite loop when passed aGregory P. Smith2008-09-023-5/+14
| | | | non-integer floating point number.