summaryrefslogtreecommitdiff
path: root/Python/symtable.c
Commit message (Expand)AuthorAgeFilesLines
...
* Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,...Benjamin Peterson2009-06-281-9/+1
* fix error handling of PyNumber_InPlaceOr #6000Benjamin Peterson2009-05-121-16/+26
* remove unused variableBenjamin Peterson2009-04-021-1/+0
* rewrite error handling to make senseBenjamin Peterson2009-04-021-3/+7
* fix ref leaksBenjamin Peterson2009-04-021-0/+2
* Merged revisions 70801,70809 via svnmerge fromJeremy Hylton2009-03-311-20/+94
* instead of hacking __locals__ in during bytecode generation, put it in the sy...Benjamin Peterson2009-03-031-2/+5
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* 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