summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* 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 :-(
* Merged revisions 67049 via svnmerge fromAmaury Forgeot d'Arc2008-10-301-0/+3
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67049 | amaury.forgeotdarc | 2008-10-30 22:18:34 +0100 (jeu., 30 oct. 2008) | 8 lines Issue #4176: Pickle would crash the interpreter when a __reduce__ function does not return an iterator for the 4th and 5th items. (sequence-like and mapping-like state) A list is not an iterator... Will backport to 2.6 and 2.5. ........
* Issue 3723: Fixed initialization of subinterpretersChristian Heimes2008-10-301-0/+2
| | | | | The patch fixes several issues with Py_NewInterpreter as well as the demo for multiple subinterpreters. Most of the patch was written by MvL with help from Benjamin, Amaury and me. Graham Dumpleton has verified that this patch fixes an issue with mod_wsgi.
* Issue #4213: The file system encoding is now normalized by the codec ↵Christian Heimes2008-10-301-0/+3
| | | | | | subsystem, for example UTF-8 is turned into utf-8. Patch created by Victor and reviewed by me. The change is required for proper initialization of subinterpreters.
* Issue #4200: Changed the atexit module to store its state in its PyModuleDef ↵Christian Heimes2008-10-301-0/+3
| | | | atexitmodule. This fixes a bug with multiple subinterpeters. The bug was found by Graham Dumpletom during his work on a 3.0 port of mod_wsgi. The patch has been reviewed by Benjamin.
* Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient ↵Christian Heimes2008-10-301-0/+3
| | | | initialization of PyFileIOObject struct members.
* #4170: Fix segfault when pickling a defauldict object.Amaury Forgeot d'Arc2008-10-301-0/+3
| | | | | | | | The 2.x dict.iteritems() returns an iterator, whereas the 3.0 dict.items() returns a "view", which is iterable, but not an iterator with its __next__ method. Patch by Hirokazu Yamamoto.
* restore compilation on OpenBSD #4146Benjamin Peterson2008-10-191-0/+2
|
* #3664: The pickle module could segfault if a Pickler instance is not ↵Amaury Forgeot d'Arc2008-10-171-1/+4
| | | | | | | | | correctly initialized: when a subclass forgets to call the base __init__ method, or when __init__ is called a second time with invalid parameters Patch by Alexandre Vassalotti.
* Issue #3717: Fix Demo/embed/demo.c.Martin v. Löwis2008-10-171-0/+2
| | | | Reviewed by Benjamin Peterson.
* Merged revisions 66958 via svnmerge fromMartin v. Löwis2008-10-171-0/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66958 | martin.v.loewis | 2008-10-17 15:43:01 +0200 (Fr, 17 Okt 2008) | 1 line Issue #4091: Install pythonxy.dll in system32 again. ........
* Latin-1 source code was not being properly decoded when passed throughBrett Cannon2008-10-171-0/+2
| | | | | | | compile(). This was due to left-over special-casing before UTF-8 became the default source encoding. Closes issue #3574. Thanks to Victor Stinner for help with the patch.
* Victor Stinner's patch to make telnetlib use bytes 3725Benjamin Peterson2008-10-151-0/+2
|
* Issue #4072: Restore build_py_2to3. Add a distutils demo forMartin v. Löwis2008-10-151-0/+7
| | | | build_py_2to3.
* Merged revisions 66881 via svnmerge fromMartin v. Löwis2008-10-131-0/+5
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66881 | martin.v.loewis | 2008-10-13 13:23:35 +0200 (Mo, 13 Okt 2008) | 2 lines Issue #4018: Disable "for me" installations on Vista. ........
* Issues #2384 and #3975: Tracebacks were not correctly printed when the ↵Amaury Forgeot d'Arc2008-10-091-0/+4
| | | | | | | | source file contains a ``coding:`` header: the wrong line was displayed, and the encoding was not respected. Patch by Victor Stinner.
* Issue #3740: Null-initialize module state.Martin v. Löwis2008-10-071-0/+2
| | | | Reviewed by Benjamin Peterson.
* Merged revisions 66814 via svnmerge fromMartin v. Löwis2008-10-061-0/+3
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66814 | martin.v.loewis | 2008-10-06 17:15:40 +0200 (Mo, 06 Okt 2008) | 3 lines Issue #4014: Don't claim that Python has an Alpha release status, in addition to claiming it is Mature. ........
* Issue #3187: Add sys.setfilesystemencoding.Martin v. Löwis2008-10-031-0/+2
|