summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue 3689: list_reverseiterator should support __length_hint__ instead of ↵Raymond Hettinger2008-12-021-0/+3
| | | | __len__.
* Issue #4387: binascii now refuses to accept str as binary input.Martin v. Löwis2008-12-021-0/+2
|
* Fix docutils parsing errors in Misc/NEWS.Alexandre Vassalotti2008-12-021-9/+10
|
* Issue #4073: Add 2to3 support to build_scripts, refactor that supportMartin v. Löwis2008-12-011-0/+3
| | | | in build_py.
* Merged revisions 67449 via svnmerge fromMartin v. Löwis2008-11-301-0/+2
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67449 | martin.v.loewis | 2008-11-30 12:08:26 +0100 (So, 30 Nov 2008) | 3 lines Issue #4389: Add icon to the uninstall entry in "add-and-remove-programs". ........
* Issue #4407: Fix source file that caused the compileall step in WindowsMartin v. Löwis2008-11-301-0/+6
| | | | installer to fail.
* Fix more threading API related bugs: Thread.get_name() --> Thread.name.Amaury Forgeot d'Arc2008-11-291-0/+3
| | | | Seen when setting RPCHandler.debugging=True
* #4455: IDLE failed to display the windows list when two windows have the ↵Amaury Forgeot d'Arc2008-11-281-0/+3
| | | | | | | | | same title. Windows objects cannot be compared, and it's better to have a consistent order; so We add the window unique ID to the sort key. Reviewed by Benjamin Peterson.
* Forgot to update Misc/NEWSChristian Heimes2008-11-281-0/+2
|
* Merged revisions 67414 via svnmerge fromChristian Heimes2008-11-281-0/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67414 | christian.heimes | 2008-11-28 12:02:32 +0100 (Fri, 28 Nov 2008) | 1 line Fixed issue ##3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception ........
* Remove the Py_TPFLAGS_HAVE_GC from the _ctypes.COMError type.Thomas Heller2008-11-261-0/+3
| | | | Fixes issue #4433; reviewed by Benjamin Peterson.
* - Fix build failure of _cursesmodule.c building with -D_FORTIFY_SOURCE=2.Matthias Klose2008-11-261-0/+2
|
* Prevent UnicodeDecodeErrors in ctypes with non-ascii error messages.Thomas Heller2008-11-261-0/+2
| | | | | | Fixes issue #4429. Reviewed by Amaury Forgeot d'Arc.
* Second fix for issue #4373Christian Heimes2008-11-251-1/+2
|
* #4373: Reference leak in the pickle module.Amaury Forgeot d'Arc2008-11-251-0/+2
| | | | Reviewed by Brett Cannon.
* dbm.gnu and dbm.ndbm accept both strings and bytes as keys and values. For theBrett Cannon2008-11-251-0/+6
| | | | | | former they are converted to bytes before being written to the DB. Closes issue 3799. Reviewed by Skip Montanaro.
* dbm.dumb was opening files without specifying the encoding. Caused problem onBrett Cannon2008-11-241-0/+3
| | | | | | at least OS X where the default is macroman. Closes issue #4382.
* Merged revisions 67295,67301-67302,67318,67330,67342-67343 via svnmerge fromAmaury Forgeot d'Arc2008-11-221-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. ........
* make FileIO.mode always include 'b'Benjamin Peterson2008-11-221-0/+2
| | | | #4386 Reviewed by Amaury
* #4383: UnboundLocalError when IDLE cannot connect to its subprocess.Amaury Forgeot d'Arc2008-11-211-0/+3
| | | | | | | Python 3.0 clears the exception variable upon exit of the "except:" clause, and the displaying code fails miserably. Reviewed by Benjamin.
* post-3.0rc3Barry Warsaw2008-11-211-2/+14
|
* Bump to 3.0rc3v3.0rc3Barry Warsaw2008-11-212-2/+2
|
* Make dbm.dumb encode strings as UTF-8. Also fix it so it accepts bytes andBrett Cannon2008-11-211-1/+4
| | | | | | strings. Closes issue #3799.
* #4338: Fix the distutils "setup.py upload" command.Amaury Forgeot d'Arc2008-11-201-0/+2
| | | | | | The code still mixed bytes and strings. Reviewed by Martin von Loewis.
* Issue #4354: Fix distutils register command.Martin v. Löwis2008-11-201-0/+2
|
* Merged revisions 67283 via svnmerge fromMartin v. Löwis2008-11-191-0/+2
| | | | | | | | | | 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-191-0/+2
| | | | | | | | | | 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__ ........
* fix the Makefile so it doesn't pollute sys.pathBenjamin Peterson2008-11-181-0/+3
| | | | #4349 reviewed by Christian
* Issue #3327: Don't overallocate in the modules_by_index list.Martin v. Löwis2008-11-171-0/+2
|
* Issue #1721812: Binary operations and copy operations on set/frozensetRaymond Hettinger2008-11-161-0/+5
| | | | 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-121-0/+4
| | | | | | | 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-122-0/+4
| | | | | | | 'kwonlydefaults' (as claimed by the docs) attribute instead of 'kwdefaults' Fixes #4307 Reviewed by Christian
* #3705: Command-line arguments were not correctly decoded when theAmaury Forgeot d'Arc2008-11-111-0/+3
| | | | | | | | | 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.
* #4298: pickle.load() can segfault on invalid or truncated input.Amaury Forgeot d'Arc2008-11-111-1/+3
| | | | Patch and test by Hirokazu Yamamoto.
* fix the socketserver demo code for py3kBenjamin Peterson2008-11-082-0/+6
| | | | #4275 Thanks to Don MacMillen
* #4283: fix left-over iteritems() in distutils.Georg Brandl2008-11-081-0/+2
|
* Merged revisions 67149 via svnmerge fromMartin v. Löwis2008-11-071-0/+5
| | | | | | | | | | 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. ........
* name the releaseBenjamin Peterson2008-11-071-2/+3
|
* post release cleanupBarry Warsaw2008-11-071-0/+12
|
* Merged revisions 67120 via svnmerge fromMartin v. Löwis2008-11-061-0/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67120 | martin.v.loewis | 2008-11-06 17:43:00 +0100 (Do, 06 Nov 2008) | 2 lines Issue #4120: Exclude manifest from extension modules in VS2008. ........
* Bumping to 3.0rc2.Barry Warsaw2008-11-062-7/+4
|
* periodBenjamin Peterson2008-11-051-1/+1
|
* fix #4211: the __path__ of a frozen package should be a list.Benjamin Peterson2008-11-051-0/+3
| | | | Patch by Brett Cannon, review by Christian Heimes.
* Fixed issue #3727: poplib module broken by str to unicode conversionChristian Heimes2008-11-051-0/+2
| | | | Victor strikes again! Assisted by Barry
* Issue #3714: nntplib module broken by str to unicode conversionChristian Heimes2008-11-051-0/+2
| | | | Patch by Victor, Reviewed by Barry
* Issue #1210: Fixed imaplibChristian Heimes2008-11-051-0/+2
| | | | Patch by Victor Stinner, reviewed by Barry Warsaw.
* Fixed issue #4233.Christian Heimes2008-11-051-0/+5
| | | | | 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
* Merged revisions 67098 via svnmerge fromMartin v. Löwis2008-11-041-0/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67098 | martin.v.loewis | 2008-11-04 21:40:09 +0100 (Di, 04 Nov 2008) | 2 lines Issue #4204: Fixed module build errors on FreeBSD 4. ........
* Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via ↵Benjamin Peterson2008-11-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r67028 | benjamin.peterson | 2008-10-25 18:27:07 -0500 (Sat, 25 Oct 2008) | 1 line don't use a catch-all ........ r67040 | armin.rigo | 2008-10-28 12:01:21 -0500 (Tue, 28 Oct 2008) | 5 lines Fix one of the tests: it relied on being present in an "output test" in order to actually test what it was supposed to test, i.e. that the code in the __del__ method did not crash. Use instead the new helper test_support.captured_output(). ........ r67044 | amaury.forgeotdarc | 2008-10-29 18:15:57 -0500 (Wed, 29 Oct 2008) | 3 lines Correct error message in io.open(): closefd=True is the only accepted value with a file name. ........ r67046 | thomas.heller | 2008-10-30 15:18:13 -0500 (Thu, 30 Oct 2008) | 2 lines Fixed a modulefinder crash on certain relative imports. ........ r67052 | christian.heimes | 2008-10-30 16:26:15 -0500 (Thu, 30 Oct 2008) | 1 line Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members. ........ r67065 | benjamin.peterson | 2008-10-30 18:59:18 -0500 (Thu, 30 Oct 2008) | 1 line move unprefixed error into .c file ........ r67070 | benjamin.peterson | 2008-10-31 15:41:44 -0500 (Fri, 31 Oct 2008) | 1 line rephrase has_key doc ........ r67077 | benjamin.peterson | 2008-11-03 09:14:51 -0600 (Mon, 03 Nov 2008) | 1 line #4048 make the parser module accept relative imports as valid ........ r67082 | hirokazu.yamamoto | 2008-11-03 12:03:06 -0600 (Mon, 03 Nov 2008) | 2 lines Issue #3774: Fixed an error when create a Tkinter menu item without command and then remove it. Written by Guilherme Polo (gpolo). ........
* #3626: On cygwin, starting "python z" would not display any error message:Amaury Forgeot d'Arc2008-10-301-1/+4
| | | | printf("%ls") fails if the wide string is 1 char long :-(