summaryrefslogtreecommitdiff
path: root/Python/symtable.c
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* PySymtableEntry_New(): I'm not sure what this routine is doing, but itTim Peters2001-12-081-0/+1
* SF bug #488687 reported by Neal NorwitzJeremy Hylton2001-12-041-0/+1
* ste_repr(): Conversion of sprintf() to PyOS_snprintf() for bufferBarry Warsaw2001-11-281-4/+5
* Add optional docstrings to member descriptors. For backwardsGuido van Rossum2001-09-201-9/+20
* Merging the gen-branch into the main line, at Guido's direction. Yay!Tim Peters2001-06-181-0/+1
* Improved __future__ parser; still more to doJeremy Hylton2001-02-271-0/+1
* Preliminary support for future nested scopesJeremy Hylton2001-02-271-1/+1
* Fix for bug 133489: compiler leaks memoryJeremy Hylton2001-02-231-3/+5
* Relax the rules for using 'from ... import *' and exec in the presenceJeremy Hylton2001-02-091-0/+147