summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* part of #4012: kill off old name "processing".Georg Brandl2008-10-161-5/+5
|
* fix possible ref leakBenjamin Peterson2008-10-161-2/+2
|
* #4131: FF3 doesn't write cookies.txt files.Georg Brandl2008-10-161-0/+5
|
* check for error conditions in _json #3623Benjamin Peterson2008-10-162-3/+12
|
* Add more TOC to the whatsnew index page.Georg Brandl2008-10-161-1/+1
|
* Fix wording (2.6.1 backport candidate)Andrew M. Kuchling2008-10-161-2/+3
|
* use new showwarnings signature for idle #3391Benjamin Peterson2008-10-162-6/+11
|
* document that deque indexing is O(n) #4123Benjamin Peterson2008-10-161-1/+3
|
* removed unused _PyUnicode_FromFileSystemEncodedObject.Hirokazu Yamamoto2008-10-161-6/+2
| | | | made win32_chdir, win32_wchdir static.
* Merged revisions 66805,66841,66860,66884-66886,66893,66907,66910 via ↵Benjamin Peterson2008-10-158-53/+248
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r66805 | benjamin.peterson | 2008-10-04 20:11:02 -0500 (Sat, 04 Oct 2008) | 1 line mention what the fixes directory is for ........ r66841 | benjamin.peterson | 2008-10-07 17:48:12 -0500 (Tue, 07 Oct 2008) | 1 line use assertFalse and assertTrue ........ r66860 | benjamin.peterson | 2008-10-08 16:05:07 -0500 (Wed, 08 Oct 2008) | 1 line instead of abusing the pattern matcher, use start_tree to find a next binding ........ r66884 | benjamin.peterson | 2008-10-13 15:50:30 -0500 (Mon, 13 Oct 2008) | 1 line don't print tokens to stdout when -v is given ........ r66885 | benjamin.peterson | 2008-10-13 16:28:57 -0500 (Mon, 13 Oct 2008) | 1 line add the -x option to disable fixers ........ r66886 | benjamin.peterson | 2008-10-13 16:33:53 -0500 (Mon, 13 Oct 2008) | 1 line cut down on some crud ........ r66893 | benjamin.peterson | 2008-10-14 17:16:54 -0500 (Tue, 14 Oct 2008) | 1 line add an optional set literal fixer ........ r66907 | benjamin.peterson | 2008-10-15 16:59:41 -0500 (Wed, 15 Oct 2008) | 1 line don't write backup files by default ........ r66910 | benjamin.peterson | 2008-10-15 17:43:10 -0500 (Wed, 15 Oct 2008) | 1 line add the -n option; it stops backupfiles from being written ........
* add a much requested newlineBenjamin Peterson2008-10-151-1/+2
|
* support the optional line argument for idleBenjamin Peterson2008-10-151-1/+2
|
* don't recurse into directories that start with '.'Benjamin Peterson2008-10-151-1/+2
|
* easter eggSkip Montanaro2008-10-151-0/+4
|
* remove set compat cruftBenjamin Peterson2008-10-142-12/+0
|
* #4122: On Windows, Py_UNICODE_ISSPACE cannot be used in an extension module:Amaury Forgeot d'Arc2008-10-143-1/+11
| | | | | | compilation fails with "undefined reference to _Py_ascii_whitespace" Will backport to 2.6.
* document how to disable fixersBenjamin Peterson2008-10-131-6/+10
|
* Issue #4018: Disable "for me" installations on Vista.Martin v. Löwis2008-10-132-3/+7
|
* give poplib a real test suiteBenjamin Peterson2008-10-111-23/+267
| | | | #4088 from Giampaolo Rodola'x
* PyGILState_Acquire -> PyGILState_EnsureBenjamin Peterson2008-10-101-3/+3
|
* talk about how you can unzip with zipBenjamin Peterson2008-10-101-0/+12
|
* fix a small typoBenjamin Peterson2008-10-101-2/+2
|
* Typo: "ThreadError" is the name in the C source.Armin Rigo2008-10-101-1/+1
|
* - Makefile.pre.in(PROFILE_TASK): search files in srcdirMatthias Klose2008-10-101-2/+2
|
* update paragraph about __future__ for 2.6Benjamin Peterson2008-10-091-4/+5
|
* r66862 contained memory leak.Hirokazu Yamamoto2008-10-091-1/+3
|
* On windows, os.chdir given unicode was not working if GetCurrentDirectoryWHirokazu Yamamoto2008-10-092-1/+8
| | | | | returned a path longer than MAX_PATH. (But It's doubtful this code path is really executed because I cannot move to such directory on win2k)
* quiet sphinx warningsBenjamin Peterson2008-10-084-5/+5
|
* Make all whatsnew docs accessible.Georg Brandl2008-10-085-16/+28
|
* #3935: properly support list subclasses in the C impl. of bisect.Georg Brandl2008-10-083-2/+15
| | | | Patch reviewed by Raymond.
* #4058: fix some whatsnew markup.Georg Brandl2008-10-081-173/+173
|
* #4059: patch up some sqlite docs.Georg Brandl2008-10-081-52/+134
|
* Note how bytes alias is expected to be usedAndrew M. Kuchling2008-10-081-0/+14
|
* #4069: aSet.remove(otherSet) would always report the empty frozenset([]) as ↵Amaury Forgeot d'Arc2008-10-073-4/+23
| | | | | | | | the missing key. Now it correctly refers to the initial otherset. Reviewed by Raymond. Will backport to 2.6.
* more intensive test on dbm.Hirokazu Yamamoto2008-10-071-8/+10
|
* save/restore stdout/stderr instead of relying on __*__ versionsSkip Montanaro2008-10-071-2/+4
|
* Pay attention to -R entries in LDFLAGS.Skip Montanaro2008-10-071-1/+2
|
* Simplify individual tests by defining setUp and tearDown methods.Skip Montanaro2008-10-071-61/+27
|
* Add the 'patchcheck' build target to .PHONY.Brett Cannon2008-10-062-1/+6
| | | | Re-closes issue 3758. Thanks to Ralph Corderoy for the catch.
* Issue #4014: Don't claim that Python has an Alpha release status, in additionMartin v. Löwis2008-10-062-1/+3
| | | | to claiming it is Mature.
* Per Greg Ward, optparse is no longer being externally maintained.Andrew M. Kuchling2008-10-061-10/+2
| | | | | I'll look at the bugs in the Optik bug tracker and copy them to the Python bug tracker if they're still relevant.
* More strict test. Consider the case sys.executable itself is symlink.Hirokazu Yamamoto2008-10-061-4/+5
|
* Added the test for issue3762.Hirokazu Yamamoto2008-10-061-0/+15
|
* #1415508 from Rocky Bernstein: add docstrings for ↵Andrew M. Kuchling2008-10-051-0/+10
| | | | enable_interspersed_args(), disable_interspersed_args()
* fix typoBenjamin Peterson2008-10-041-1/+1
|
* Punctuation fix; expand dict.update docstring to be clearerAndrew M. Kuchling2008-10-041-4/+6
|
* Merged revisions 66707,66775,66782 via svnmerge fromBenjamin Peterson2008-10-046-11/+2833
| | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r66707 | benjamin.peterson | 2008-09-30 18:27:10 -0500 (Tue, 30 Sep 2008) | 1 line fix #4001: fix_imports didn't check for __init__.py before converting to relative imports ........ r66775 | collin.winter | 2008-10-03 12:08:26 -0500 (Fri, 03 Oct 2008) | 4 lines Add an alternative iterative pattern matching system that, while slower, correctly parses files that cause the faster recursive pattern matcher to fail with a recursion error. lib2to3 falls back to the iterative matcher if the recursive one fails. Fixes http://bugs.python.org/issue2532. Thanks to Nick Edds. ........ r66782 | benjamin.peterson | 2008-10-03 17:51:36 -0500 (Fri, 03 Oct 2008) | 1 line add Victor Stinner's fixer for os.getcwdu -> os.getcwd #4023 ........
* #4041: don't refer to removed and outdated modules.Georg Brandl2008-10-041-4/+2
|
* silence Sphinx warningBenjamin Peterson2008-10-041-0/+1
|
* Add What's New for 2.7Andrew M. Kuchling2008-10-042-1/+139
|