| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #4091: Install pythonxy.dll in system32 again. | Martin v. Löwis | 2008-10-17 | 2 | -3/+3 |
|
|
* | fix more possible ref leaks in _json and use Py_CLEAR | Benjamin Peterson | 2008-10-16 | 1 | -2/+4 |
|
|
* | #4083: add "as" to except handler grammar as per PEP 3110. | Georg Brandl | 2008-10-16 | 1 | -1/+1 |
|
|
* | part of #4012: kill off old name "processing". | Georg Brandl | 2008-10-16 | 1 | -5/+5 |
|
|
* | fix possible ref leak | Benjamin Peterson | 2008-10-16 | 1 | -2/+2 |
|
|
* | #4131: FF3 doesn't write cookies.txt files. | Georg Brandl | 2008-10-16 | 1 | -0/+5 |
|
|
* | check for error conditions in _json #3623 | Benjamin Peterson | 2008-10-16 | 2 | -3/+12 |
|
|
* | Add more TOC to the whatsnew index page. | Georg Brandl | 2008-10-16 | 1 | -1/+1 |
|
|
* | Fix wording (2.6.1 backport candidate) | Andrew M. Kuchling | 2008-10-16 | 1 | -2/+3 |
|
|
* | use new showwarnings signature for idle #3391 | Benjamin Peterson | 2008-10-16 | 2 | -6/+11 |
|
|
* | document that deque indexing is O(n) #4123 | Benjamin Peterson | 2008-10-16 | 1 | -1/+3 |
|
|
* | removed unused _PyUnicode_FromFileSystemEncodedObject. | Hirokazu Yamamoto | 2008-10-16 | 1 | -6/+2 |
|
|
* | Merged revisions 66805,66841,66860,66884-66886,66893,66907,66910 via svnmerge... | Benjamin Peterson | 2008-10-15 | 8 | -53/+248 |
|
|
* | add a much requested newline | Benjamin Peterson | 2008-10-15 | 1 | -1/+2 |
|
|
* | support the optional line argument for idle | Benjamin Peterson | 2008-10-15 | 1 | -1/+2 |
|
|
* | don't recurse into directories that start with '.' | Benjamin Peterson | 2008-10-15 | 1 | -1/+2 |
|
|
* | easter egg | Skip Montanaro | 2008-10-15 | 1 | -0/+4 |
|
|
* | remove set compat cruft | Benjamin Peterson | 2008-10-14 | 2 | -12/+0 |
|
|
* | #4122: On Windows, Py_UNICODE_ISSPACE cannot be used in an extension module: | Amaury Forgeot d'Arc | 2008-10-14 | 3 | -1/+11 |
|
|
* | document how to disable fixers | Benjamin Peterson | 2008-10-13 | 1 | -6/+10 |
|
|
* | Issue #4018: Disable "for me" installations on Vista. | Martin v. Löwis | 2008-10-13 | 2 | -3/+7 |
|
|
* | give poplib a real test suite | Benjamin Peterson | 2008-10-11 | 1 | -23/+267 |
|
|
* | PyGILState_Acquire -> PyGILState_Ensure | Benjamin Peterson | 2008-10-10 | 1 | -3/+3 |
|
|
* | talk about how you can unzip with zip | Benjamin Peterson | 2008-10-10 | 1 | -0/+12 |
|
|
* | fix a small typo | Benjamin Peterson | 2008-10-10 | 1 | -2/+2 |
|
|
* | Typo: "ThreadError" is the name in the C source. | Armin Rigo | 2008-10-10 | 1 | -1/+1 |
|
|
* | - Makefile.pre.in(PROFILE_TASK): search files in srcdir | Matthias Klose | 2008-10-10 | 1 | -2/+2 |
|
|
* | update paragraph about __future__ for 2.6 | Benjamin Peterson | 2008-10-09 | 1 | -4/+5 |
|
|
* | r66862 contained memory leak. | Hirokazu Yamamoto | 2008-10-09 | 1 | -1/+3 |
|
|
* | On windows, os.chdir given unicode was not working if GetCurrentDirectoryW | Hirokazu Yamamoto | 2008-10-09 | 2 | -1/+8 |
|
|
* | quiet sphinx warnings | Benjamin Peterson | 2008-10-08 | 4 | -5/+5 |
|
|
* | Make all whatsnew docs accessible. | Georg Brandl | 2008-10-08 | 5 | -16/+28 |
|
|
* | #3935: properly support list subclasses in the C impl. of bisect. | Georg Brandl | 2008-10-08 | 3 | -2/+15 |
|
|
* | #4058: fix some whatsnew markup. | Georg Brandl | 2008-10-08 | 1 | -173/+173 |
|
|
* | #4059: patch up some sqlite docs. | Georg Brandl | 2008-10-08 | 1 | -52/+134 |
|
|
* | Note how bytes alias is expected to be used | Andrew M. Kuchling | 2008-10-08 | 1 | -0/+14 |
|
|
* | #4069: aSet.remove(otherSet) would always report the empty frozenset([]) as t... | Amaury Forgeot d'Arc | 2008-10-07 | 3 | -4/+23 |
|
|
* | more intensive test on dbm. | Hirokazu Yamamoto | 2008-10-07 | 1 | -8/+10 |
|
|
* | save/restore stdout/stderr instead of relying on __*__ versions | Skip Montanaro | 2008-10-07 | 1 | -2/+4 |
|
|
* | Pay attention to -R entries in LDFLAGS. | Skip Montanaro | 2008-10-07 | 1 | -1/+2 |
|
|
* | Simplify individual tests by defining setUp and tearDown methods. | Skip Montanaro | 2008-10-07 | 1 | -61/+27 |
|
|
* | Add the 'patchcheck' build target to .PHONY. | Brett Cannon | 2008-10-06 | 2 | -1/+6 |
|
|
* | Issue #4014: Don't claim that Python has an Alpha release status, in addition | Martin v. Löwis | 2008-10-06 | 2 | -1/+3 |
|
|
* | Per Greg Ward, optparse is no longer being externally maintained. | Andrew M. Kuchling | 2008-10-06 | 1 | -10/+2 |
|
|
* | More strict test. Consider the case sys.executable itself is symlink. | Hirokazu Yamamoto | 2008-10-06 | 1 | -4/+5 |
|
|
* | Added the test for issue3762. | Hirokazu Yamamoto | 2008-10-06 | 1 | -0/+15 |
|
|
* | #1415508 from Rocky Bernstein: add docstrings for enable_interspersed_args(),... | Andrew M. Kuchling | 2008-10-05 | 1 | -0/+10 |
|
|
* | fix typo | Benjamin Peterson | 2008-10-04 | 1 | -1/+1 |
|
|
* | Punctuation fix; expand dict.update docstring to be clearer | Andrew M. Kuchling | 2008-10-04 | 1 | -4/+6 |
|
|
* | Merged revisions 66707,66775,66782 via svnmerge from | Benjamin Peterson | 2008-10-04 | 6 | -11/+2833 |
|
|