summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* 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
* #3660: Correct a reference leak in PyUnicode_AsEncodedString whenAmaury Forgeot d'Arc2008-09-051-2/+5
| | | | | | | | the encoder does not return a bytes object. Now test_unicode passes without leaking. Reviewer: Antoine Pitrou.
* Issue #3660 (part of): fix a memory leak in _pickle.Antoine Pitrou2008-09-051-0/+2
| | | | Patch by Amaury Forgeot d'Arc, review by me.
* #3773: Check for errors around the use of PyTokenizer_FindEncoding().Amaury Forgeot d'Arc2008-09-041-0/+3
| | | | reviewed by Brett Cannon.
* Issue #3160: the "bdist_wininst" distutils command didn't work.Antoine Pitrou2008-09-041-0/+2
| | | | Reviewed by Trent Nelson.
* Issue #1658: dict size is changing during iteration in tkinter.BaseWidget andGuilherme Polo2008-09-041-0/+3
| | | | | | tkinter.scrolledtext.ScrolledText. Reviewed by Amaury Forgeot d'Arc
* PyTokenizer_FindEncoding() always failed because it set the tokenizer stateBrett Cannon2008-09-041-0/+4
| | | | | | | | | with only a file pointer when it called fp_setreadl() which expected a file path. Changed fp_setreadl() to use either a file path or file descriptor (derived from the file pointer) to fix the issue. Closes issue 3594. Reviewed by Antoine Pitrou and Benjamin Peterson.
* Include a pointer to the pybsddb website with the 'bsddb has beenGregory P. Smith2008-09-041-0/+2
| | | | removed' note.
* clean up some more bsddb scrapsBenjamin Peterson2008-09-031-2/+2
|
* Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi moduleFacundo Batista2008-09-031-0/+4
| | | | | to the urlparse one. Added a DeprecationWarning in the old module, it will be deprecated in the future. Docs and tests updated.
* remove bsddbBenjamin Peterson2008-09-031-0/+2
|
* Issue #3696: Error parsing arguments on OpenBSD <= 4.4 and Cygwin.Antoine Pitrou2008-09-031-0/+5
| | | | Patch by Amaury Forgeot d'Arc, reviewed by me.
* Issue #3697: "Fatal Python error: Cannot recover from stack overflow"Antoine Pitrou2008-09-031-0/+5
| | | | | | | | could be easily encountered under Windows in debug mode when exercising the recursion limit checking code, due to bogus handling of recursion limit when USE_STACKCHEK was enabled. Reviewed by Amaury Forgeot d'Arc on IRC.
* merge 66184 to fix issue3110 to py3kJesse Noller2008-09-031-0/+3
|
* Merged revisions 66171 via svnmerge fromAmaury Forgeot d'Arc2008-09-021-0/+4
| | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r66171 | amaury.forgeotdarc | 2008-09-03 01:19:56 +0200 (mer., 03 sept. 2008) | 9 lines Issue 2975: when compiling multiple extension modules with visual studio 2008 from the same python instance, some environment variables (LIB, INCLUDE) would grow without limit. Tested with these statements: distutils.ccompiler.new_compiler().initialize() print os.environ['LIB'] But I don't know how to turn them into reliable unit tests. ........
* Add news item for #3719.Marc-André Lemburg2008-09-021-0/+3
|
* The _warnings module did not properly handle cases where strings were not beingBrett Cannon2008-09-021-0/+3
| | | | | | | | passed in as the message to use for a warning. Fixed along with making the code more robust against other errors where return values were not checked. Closes issue 3639. Code review by Benjamin Peterson.
* Merge in r66135. Doing also required removing a stale DeprecationWarning alongBrett Cannon2008-09-021-0/+3
| | | | | with moving warnings.catch_warnings() over to keyword-only parameters for its constructor (as documented in the 2.6 docs).
* remove the deprecation warnings for the old threading API; update the docsBenjamin Peterson2008-09-011-0/+2
| | | | Reviewer: Benjamin Peterson