[Python-3000-checkins] r67010 - python/branches/py3k/Lib/test/test_grammar.py

benjamin.peterson python-3000-checkins at python.org
Sat Oct 25 00:16:39 CEST 2008


Author: benjamin.peterson
Date: Sat Oct 25 00:16:39 2008
New Revision: 67010

Log:
add grammar tests for nonlocal

Modified:
   python/branches/py3k/Lib/test/test_grammar.py

Modified: python/branches/py3k/Lib/test/test_grammar.py
==============================================================================
--- python/branches/py3k/Lib/test/test_grammar.py	(original)
+++ python/branches/py3k/Lib/test/test_grammar.py	Sat Oct 25 00:16:39 2008
@@ -485,6 +485,14 @@
         global a, b
         global one, two, three, four, five, six, seven, eight, nine, ten
 
+    def testNonlocal(self):
+        # 'nonlocal' NAME (',' NAME)*
+        x = 0
+        y = 0
+        def f():
+            nonlocal x
+            nonlocal x, y
+
     def testAssert(self):
         # assert_stmt: 'assert' test [',' test]
         assert 1


More information about the Python-3000-checkins mailing list