summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* Fix C99-ism, and add XXX to commentThomas Wouters2006-03-011-1/+1
* Reconst parameters that lost their const in the AST merge.Martin v. Löwis2006-03-011-1/+1
* Tabify and reflow some long lines.Jeremy Hylton2006-03-011-696/+702
* Add missing DECREF.Jeremy Hylton2006-03-011-1/+5
* Use %zd format characters for Py_ssize_t types.Thomas Wouters2006-03-011-6/+6
* Put back the essence of Jeremy's original XXX comment.Thomas Wouters2006-03-011-1/+3
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-015-191/+300
* Use Py_ssize_t for PyArg_UnpackTuple arguments.Martin v. Löwis2006-03-011-2/+2
* Don't pollute namespace as bad as before. All the types are static now.Neal Norwitz2006-02-281-152/+152
* Make 'as' an actual keyword when with's future statement is used. NotThomas Wouters2006-02-282-191/+195
* No need to export PySTEntry_New, it is only used in symtable.cNeal Norwitz2006-02-281-1/+2
* Updates to the with-statement:Guido van Rossum2006-02-282-6/+21
* Generally inehrit codeflags that are in PyCF_MASK, instead of writing it outThomas Wouters2006-02-281-4/+4
* Add some stats collection in debugging mode.Jeremy Hylton2006-02-281-3/+41
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-284-4/+10
* Use simple PyList to implement list of PyObject pointersJeremy Hylton2006-02-281-44/+20
* TabifyJeremy Hylton2006-02-281-84/+87
* Remove asdl_seq_APPEND() and simplify asdl seq implementation.Jeremy Hylton2006-02-282-69/+57
* Real arena implementationJeremy Hylton2006-02-281-62/+80
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-289-55/+180
* Regenerate.Martin v. Löwis2006-02-281-0/+2
* Check the return code for PyErr_Warn() when warning about raising stringBrett Cannon2006-02-271-4/+5
* PyErr_ProgramText(): Grrrrrr.Tim Peters2006-02-271-1/+1
* Clarify C-style exception handling with proper label name.Thomas Wouters2006-02-271-3/+3
* Fix assertions.Thomas Wouters2006-02-271-3/+3
* PEP 343 -- the with-statement.Guido van Rossum2006-02-277-628/+981
* Fix parsing of subscriptlist.Jeremy Hylton2006-02-271-4/+30
* Patch 1413181, by Gabriel Becedillas.Tim Peters2006-02-271-0/+4
* And some more cleanup.Thomas Wouters2006-02-271-2/+2
* Clean up from-import handling.Thomas Wouters2006-02-271-22/+21
* Simplify ast_for_trailer() in anticipation of more changes.Jeremy Hylton2006-02-271-17/+11
* Fix old not-reading-pep-308-right artifact.Thomas Wouters2006-02-271-1/+1
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-272-11/+12
* Fix assertion errors in debug build, brought on by PEP 308 patch.Thomas Wouters2006-02-271-1/+1
* Create _ast module.Martin v. Löwis2006-02-271-29/+345
* PEP 308 implementation, including minor refdocs and some testcases. ItThomas Wouters2006-02-275-520/+705
* Avoid reinitializing the types twice.Martin v. Löwis2006-02-271-0/+1
* Stop generating empty arrays.Martin v. Löwis2006-02-261-117/+38
* Oops, I forgot to check this in with the change to Grammar/Grammar.Neal Norwitz2006-02-261-16/+3
* Check whether there are flags.Martin v. Löwis2006-02-261-1/+1
* Fix iterating over cmpop_ty lists.Martin v. Löwis2006-02-261-2/+7
* Generate code to recursively copy an AST intoMartin v. Löwis2006-02-263-725/+1556
* Based on discussion with Martin and Thomas on python-checkinsNeal Norwitz2006-02-201-1/+1
* Fix compiler warning on amd64. We can't use zd here since this isNeal Norwitz2006-02-191-2/+2
* Fix compiler warning (int vs Py_ssize_t mismatchNeal Norwitz2006-02-191-1/+1
* Bug #801349: document that start/stop/step slice arguments can be NoneGeorg Brandl2006-02-191-1/+1
* Remove size constraints in SLICE opcodes.Martin v. Löwis2006-02-171-16/+11
* Move cast to suppress warning.Martin v. Löwis2006-02-161-2/+2
* Use Py_ssize_t to count theMartin v. Löwis2006-02-167-22/+24
* Use PyString_FromFormat for formatting error messages.Martin v. Löwis2006-02-161-42/+36