summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 67295,67301-67302,67318,67330,67342-67343 via svnmerge fromAmaury Forgeot d'Arc2008-11-2213-104/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67295 | benjamin.peterson | 2008-11-20 05:05:12 +0100 (jeu., 20 nov. 2008) | 1 line move useful sys.settrace information to the function's documentation from the debugger ........ r67301 | benjamin.peterson | 2008-11-20 22:25:31 +0100 (jeu., 20 nov. 2008) | 1 line fix indentation and a sphinx warning ........ r67302 | benjamin.peterson | 2008-11-20 22:44:23 +0100 (jeu., 20 nov. 2008) | 1 line oops! didn't mean to disable that test ........ r67318 | amaury.forgeotdarc | 2008-11-21 23:05:48 +0100 (ven., 21 nov. 2008) | 4 lines #4363: Let uuid.uuid1() and uuid.uuid4() run even if the ctypes module is not present. Will backport to 2.6 ........ r67330 | georg.brandl | 2008-11-22 09:34:14 +0100 (sam., 22 nov. 2008) | 2 lines #4364: fix attribute name on ctypes object. ........ r67342 | amaury.forgeotdarc | 2008-11-22 20:39:38 +0100 (sam., 22 nov. 2008) | 3 lines yuvconvert.c is a part of the "sv" module, an old IRIX thing and certainly not useful for any Windows build. ........ r67343 | amaury.forgeotdarc | 2008-11-22 21:01:18 +0100 (sam., 22 nov. 2008) | 5 lines #3996: On Windows, PyOS_CheckStack is supposed to protect the interpreter from stack overflow. But doing this, it always crashes when the stack is nearly full. Reviewed by Martin von Loewis. Will backport to 2.6. ........
* Blocked revisions 67307 via svnmergeBenjamin Peterson2008-11-220-0/+0
| | | | | | | | | | | | | | | ........ r67307 | amaury.forgeotdarc | 2008-11-20 17:34:31 -0600 (Thu, 20 Nov 2008) | 9 lines Fixed issue #4233. Changed semantic of _fileio.FileIO's close() method on file objects with closefd=False. The file descriptor is still kept open but the file object behaves like a closed file. The FileIO object also got a new readonly attribute closefd. Approved by Barry Backport of r67106 from the py3k branch ........
* Add 3.0rc3 UUID.Martin v. Löwis2008-11-221-0/+1
|
* #4153: finish updating Unicode HOWTO for Py3k changes.Georg Brandl2008-11-221-68/+60
|
* Blocked revisions 67336 via svnmergeGeorg Brandl2008-11-220-0/+0
| | | | | | | | ........ r67336 | georg.brandl | 2008-11-22 11:08:50 +0100 (Sat, 22 Nov 2008) | 2 lines Fix error about "-*-" being mandatory in coding cookies. ........
* Fix two mp doc issues from #4012.Georg Brandl2008-11-221-4/+4
|
* #4206: fix 2.xisms in multiprocessing docs and docstrings.Georg Brandl2008-11-222-10/+11
|
* Blocked revisions 67332 via svnmergeGeorg Brandl2008-11-220-0/+0
| | | | | | | | ........ r67332 | georg.brandl | 2008-11-22 09:45:33 +0100 (Sat, 22 Nov 2008) | 2 lines Fix typo. ........
* #4372: add bullet point for __cmp__ removal.Georg Brandl2008-11-221-0/+4
|
* #4361: fix string.py docstring, clarify that only ASCII characters are in ↵Georg Brandl2008-11-222-10/+10
| | | | its constants.
* #4378: fix a few functional HOWTO 2.xisms.Georg Brandl2008-11-221-156/+153
|
* Blocked revisions 67326 via svnmergeBenjamin Peterson2008-11-220-0/+0
| | | | | | | | ........ r67326 | benjamin.peterson | 2008-11-21 19:59:15 -0600 (Fri, 21 Nov 2008) | 1 line backport r67325: make FileIO.mode always contain 'b' ........
* make FileIO.mode always include 'b'Benjamin Peterson2008-11-228-16/+24
| | | | #4386 Reviewed by Amaury
* add a glossary entry for "view"Benjamin Peterson2008-11-211-0/+7
|
* #4383: UnboundLocalError when IDLE cannot connect to its subprocess.Amaury Forgeot d'Arc2008-11-212-3/+7
| | | | | | | Python 3.0 clears the exception variable upon exit of the "except:" clause, and the displaying code fails miserably. Reviewed by Benjamin.
* Merged revisions 67320 via svnmerge fromBenjamin Peterson2008-11-212-3/+27
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67320 | benjamin.peterson | 2008-11-21 16:27:24 -0600 (Fri, 21 Nov 2008) | 4 lines don't segfault when \N escapes are used and unicodedata fails to load Fixes #4367 ........
* A few tiny improvements that I had sitting in an edit buffer. More to come.Guido van Rossum2008-11-211-12/+31
| | | | Much, much more. :-)
* post-3.0rc3Barry Warsaw2008-11-212-3/+15
|
* Fix minor typos.Raymond Hettinger2008-11-211-3/+3
|
* Tagging 3.0rc3.Barry Warsaw2008-11-211-0/+1
|
* 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