summaryrefslogtreecommitdiff
path: root/Python/symtable.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 65715,65724,65726,65732,65736-65739,65775 via svnmerge fromBenjamin Peterson2008-08-171-4/+9
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-2/+2
* Merged revisions 62047 via svnmerge fromNeal Norwitz2008-03-311-5/+5
* Merged revisions 61404-61407 via svnmerge fromChristian Heimes2008-03-161-2/+3
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-22/+22
* Bug #1356: Avoid using the C99 keyword 'restrict'.Martin v. Löwis2007-10-291-4/+4
* Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter2007-08-311-7/+5
* Use unicode for error messages of duplicate argsNeal Norwitz2007-08-241-3/+2
* Merged revisions 56492-56752 via svnmerge fromGuido van Rossum2007-08-051-4/+4
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-2/+1
* 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