| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | #4247: add "pass" examples to tutorial. | Georg Brandl | 2008-11-06 | 1 | -0/+33 |
| | | |||||
| * | Issue #4120: Exclude manifest from extension modules in VS2008. | Martin v. Löwis | 2008-11-06 | 3 | -1/+13 |
| | | |||||
| * | #4245: move Thread section to the top. | Georg Brandl | 2008-11-06 | 1 | -160/+160 |
| | | |||||
| * | #4267: small fixes in sqlite3 docs. | Georg Brandl | 2008-11-06 | 1 | -8/+7 |
| | | |||||
| * | #4268: Use correct module for two toplevel functions. | Georg Brandl | 2008-11-06 | 1 | -0/+1 |
| | | |||||
| * | #4167: fix markup glitches. | Georg Brandl | 2008-11-04 | 1 | -4/+4 |
| | | |||||
| * | Issue #4204: Fixed module build errors on FreeBSD 4. | Martin v. Löwis | 2008-11-04 | 6 | -26/+38 |
| | | |||||
| * | move a FileIO test to test_fileio | Benjamin Peterson | 2008-11-03 | 2 | -8/+9 |
| | | |||||
| * | clarify by splitting into multiple paragraphs | Benjamin Peterson | 2008-11-03 | 1 | -5/+9 |
| | | |||||
| * | Issue #3774: Fixed an error when create a Tkinter menu item without command | Hirokazu Yamamoto | 2008-11-03 | 2 | -11/+16 |
| | | | | | and then remove it. Written by Guilherme Polo (gpolo). | ||||
| * | #4048 make the parser module accept relative imports as valid | Benjamin Peterson | 2008-11-03 | 4 | -2/+7 |
| | | |||||
| * | 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 |
| | | |||||
