summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* #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
|
* Issue #3187: Better support for "undecodable" filenames. Code by VictorGuido van Rossum2008-10-021-2/+8
| | | | Stinner, with small tweaks by GvR.
* Merged revisions 66686 via svnmerge fromMartin v. Löwis2008-09-291-0/+3
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66686 | martin.v.loewis | 2008-09-30 00:09:07 +0200 (Di, 30 Sep 2008) | 5 lines Issue #3965: Allow repeated calls to turtle.Screen, by making it a true singleton object. Reviewed by Gregor Lingl. ........
* #3911 FTP.makeport was giving bad port numbersBenjamin Peterson2008-09-271-0/+2
| | | | reviewed by Benjamin and Antoine
* #3946 fix PyObject_CheckBuffer on a memoryview objectBenjamin Peterson2008-09-261-0/+2
| | | | reviewed by Antoine
* #3929: dbm.open() would try to raise a tuple. This does not work anymore ↵Amaury Forgeot d'Arc2008-09-251-0/+4
| | | | | | with python 3.0. Reviewed by Georg Brandl.
* Merged revisions 66616 via svnmerge fromMartin v. Löwis2008-09-251-0/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66616 | martin.v.loewis | 2008-09-25 06:12:50 +0200 (Do, 25 Sep 2008) | 2 lines Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default. ........
* Merged revisions 66611 via svnmerge fromThomas Heller2008-09-241-0/+3
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66611 | thomas.heller | 2008-09-24 20:26:05 +0200 (Mi, 24 Sep 2008) | 3 lines Fix issue #3547: ctypes is confused by bitfields of varying integer types Reviewed by Fredrik Lundh and Skip Montanaro. ........
* Issue #3659: Values of string subclasses were not handled correctly when usedGerhard Häring2008-09-221-0/+5
| | | | | | as bind parameters. Reviewed by Bejnamin Peterson.
* #1688: On Windows, the input() prompt was not correctly displayed if itAmaury Forgeot d'Arc2008-09-211-0/+3
| | | | | | contains non-ascii characters. Reviewed by Benjamin Peterson.
* Bug #3884: Make the turtle module toplevel again.Martin v. Löwis2008-09-211-0/+2
|
* done with rc1Barry Warsaw2008-09-181-0/+12
|
* bumping to 3.0rc1v3.0rc1Barry Warsaw2008-09-182-2/+2
|
* Merged revisions 66457-66459,66465-66468,66483-66485,66487-66491 via ↵Benjamin Peterson2008-09-171-8/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r66457 | antoine.pitrou | 2008-09-13 15:30:30 -0500 (Sat, 13 Sep 2008) | 5 lines Issue #3850: Misc/find_recursionlimit.py was broken. Reviewed by A.M. Kuchling. ........ r66458 | benjamin.peterson | 2008-09-13 17:54:43 -0500 (Sat, 13 Sep 2008) | 1 line fix a name issue; note all doc files should be encoded in utf8 ........ r66459 | benjamin.peterson | 2008-09-14 11:02:22 -0500 (Sun, 14 Sep 2008) | 1 line clarify that radix for int is not 'guessed' ........ r66465 | skip.montanaro | 2008-09-14 21:03:05 -0500 (Sun, 14 Sep 2008) | 3 lines Review usage. Fix a mistake in the new-style class definition. Add a couple new definitions (CPython and virtual machine). ........ r66466 | skip.montanaro | 2008-09-14 21:19:53 -0500 (Sun, 14 Sep 2008) | 2 lines Pick up a few more definitions from the glossary on the wiki. ........ r66467 | benjamin.peterson | 2008-09-14 21:53:23 -0500 (Sun, 14 Sep 2008) | 1 line mention that object.__init__ no longer takes arbitrary args and kwargs ........ r66468 | andrew.kuchling | 2008-09-15 08:08:32 -0500 (Mon, 15 Sep 2008) | 1 line Rewrite item a bit ........ r66483 | georg.brandl | 2008-09-16 05:17:45 -0500 (Tue, 16 Sep 2008) | 2 lines Fix typo. ........ r66484 | benjamin.peterson | 2008-09-16 16:20:28 -0500 (Tue, 16 Sep 2008) | 2 lines be less wordy ........ r66485 | georg.brandl | 2008-09-17 03:45:54 -0500 (Wed, 17 Sep 2008) | 2 lines #3888: add some deprecated modules in whatsnew. ........ r66487 | skip.montanaro | 2008-09-17 06:50:36 -0500 (Wed, 17 Sep 2008) | 2 lines usage ........ r66488 | andrew.kuchling | 2008-09-17 07:57:04 -0500 (Wed, 17 Sep 2008) | 1 line Markup fixes ........ r66489 | andrew.kuchling | 2008-09-17 07:58:22 -0500 (Wed, 17 Sep 2008) | 2 lines Remove comment about improvement: pystone is about the same, and the improvements seem to be difficult to quantify ........ r66490 | andrew.kuchling | 2008-09-17 08:04:53 -0500 (Wed, 17 Sep 2008) | 1 line Note sqlite3 version; move item ........ r66491 | benjamin.peterson | 2008-09-17 16:54:56 -0500 (Wed, 17 Sep 2008) | 1 line document compileall command flags ........
* Issue #3782: os.write() must not accept unicode stringsAntoine Pitrou2008-09-151-0/+2
|
* #3640: Correct a crash in cPickle on 64bit platforms, in the case of deeply ↵Amaury Forgeot d'Arc2008-09-111-0/+20
| | | | | | nested lists or dicts. Reviewed by Martin von Loewis.
* kill memoryview.size in favor of len(view)Benjamin Peterson2008-09-101-0/+2
| | | | Reviewer: Antoine Pitrou #3827
* Issue #3756: make re.escape() handle bytes as well as str.Guido van Rossum2008-09-101-0/+2
| | | | Patch by Andrew McNamara, reviewed and tweaked by myself.
* Fix formatter usage of filter(). Bug #3800.Georg Brandl2008-09-091-0/+2
|
* Issue #3812: Failed to build python if configure --without-threads.Hirokazu Yamamoto2008-09-091-0/+2
| | | | | | | | Removed itertools usage from Lib/traceback.py, because itertools is extension module, so maybe unavailable on build process. (Lib/_dummy_thread.py uses Lib/traceback.py) Reviewed by Amaury Forgeot d'Arc.
* Added News for r66338Hirokazu Yamamoto2008-09-091-0/+2
|
* Revert r33661, which broke all buildbots.Amaury Forgeot d'Arc2008-09-091-1/+2
|
* #3705: Fix crash when given a non-ascii value on the command line for the ↵Amaury Forgeot d'Arc2008-09-091-2/+1
| | | | | | | | "-c" and "-m" parameters Second part, for Windows. Reviewed by Antoine Pitrou
* #3791: Remove bsddb from the Windows msi installer,Amaury Forgeot d'Arc2008-09-091-0/+7
| | | | | | And do not compile the core bsddb library. Reviewed by Martin von Loewis.
* describe the change merged in r66285Gregory P. Smith2008-09-071-0/+4
|
* Issue #874900: fix behaviour of threading module after a fork.Antoine Pitrou2008-09-061-0/+2
| | | | Reviewed by Gregory P. Smith.
* fixes deferred/release blocker issue #3797: Fixed the dbm, marshal, mmap,Gregory P. Smith2008-09-061-0/+3
| | | | | ossaudiodev, & winreg modules to return bytes objects instead of bytearray objects.
* Issue #3705: py3k aborts if "-c" or "-m" is given a non-ascii value.Antoine Pitrou2008-09-061-0/+4
| | | | Reviewed by Benjamin Peterson.
* Fixes release blocker issue #3492 and #3790.Gregory P. Smith2008-09-061-0/+4
| | | | | Make zlib and zipimport to return bytes instead of bytearray and use bytes rather than bytearray for their internal leftover data storages.
* Merged revisions 66262 via svnmerge fromBenjamin Peterson2008-09-061-0/+1
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66262 | benjamin.peterson | 2008-09-06 14:28:11 -0500 (Sat, 06 Sep 2008) | 4 lines #1638033: add support for httponly on Cookie.Morsel Reviewer: Benjamin ........
* Merged revisions 66240 via svnmerge fromAntoine Pitrou2008-09-051-0/+7
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66240 | antoine.pitrou | 2008-09-06 01:30:23 +0200 (sam., 06 sept. 2008) | 5 lines Issue #3535: zipfile couldn't read some zip files larger than 2GB. Reviewed by Amaury Forgeot d'Arc. ........
* compile _bytesio and _stringio into the binary and initalize stdio before ↵Benjamin Peterson2008-09-051-0/+5
| | | | | | site fixing #3279 Reviewer: Alexandre Vassalotti