summaryrefslogtreecommitdiff
path: root/Python/symtable.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 56154-56264 via svnmerge fromGuido van Rossum2007-07-111-6/+22
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-8/+38
* Fix PyErr_Format() call (missing exception class).Walter Dörwald2007-06-111-3/+2
* Use PyErr_Format() directly instead ofWalter Dörwald2007-06-111-5/+3
* Simplify error formatting. Fix error message inWalter Dörwald2007-06-111-12/+12
* Simplify ste_repr().Walter Dörwald2007-06-111-7/+3
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-15/+15
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-2/+4
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-1/+1
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-48/+16
* Merged revisions 55225-55227,55229-55269 via svnmerge fromGuido van Rossum2007-05-111-0/+3
* Don't crash when nonlocal is used at module level (fixes SF#1705365)Nick Coghlan2007-04-231-5/+10
* Hide list comp variables and support set comprehensionsNick Coghlan2007-04-151-136/+209
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-0/+5
* Provisional implementation of PEP 3104.Jeremy Hylton2007-02-271-11/+66
* Make bytes_repr return a string containing a b"" literal.Georg Brandl2007-02-241-1/+2
* * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.Georg Brandl2007-02-091-5/+0
* Some more changes related to the new except syntax and semantics,Guido van Rossum2007-01-101-1/+2
* PEP 3107 - Function Annotations thanks to Tony LowndsNeal Norwitz2006-12-281-20/+53
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-271-0/+18
* Patch #1550786: ellipsis literal.Georg Brandl2006-09-061-2/+1
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-27/+1
* Fix set literals not being visited in symtable creation.Georg Brandl2006-08-281-0/+3
* Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up theBrett Cannon2006-08-251-3/+0
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-10/+14
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-3/+13
* Merge the rest of the trunk.Thomas Wouters2006-06-081-1/+20
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-11/+13
* No need to export PySTEntry_New, it is only used in symtable.cNeal Norwitz2006-02-281-1/+2
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-14/+30
* PEP 308 implementation, including minor refdocs and some testcases. ItThomas Wouters2006-02-271-0/+5
* Use Py_ssize_t to count theMartin v. Löwis2006-02-161-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-3/+5
* analyze_cells(): This no longer compiled under VC 7.1.Tim Peters2006-01-081-1/+2
* Fix icc warnings: conversion from "long" to "int" may lose significant bitsNeal Norwitz2006-01-081-10/+11
* Fix icc warnings: shadowing local variable (i) and complex is set but not use...Neal Norwitz2006-01-071-3/+2
* Bug #889500, fix line number on SyntaxWarning for global declarations.Neal Norwitz2005-12-191-7/+10
* Fix a few more ref leaks. Backport candidateNeal Norwitz2005-11-241-1/+3
* Last batch of ref leaks in new AST code.Neal Norwitz2005-11-191-4/+8
* Bring handling of genexpr in line with other anonymous scope namesNick Coghlan2005-11-161-4/+3
* Fix a lot of memory and ref leaks in error paths.Neal Norwitz2005-11-131-33/+75
* Do not pollute name block_ty, prefix with _Py_Neal Norwitz2005-10-241-3/+3
* Fix check_unoptimized() function. The only optimized namespaces areNeil Schemenauer2005-10-231-1/+1
* Fix private name mangling. The symtable also must do mangles so thatNeil Schemenauer2005-10-231-14/+30
* Fix a bunch of imports to use code.h instead of compile.h.Jeremy Hylton2005-10-211-1/+0
* ANSI-C-ify the placement of local var declarations.Armin Rigo2005-10-211-2/+4
* Merge ast-branch to headJeremy Hylton2005-10-201-63/+1178
* SF patch #872326: Generator expression implementationRaymond Hettinger2004-05-191-0/+2
* Fix for SF [ 734869 ] Lambda functions in list comprehensionsJeremy Hylton2003-05-211-0/+1
* Add a comment explaining the st_symbols cache.Jeremy Hylton2001-12-101-1/+15