summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Bump to 3.0rc3v3.0rc3Barry Warsaw2008-11-217-14/+14
|
* a few updates to the gloassary with regards to __future__ and divisionBenjamin Peterson2008-11-211-27/+12
|
* Make dbm.dumb encode strings as UTF-8. Also fix it so it accepts bytes andBrett Cannon2008-11-213-27/+52
| | | | | | strings. Closes issue #3799.
* fix test_gzipBenjamin Peterson2008-11-211-1/+1
|
* #4338: Fix the distutils "setup.py upload" command.Amaury Forgeot d'Arc2008-11-202-17/+21
| | | | | | The code still mixed bytes and strings. Reviewed by Martin von Loewis.
* Follow-up of r67300: correct a failure in socket.makefile().Amaury Forgeot d'Arc2008-11-202-5/+16
| | | | SocketIO objects now always have 'name' and 'mode' attributes.
* Blocked revisions 67303 via svnmergeBenjamin Peterson2008-11-200-0/+0
| | | | | | | | ........ r67303 | benjamin.peterson | 2008-11-20 16:06:22 -0600 (Thu, 20 Nov 2008) | 1 line backport r67300 ........
* fix Sphinx table warningBenjamin Peterson2008-11-201-89/+89
|
* Fix for bug 4362 "FileIO object in io module"; Patch by amaury.forgeotdarc.Barry Warsaw2008-11-202-10/+47
|
* Fix for bug 4360 "SystemError when method has both super() & closure". PatchBarry Warsaw2008-11-203-2/+21
| | | | | | by amaury.forgeotdarc and reviewed by brett.cannon. Also add release notes about the known problems with the email package.
* Issue #4354: Fix distutils register command.Martin v. Löwis2008-11-202-13/+10
|
* Merged revisions 67243,67245,67277-67278,67289 via svnmerge fromBenjamin Peterson2008-11-194-15/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67243 | benjamin.peterson | 2008-11-17 15:39:05 -0600 (Mon, 17 Nov 2008) | 1 line a few fixes on the download page ........ r67245 | benjamin.peterson | 2008-11-17 16:05:19 -0600 (Mon, 17 Nov 2008) | 1 line improve __hash__ docs ........ r67277 | skip.montanaro | 2008-11-18 21:35:41 -0600 (Tue, 18 Nov 2008) | 1 line patch from issue 1108 ........ r67278 | georg.brandl | 2008-11-19 01:59:09 -0600 (Wed, 19 Nov 2008) | 2 lines Try to fix problems with verbatim. ........ r67289 | brett.cannon | 2008-11-19 14:29:39 -0600 (Wed, 19 Nov 2008) | 2 lines Ignore .pyc and .pyo files. ........
* Merged revisions 67291 via svnmerge fromBenjamin Peterson2008-11-192-17/+13
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67291 | benjamin.peterson | 2008-11-19 15:49:09 -0600 (Wed, 19 Nov 2008) | 5 lines make sure that bytearray methods return a new bytearray even if there is no change Fixes #4348 Reviewed by Brett ........
* Blocked revisions 67287 via svnmergeBenjamin Peterson2008-11-190-0/+0
| | | | | | | | ........ r67287 | josiah.carlson | 2008-11-19 12:26:12 -0600 (Wed, 19 Nov 2008) | 2 lines Fix for issue 4332 in trunk. ........
* This fixes issue 4332 for Py3k.Josiah Carlson2008-11-191-1/+1
|
* Merged revisions 67283 via svnmerge fromMartin v. Löwis2008-11-192-6/+5
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67283 | martin.v.loewis | 2008-11-19 14:51:44 +0100 (Mi, 19 Nov 2008) | 1 line Issue #4289: Remove Cancel button from AdvancedDlg. ........
* Merged revisions 67279 via svnmerge fromMartin v. Löwis2008-11-192-2/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67279 | martin.v.loewis | 2008-11-19 10:09:41 +0100 (Mi, 19 Nov 2008) | 2 lines Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__ ........
* Blocked revisions 67266 via svnmergeAmaury Forgeot d'Arc2008-11-180-0/+0
| | | | | | | | | | ........ r67266 | amaury.forgeotdarc | 2008-11-18 23:19:37 +0100 (Tue, 18 Nov 2008) | 4 lines #4317: Fix an Array Bounds Read in imageop.rgb2rgb8. Will backport to 2.4. ........
* fix the Makefile so it doesn't pollute sys.pathBenjamin Peterson2008-11-182-1/+3
| | | | #4349 reviewed by Christian
* Issue #4313: Fixed segfault on IDLE exit. Reverted r57540 and reopened Issue ↵Hirokazu Yamamoto2008-11-181-8/+2
| | | | #1028.
* Issue 2260: Small peephole optimization -- eliminate unnecessary POP_TOP ↵Raymond Hettinger2008-11-181-0/+10
| | | | /JUMP_FORWARD 1 pairs.
* Issue 4090 and 4087: Further documentation of comparisons.Raymond Hettinger2008-11-171-4/+27
|
* Merged revisions 67246 via svnmerge fromBenjamin Peterson2008-11-172-3/+76
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67246 | benjamin.peterson | 2008-11-17 16:39:09 -0600 (Mon, 17 Nov 2008) | 5 lines when __getattr__ is a descriptor, call it correctly; fixes #4230 patch from Ziga Seilnacht ........
* rephrase dict view docsBenjamin Peterson2008-11-171-9/+6
|
* Issue #3327: Don't overallocate in the modules_by_index list.Martin v. Löwis2008-11-172-1/+3
|
* Issue #4312: Remove claim that distutils parameters must not be Unicode. The ↵Martin v. Löwis2008-11-171-2/+0
| | | | opposite is true.
* Merged revisions 67154,67157-67159,67175-67176,67189,67224-67227,67234 via ↵Benjamin Peterson2008-11-1614-129/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r67154 | hirokazu.yamamoto | 2008-11-07 21:46:17 -0600 (Fri, 07 Nov 2008) | 1 line Issue #4071: ntpath.abspath returned an empty string for long unicode path. ........ r67157 | georg.brandl | 2008-11-08 05:47:44 -0600 (Sat, 08 Nov 2008) | 2 lines Don't use "HOWTO" as the title for all howto .tex files. ........ r67158 | georg.brandl | 2008-11-08 05:48:20 -0600 (Sat, 08 Nov 2008) | 2 lines Update "Documenting" a bit. Concentrate on Python-specifics. ........ r67159 | georg.brandl | 2008-11-08 06:52:25 -0600 (Sat, 08 Nov 2008) | 2 lines Fix warning. ........ r67175 | benjamin.peterson | 2008-11-08 19:44:32 -0600 (Sat, 08 Nov 2008) | 1 line update link ........ r67176 | benjamin.peterson | 2008-11-08 19:52:32 -0600 (Sat, 08 Nov 2008) | 1 line fix comment ........ r67189 | benjamin.peterson | 2008-11-11 15:56:06 -0600 (Tue, 11 Nov 2008) | 1 line use correct name ........ r67224 | georg.brandl | 2008-11-15 02:10:04 -0600 (Sat, 15 Nov 2008) | 2 lines #4324: fix getlocale() argument. ........ r67225 | brett.cannon | 2008-11-15 16:33:25 -0600 (Sat, 15 Nov 2008) | 1 line Clarify the docs for the 'strict' argument to httplib.HTTPConnection. ........ r67226 | brett.cannon | 2008-11-15 16:40:44 -0600 (Sat, 15 Nov 2008) | 4 lines The docs for httplib.HTTPConnection.putheader() have claimed for quite a while that their could be an arbitrary number of values passed in. Turns out the code did not match that. The code now matches the docs. ........ r67227 | georg.brandl | 2008-11-16 02:00:17 -0600 (Sun, 16 Nov 2008) | 2 lines #4316: fix configure.in markup problem. ........ r67234 | benjamin.peterson | 2008-11-16 11:54:55 -0600 (Sun, 16 Nov 2008) | 1 line run autoconf ........
* Issue #1721812: Binary operations and copy operations on set/frozensetRaymond Hettinger2008-11-163-9/+31
| | | | subclasses need to return the base type, not the subclass itself.
* Issue #4296: Fix PyObject_RichCompareBool so that "x in [x]" evaluates toMark Dickinson2008-11-124-2/+62
| | | | | | | True, even when x doesn't compare equal to itself. This was a regression from 2.6. Reviewed by R. Hettinger and C. Heimes.
* change the named tuple returned by inspect.getfullargspec to have a ↵Benjamin Peterson2008-11-123-1/+5
| | | | | | | 'kwonlydefaults' (as claimed by the docs) attribute instead of 'kwdefaults' Fixes #4307 Reviewed by Christian
* getfullargspec() has other virtues, tooBenjamin Peterson2008-11-121-1/+1
|
* Style fix, use tab instead of spaceChristian Heimes2008-11-121-2/+2
|
* #2971: test_zipfile64 fails.Amaury Forgeot d'Arc2008-11-121-7/+8
| | | | | | This test is always skipped, but it is not a reason not to adapt it to py3k. I had to reduce most of the big figures to actually run the test.
* Enable this test only when subprocess supports non-ascii arguments.Amaury Forgeot d'Arc2008-11-121-6/+5
| | | | (it is about parsing the python command line arguments, not about subprocess)
* Temporarily print some information in test_cmd_line,Amaury Forgeot d'Arc2008-11-121-0/+2
| | | | to understand why the test fails on some platforms.
* #3705: Command-line arguments were not correctly decoded when theAmaury Forgeot d'Arc2008-11-114-25/+35
| | | | | | | | | terminal does not use UTF8. Now the code propagates the unicode string as far as possible, and avoids the conversion to char* which implicitely uses utf-8. Reviewed by Benjamin.
* exec won't take file objects anymoreBenjamin Peterson2008-11-111-9/+8
|
* #4298: pickle.load() can segfault on invalid or truncated input.Amaury Forgeot d'Arc2008-11-113-1/+13
| | | | Patch and test by Hirokazu Yamamoto.
* Fixed a compiler warningChristian Heimes2008-11-111-1/+3
|
* Merged revisions 67180 via svnmerge fromBenjamin Peterson2008-11-105-12/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ................ r67180 | benjamin.peterson | 2008-11-10 16:11:12 -0600 (Mon, 10 Nov 2008) | 29 lines Merged revisions 66985,67170,67173,67177-67179 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r66985 | benjamin.peterson | 2008-10-20 16:43:46 -0500 (Mon, 20 Oct 2008) | 1 line no need to use nested try, except, finally ........ r67170 | benjamin.peterson | 2008-11-08 12:28:31 -0600 (Sat, 08 Nov 2008) | 1 line fix #4271: fix_imports didn't recognize imports with parenthesis (ie from x import (a, b)) ........ r67173 | benjamin.peterson | 2008-11-08 17:42:08 -0600 (Sat, 08 Nov 2008) | 1 line consolidate test ........ r67177 | benjamin.peterson | 2008-11-09 21:52:52 -0600 (Sun, 09 Nov 2008) | 1 line let the metclass fixer handle complex assignments in the class body gracefully ........ r67178 | benjamin.peterson | 2008-11-10 15:26:43 -0600 (Mon, 10 Nov 2008) | 1 line the metaclass fixers shouldn't die when bases are not a simple name ........ r67179 | benjamin.peterson | 2008-11-10 15:29:58 -0600 (Mon, 10 Nov 2008) | 1 line allow the fix_import pattern to catch from imports with parenthesis ........ ................
* update string formatting grammarBenjamin Peterson2008-11-091-1/+1
|
* Merged revisions 67171 via svnmerge fromBenjamin Peterson2008-11-082-6/+1
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67171 | benjamin.peterson | 2008-11-08 12:38:54 -0600 (Sat, 08 Nov 2008) | 4 lines check for assignment to __debug__ during AST generation Also, give assignment to None a better error message ........
* fix the socketserver demo code for py3kBenjamin Peterson2008-11-085-30/+38
| | | | #4275 Thanks to Don MacMillen
* Blocked revisions 67166 via svnmergeBenjamin Peterson2008-11-080-0/+0
| | | | | | | | ........ r67166 | benjamin.peterson | 2008-11-08 11:07:06 -0600 (Sat, 08 Nov 2008) | 1 line clarify what was added ........
* Blocked revisions 67163 via svnmergeBenjamin Peterson2008-11-080-0/+0
| | | | | | | | ........ r67163 | benjamin.peterson | 2008-11-08 11:04:18 -0600 (Sat, 08 Nov 2008) | 1 line move context clue to versionchanged tag ........
* Merged revisions 67162 via svnmerge fromBenjamin Peterson2008-11-082-21/+27
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67162 | benjamin.peterson | 2008-11-08 10:55:33 -0600 (Sat, 08 Nov 2008) | 1 line a few compile() and ast doc improvements ........
* compile can also produce ASTBenjamin Peterson2008-11-081-4/+4
|
* #4283: fix left-over iteritems() in distutils.Georg Brandl2008-11-082-1/+3
|
* Merged revisions 67149 via svnmerge fromMartin v. Löwis2008-11-072-0/+13
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67149 | martin.v.loewis | 2008-11-07 19:51:50 +0100 (Fr, 07 Nov 2008) | 1 line Issue #1656675: Register a drop handler for .py* files on Windows. ........
* Merged revisions 67117-67119,67123-67124,67143 via svnmerge fromGeorg Brandl2008-11-075-165/+202
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67117 | georg.brandl | 2008-11-06 11:17:58 +0100 (Thu, 06 Nov 2008) | 2 lines #4268: Use correct module for two toplevel functions. ........ r67118 | georg.brandl | 2008-11-06 11:19:11 +0100 (Thu, 06 Nov 2008) | 2 lines #4267: small fixes in sqlite3 docs. ........ r67119 | georg.brandl | 2008-11-06 11:20:49 +0100 (Thu, 06 Nov 2008) | 2 lines #4245: move Thread section to the top. ........ r67123 | georg.brandl | 2008-11-06 19:49:15 +0100 (Thu, 06 Nov 2008) | 2 lines #4247: add "pass" examples to tutorial. ........ r67124 | andrew.kuchling | 2008-11-06 20:23:02 +0100 (Thu, 06 Nov 2008) | 1 line Fix grammar error; reword two paragraphs ........ r67143 | georg.brandl | 2008-11-07 09:27:39 +0100 (Fri, 07 Nov 2008) | 2 lines Fix syntax. ........