summaryrefslogtreecommitdiff
path: root/Lib/test/test_scope.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-1/+1
* Merged revisions 85562 via svnmerge fromBenjamin Peterson2010-10-161-0/+7
* Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* a...Florent Xicluna2010-03-191-11/+14
* use assert[Not]In where appropriateEzio Melotti2010-01-231-2/+2
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-11/+5
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-5/+11
* condense with assertRaisesBenjamin Peterson2009-07-021-13/+2
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-4/+4
* Global statements from one function leaked into parallel functions.Jeremy Hylton2009-03-311-0/+24
* don't use assert statementBenjamin Peterson2008-07-211-1/+1
* Issue2378: pdb would delete free variables when stepping into a class statement.Amaury Forgeot d'Arc2008-07-211-0/+18
* Prevent a crash with nested scopes, again caused by calling Py_DECREF when th...Amaury Forgeot d'Arc2008-02-161-0/+18
* Do not copy free variables to locals in class namespaces.Jeremy Hylton2007-02-261-0/+33
* Whitespace normalization.Tim Peters2006-11-031-1/+1
* Convert test_global, test_scope and test_grammar to unittest.Georg Brandl2006-10-281-335/+346
* Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation.Neil Schemenauer2006-07-091-0/+11
* Fix arigo's funky LOAD_NAME bug: implicit globals inside classes haveNeil Schemenauer2005-10-231-0/+9
* Merge ast-branch to headJeremy Hylton2005-10-201-44/+61
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* Add test for eval() w/ free variables.Jeremy Hylton2002-04-201-0/+10
* SF #506611, fix sys.setprofile(), sys.settrace() core dumpsNeal Norwitz2002-03-031-0/+4
* Don't call resetwarnings(). Be more restrictive in what we filter outGuido van Rossum2001-12-151-3/+1
* Undo inadvertent change to test_scope in previous checkinJeremy Hylton2001-12-131-2/+1
* Add test for SF bug [ #492403 ] exec() segfaults on closure's func_codeJeremy Hylton2001-12-131-2/+10
* Add test for local assigned to only in a nested list compJeremy Hylton2001-10-181-0/+18
* test_support should be imported directly, not via test.test_support.Tim Peters2001-09-251-1/+1
* silence warnings about import *Jeremy Hylton2001-08-071-0/+7
* Fix for SF bug [ #443866 ] Evaluating func_code causing core dumpJeremy Hylton2001-07-301-0/+13
* Remove now-unnecessary "from __future__ import nested_scopes" stmts.Tim Peters2001-07-121-8/+6
* SF patch 419176 from MvL; fixed bug 418977Jeremy Hylton2001-05-081-0/+20
* Fix 2.1 nested scopes crash reported by Evan SimpsonJeremy Hylton2001-04-271-0/+11
* Change error message raised when free variable is not yet bound. ItJeremy Hylton2001-04-131-1/+2
* Add tests for recent changes:Jeremy Hylton2001-03-211-0/+30
* Whitespace normalization.Tim Peters2001-03-161-3/+2
* Add test to verify that nested functions with free variables don'tJeremy Hylton2001-03-131-0/+23
* Test interaction of global and nested scopes -- thanks to Samuele Pedroni.Guido van Rossum2001-03-011-0/+65
* add from __future__ import nested_scopes to strings passed to compileJeremy Hylton2001-02-271-6/+12
* Preliminary support for future nested scopesJeremy Hylton2001-02-271-0/+2
* Add test for syntax error on "x = 1 + 1".Jeremy Hylton2001-02-191-9/+1
* Whitespace normalization.Tim Peters2001-02-151-4/+4
* update test cases for recent compiler changes: exec/import * in nestedJeremy Hylton2001-02-091-21/+64
* Whitespace normalization.Tim Peters2001-02-091-6/+5
* Fix test 9 (caught by ?!ng)Jeremy Hylton2001-02-051-1/+30
* Fix test for free ref to global. This test should have caught aJeremy Hylton2001-01-301-1/+1
* PEP 227 implementationJeremy Hylton2001-01-251-0/+249