summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* #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.
* Issue #3678: Correctly pass LDFLAGS and LDLAST to the linker on sharedGregory P. Smith2008-09-022-5/+8
| | | | library targets in the Makefile.
* Improve compatibility with Python3.0 testsuiteJesus Cea2008-09-023-7/+12
|
* typo fixAndrew M. Kuchling2008-09-021-1/+1
|
* Move test.test_support.catch_warning() to the warnings module, rename itBrett Cannon2008-09-0211-126/+208
| | | | | | | | | | | catch_warnings(), and clean up the API. While expanding the test suite, a bug was found where a warning about the 'line' argument to showwarning() was not letting functions with '*args' go without a warning. Closes issue 3602. Code review by Benjamin Peterson.
* Describe the __hash__ changesAndrew M. Kuchling2008-09-021-1/+25
|
* remove py3k warnings about the threading api; update docsBenjamin Peterson2008-09-014-71/+29
| | | | Reviewer: Benjamin Peterson
* In Python3.0, "test.test_support" is renamed to "test.support".Jesus Cea2008-09-011-1/+4
|
* Issue #3751: str.rpartition would perform a left-partition when called withAmaury Forgeot d'Arc2008-09-013-1/+9
| | | | | | a unicode argument. will backport.
* Bug #3738: Documentation is now more accurate in describing handler close ↵Vinay Sajip2008-09-011-4/+6
| | | | methods.
* Merged revisions 65887,65889,65967-65968,65981 via svnmerge fromBenjamin Peterson2008-09-016-13/+185
| | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r65887 | benjamin.peterson | 2008-08-19 17:45:04 -0500 (Tue, 19 Aug 2008) | 1 line allow the raw_input fixer to handle calls after the raw_input (ie. raw_input().split()) ........ r65889 | benjamin.peterson | 2008-08-19 18:11:03 -0500 (Tue, 19 Aug 2008) | 1 line no need for 2.4 compatibility now ........ r65967 | benjamin.peterson | 2008-08-21 18:43:37 -0500 (Thu, 21 Aug 2008) | 1 line allow a Call to have no arguments ........ r65968 | benjamin.peterson | 2008-08-21 18:45:13 -0500 (Thu, 21 Aug 2008) | 1 line add a fixer for sys.exc_info etc by Jeff Balogh #2357 ........ r65981 | benjamin.peterson | 2008-08-22 15:41:30 -0500 (Fri, 22 Aug 2008) | 1 line add a fixer to add parenthese for list and gen comps #2367 ........
* revert r66114 for JesseBenjamin Peterson2008-09-015-39/+146
|
* Submit Nick's patch for issue 3589, reviewed by jnollerJesse Noller2008-09-014-132/+32
|
* Added section about configuring logging in a library. Thanks to Thomas ↵Vinay Sajip2008-09-011-0/+39
| | | | Heller for the idea.
* logging: fixed lack of use of encoding attribute specified on a stream.Vinay Sajip2008-09-011-2/+4
|
* Issue #3748: platform.architecture() printed vogus message on windows.Hirokazu Yamamoto2008-09-011-0/+3
| | | | Reviewed by Marc-Andre Lemburg.
* logging: fixed lack of use of encoding attribute specified on a stream.Vinay Sajip2008-09-011-5/+10
|
* Issue #3732: Backported r53335 to supress deprecation warning.Hirokazu Yamamoto2008-09-011-5/+5
| | | | Reviewed by Benjamin Peterson.
* Fix compilation when --without-threads is given #3683Benjamin Peterson2008-09-012-3/+8
| | | | Reviewer: Georg Brandl, Benjamin Peterson
* #3749: fix c'n'p errors.Georg Brandl2008-09-011-3/+3
|
* #3703 unhelpful _fileio.FileIO error message when trying to open a directoryBenjamin Peterson2008-09-013-1/+17
| | | | Reviewer: Gregory P. Smith