Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | rephrase has_key doc | Benjamin Peterson | 2008-10-31 | 2 | -1/+3 |
| | |||||
* | make sure the parser flags and passed onto the compiler | Benjamin Peterson | 2008-10-31 | 5 | -13/+65 |
| | | | | | This fixes "from __future__ import unicode_literals" in an exec statment See #4225 | ||||
* | move unprefixed error into .c file | Benjamin Peterson | 2008-10-30 | 2 | -2/+2 |
| | |||||
* | finish backporting binary literals and new octal literals docs | Benjamin Peterson | 2008-10-30 | 2 | -9/+12 |
| | |||||
* | backport bin() documentation | Benjamin Peterson | 2008-10-30 | 2 | -1/+11 |
| | |||||
* | Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient ↵ | Christian Heimes | 2008-10-30 | 2 | -2/+11 |
| | | | | initialization of PyFileIOObject struct members. | ||||
* | Issue #4176: Pickle would crash the interpreter when a __reduce__ function | Amaury Forgeot d'Arc | 2008-10-30 | 3 | -26/+59 |
| | | | | | | | | | 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. | ||||
* | Fixed a modulefinder crash on certain relative imports. | Thomas Heller | 2008-10-30 | 3 | -1/+22 |
| | |||||
* | Correct error message in io.open(): | Amaury Forgeot d'Arc | 2008-10-29 | 1 | -1/+1 |
| | | | | closefd=True is the only accepted value with a file name. | ||||
* | mention the version gettempdir() was added | Benjamin Peterson | 2008-10-29 | 1 | -0/+2 |
| | |||||
* | Fix one of the tests: it relied on being present in an "output test" in | Armin Rigo | 2008-10-28 | 1 | -7/+3 |
| | | | | | | 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(). | ||||
* | add forgotten test for r67030 | Benjamin Peterson | 2008-10-26 | 1 | -0/+21 |
| | |||||
* | fix __future__ imports when multiple features are given | Benjamin Peterson | 2008-10-26 | 3 | -5/+9 |
| | |||||
* | don't use a catch-all | Benjamin Peterson | 2008-10-25 | 1 | -1/+1 |
| | |||||
* | Typo fix. | Georg Brandl | 2008-10-25 | 1 | -1/+1 |
| | |||||
* | give a py3k warning when 'nonlocal' is used as a variable name | Benjamin Peterson | 2008-10-25 | 3 | -44/+34 |
| | |||||
* | only nonempty __slots__ don't work | Benjamin Peterson | 2008-10-23 | 1 | -2/+2 |
| | |||||
* | Use the correct names of the stateless codec functions (Fixes issue 4178). | Walter Dörwald | 2008-10-23 | 1 | -3/+3 |
| | |||||
* | Issue #4183: Some tests didn't run with pickle.HIGHEST_PROTOCOL. | Hirokazu Yamamoto | 2008-10-23 | 2 | -3/+3 |
| | |||||
* | fix #4150: pdb's up command didn't work for generators in post-mortem | Benjamin Peterson | 2008-10-22 | 3 | -6/+7 |
| | |||||
* | and another typo... | Benjamin Peterson | 2008-10-22 | 1 | -2/+1 |
| | |||||
* | fix a few typos | Benjamin Peterson | 2008-10-22 | 1 | -7/+7 |
| | |||||
* | add NEWs note for last change | Benjamin Peterson | 2008-10-21 | 1 | -0/+3 |
| | |||||
* | return ArgInfo from inspect.getargvalues #4092 | Benjamin Peterson | 2008-10-21 | 1 | -1/+1 |
| | |||||
* | #4157 move two test functions out of platform.py. | Amaury Forgeot d'Arc | 2008-10-21 | 2 | -33/+34 |
| | | | | | | Turn them into unit tests, and correct an obvious typo: (("a", "b") ("c", "d") ("e", "f")) compiles even with the missing commas, but does not execute very well... | ||||
* | make sure to call iteritems() | Benjamin Peterson | 2008-10-21 | 1 | -3/+1 |
| | |||||
* | - install versioned manpage | Matthias Klose | 2008-10-21 | 1 | -1/+1 |
| | |||||
* | Fixed #4062, added import for _ast.__version__ to ast to match the ↵ | Armin Ronacher | 2008-10-20 | 1 | -0/+1 |
| | | | | documented behavior. | ||||
* | mention -n | Benjamin Peterson | 2008-10-19 | 1 | -2/+2 |
| | |||||
* | fix compiler warning | Benjamin Peterson | 2008-10-19 | 2 | -2/+2 |
| | |||||
* | Fixed #4067 by implementing _attributes and _fields for the AST root node. | Armin Ronacher | 2008-10-19 | 2 | -0/+36 |
| | |||||
* | Fix duplicate word. | Georg Brandl | 2008-10-17 | 1 | -1/+1 |
| | |||||
* | clarify CALL_FUNCTION #4141 | Benjamin Peterson | 2008-10-17 | 2 | -1/+3 |
| | |||||
* | 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 |
| | | | | made win32_chdir, win32_wchdir static. | ||||
* | Merged revisions 66805,66841,66860,66884-66886,66893,66907,66910 via ↵ | Benjamin Peterson | 2008-10-15 | 8 | -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 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 |
| |