summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
Commit message (Expand)AuthorAgeFilesLines
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-13/+6
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-52/+83
* INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).Neal Norwitz2006-03-171-1/+0
* Get rid of last vestiges of BINARY_DIVIDE.Neal Norwitz2006-03-161-6/+0
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-19/+4
* Fix SF bug #1448804 and ad a test to ensure that all subscript operations con...Nick Coghlan2006-03-131-24/+29
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-3/+1
* SF bug 1442442: LIST_APPEND optimization got lost in the AST merge.Neal Norwitz2006-03-031-3/+4
* Fix refleak if from __future__ import was not firstNeal Norwitz2006-03-021-0/+1
* Update known issues to reflect realityNeal Norwitz2006-03-021-4/+1
* Patch #1440601: Add col_offset attribute to AST nodes.Martin v. Löwis2006-03-011-2/+2
* Tabify and reflow some long lines.Jeremy Hylton2006-03-011-696/+702
* Generally inehrit codeflags that are in PyCF_MASK, instead of writing it outThomas Wouters2006-02-281-4/+4
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-281-0/+2
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-0/+27
* 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-271-4/+162
* PEP 308 implementation, including minor refdocs and some testcases. ItThomas Wouters2006-02-271-0/+26
* Merge ssize_t branch.Martin v. Löwis2006-02-151-9/+13
* Fix icc warnings: single bit fields should be unsigned, shadowing local varia...Neal Norwitz2006-01-071-16/+16
* Adjust usage of compiler_use_new_block to its return type.Martin v. Löwis2006-01-021-2/+2
* fixed compilation with an ordinary C89 compilerFredrik Lundh2005-12-181-2/+1
* Fix Armin's bug 1333982. He found it, he didn't created it :-)Neal Norwitz2005-12-181-9/+1
* Handle more error conditions with SystemErrorNeal Norwitz2005-12-181-8/+22
* Set MemoryError when alloc failsNeal Norwitz2005-12-181-3/+11
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-171-11/+14
* Simplify logic for handling import *Neal Norwitz2005-12-061-6/+3
* Fix a few more ref leaks. Backport candidateNeal Norwitz2005-11-241-0/+2
* Fix a few more memory leaksNeal Norwitz2005-11-201-0/+3
* Last batch of ref leaks in new AST code.Neal Norwitz2005-11-191-25/+50
* Correctly handle identifiers for anonymous scopes and align genexpr name with...Nick Coghlan2005-11-161-11/+17
* Fix a lot of memory and ref leaks in error paths.Neal Norwitz2005-11-131-9/+35
* make internal method staticNeal Norwitz2005-11-131-1/+1
* Ensure that compiler_exit_scope() is called as necessary to free memoryNeil Schemenauer2005-10-251-10/+18
* Fix problem handling EXTENDED_ARGs from SF bug # 1333982Neal Norwitz2005-10-231-1/+30
* cleanup a bit and reuse instrsize (instruction size). working towards fixing...Neal Norwitz2005-10-231-30/+24
* Remove unnecessary local variable.Neil Schemenauer2005-10-231-3/+2
* Fix private name mangling. The symtable also must do mangles so thatNeil Schemenauer2005-10-231-4/+16
* Use PyTuple_Pack instead of Py_BuildValue.Neil Schemenauer2005-10-231-2/+1
* Fix arigo's funky LOAD_NAME bug: implicit globals inside classes haveNeil Schemenauer2005-10-231-1/+2
* Don't stop generating code for import statements after the first "import as"Neil Schemenauer2005-10-231-2/+3
* Use <lamba> as the function name for lambdas (matches old compiler).Neil Schemenauer2005-10-211-1/+1
* ANSI-C-ify the placement of local var declarations.Armin Rigo2005-10-211-1/+2
* Merge ast-branch to headJeremy Hylton2005-10-201-5613/+2880
* com_yield_expr(): Squash new compiler wng about unreferenced local.Tim Peters2005-08-031-1/+0
* PEP 342 implementation. Per Guido's comments, the generator throw()Phillip J. Eby2005-08-021-12/+64
* Fix signedness of various char variables to stop causing a warning under gcc 4.Brett Cannon2005-06-251-1/+1
* Allow classes to be defined with empty parentheses. This means thatBrett Cannon2005-03-051-2/+3
* Silence a gcc warning about putting in parentheses around && expressions mixedBrett Cannon2005-03-031-5/+6