summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Make AST nodes pickleable.Georg Brandl2008-03-301-2/+27
* Fix error message -- "expects either 0 or 0 arguments"Georg Brandl2008-03-301-2/+4
* Make _fields attr for no fields consistent with _attributes attr.Georg Brandl2008-03-301-8/+3
* #2505: allow easier creation of AST nodes.Georg Brandl2008-03-301-22/+113
* Patch #2511: Give the "excepthandler" AST item proper attributes by making it...Georg Brandl2008-03-304-94/+122
* Properly check for consistency with the third argument ofGeorg Brandl2008-03-292-20/+27
* Fix a reference leak found by Georg, when compiling a class nested in another...Amaury Forgeot d'Arc2008-03-281-0/+1
* Silence a compilation warningAmaury Forgeot d'Arc2008-03-281-1/+1
* Patch #1810 by Thomas Lee, reviewed by myself:Georg Brandl2008-03-283-30/+2919
* Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings.Neal Norwitz2008-03-281-8/+8
* Build bots are working again - removing the hackChristian Heimes2008-03-271-1/+1
* Quick 'n dirty hack: Increase the magic by 2 to force a rebuild of pyc/pyo fi...Christian Heimes2008-03-271-1/+1
* Fix warnings about using char as an array subscript. This is not portableNeal Norwitz2008-03-271-8/+8
* C89 compliance: Microsoft compilers want variable declarations at the topAmaury Forgeot d'Arc2008-03-261-4/+2
* Initialize PyCompilerFlags cf_flags with 0Christian Heimes2008-03-262-0/+4
* Patch #2477: Added from __future__ import unicode_literalsChristian Heimes2008-03-264-19/+41
* Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,...Christian Heimes2008-03-262-1/+34
* Make Py3k warnings consistent w.r.t. punctuation; also respect theGeorg Brandl2008-03-254-10/+14
* Try to fix a bunch of compiler warnings on Win64.Neal Norwitz2008-03-251-2/+2
* Added quick hack for bzrChristian Heimes2008-03-241-2/+2
* Added quick hack for bzrChristian Heimes2008-03-241-1/+8
* Remove compiler warnings (on Alpha at least) about using chars asNeal Norwitz2008-03-231-5/+6
* #2358: add py3k warning to sys.exc_clear().Georg Brandl2008-03-211-1/+9
* The filter() function does support a None argument in Py3.0.Raymond Hettinger2008-03-191-7/+0
* Issue #2400: Allow relative imports to "import *".Martin v. Löwis2008-03-191-4/+0
* Backport of the print function, using a __future__ import.Eric Smith2008-03-183-4/+80
* Added a warning when -3 is enabled and None is passed to filter as the first ...David Wolever2008-03-181-0/+7
* Finish backporting new buffer API to Python 2.6. Left to do: memoryview obje...Travis E. Oliphant2008-03-181-0/+1
* Issue #2341: Add a Py3k warning when raising an exception that doesn'tGuido van Rossum2008-03-181-0/+9
* Remove our implementation of memmove() and strerror(); both are in the C89Brett Cannon2008-03-182-44/+0
* Clean up the Py3k warnings for non-BaseException-subclasses a bit. WeGuido van Rossum2008-03-181-4/+6
* - Issue #2371: Add a Py3k warning when catching an exception thatGuido van Rossum2008-03-181-0/+27
* Finished backporting PEP 3127, Integer Literal Support and Syntax.Eric Smith2008-03-171-6/+54
* Reformated lines > 79 chars.Eric Smith2008-03-171-8/+12
* Issue 2264: empty float presentation type needs to have at least one digit pa...Eric Smith2008-03-171-17/+61
* Handle memory allocation failure. Found by Adam OlsenNeal Norwitz2008-03-151-2/+3
* Add a warning for code like:Neal Norwitz2008-03-151-0/+8
* Speed up with statements by storing the __exit__ method on the stack instead ...Nick Coghlan2008-03-073-39/+58
* Issue#2238: some syntax errors from *args or **kwargs expressionsAmaury Forgeot d'Arc2008-03-051-0/+4
* compile.c always emits END_FINALLY after WITH_CLEANUP, so predict that inJeffrey Yasskin2008-03-031-0/+2
* More copyright year and version number bumpsv2.6a1Barry Warsaw2008-03-011-1/+1
* Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and i...Christian Heimes2008-02-261-154/+109
* Whitespace normalizationNeal Norwitz2008-02-261-6/+6
* Fix indentationNeal Norwitz2008-02-252-2/+2
* Add a little info to the 3k deprecation warnings about what to use instead.Neal Norwitz2008-02-241-4/+4
* map(None, ...) is not supported in 3.0.Neal Norwitz2008-02-241-3/+9
* MS Windows doesn't have mode_t but stat.st_mode is defined as unsigned short.Christian Heimes2008-02-231-0/+5
* Issue #2051 and patch from Alexander Belopolsky:Christian Heimes2008-02-232-15/+16
* Removed duplicate Py_CHARMASK define. It's already defined in Python.h.Eric Smith2008-02-231-8/+0
* Patch #1759: Backport of PEP 3129 class decoratorsChristian Heimes2008-02-235-1202/+1260