mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	 78565b2216
			
		
	
	
		78565b2216
		
	
	
	
	
		
			
			svn+ssh://pythondev@svn.python.org/python/trunk ........ r73376 | benjamin.peterson | 2009-06-11 17:29:23 -0500 (Thu, 11 Jun 2009) | 1 line remove check for case handled in sub-function ........ r73393 | alexandre.vassalotti | 2009-06-12 13:56:57 -0500 (Fri, 12 Jun 2009) | 2 lines Clear reference to the static PyExc_RecursionErrorInst in _PyExc_Fini. ........ r73398 | alexandre.vassalotti | 2009-06-12 15:57:12 -0500 (Fri, 12 Jun 2009) | 3 lines Add const qualifier to PyErr_SetFromErrnoWithFilename and to PyErr_SetFromErrnoWithUnicodeFilename. ........ r73400 | alexandre.vassalotti | 2009-06-12 16:43:47 -0500 (Fri, 12 Jun 2009) | 2 lines Delete outdated make file for building the parser with MSVC 6. ........ r73404 | benjamin.peterson | 2009-06-12 20:40:00 -0500 (Fri, 12 Jun 2009) | 1 line keep the slice.step field as NULL if no step expression is given ........ r73405 | benjamin.peterson | 2009-06-12 22:46:30 -0500 (Fri, 12 Jun 2009) | 1 line prevent import statements from assigning to None ........ r73409 | benjamin.peterson | 2009-06-13 08:06:21 -0500 (Sat, 13 Jun 2009) | 1 line allow importing from a module named None if it has an 'as' clause ........ r73419 | benjamin.peterson | 2009-06-13 11:19:19 -0500 (Sat, 13 Jun 2009) | 1 line set Print.values to NULL if there are no values ........ r73420 | benjamin.peterson | 2009-06-13 12:08:53 -0500 (Sat, 13 Jun 2009) | 1 line give a better error message when deleting () ........ r73421 | benjamin.peterson | 2009-06-13 15:23:33 -0500 (Sat, 13 Jun 2009) | 1 line when no module is given in a 'from' relative import, make ImportFrom.module NULL ........ r73432 | amaury.forgeotdarc | 2009-06-14 16:20:40 -0500 (Sun, 14 Jun 2009) | 3 lines #6227: Because of a wrong indentation, the test was not testing what it should. Ensure that the snippet in doctest_aliases actually contains aliases. ........ r73457 | benjamin.peterson | 2009-06-16 18:13:09 -0500 (Tue, 16 Jun 2009) | 1 line add underscores ........ r73460 | benjamin.peterson | 2009-06-16 22:23:04 -0500 (Tue, 16 Jun 2009) | 1 line remove unused 'encoding' member from the compiler struct ........ r73485 | benjamin.peterson | 2009-06-19 17:07:47 -0500 (Fri, 19 Jun 2009) | 1 line remove duplicate test ........ r73486 | benjamin.peterson | 2009-06-19 17:09:17 -0500 (Fri, 19 Jun 2009) | 1 line add missing assertion #6313 ........ r73488 | benjamin.peterson | 2009-06-19 17:16:28 -0500 (Fri, 19 Jun 2009) | 1 line show that this one isn't used ........ r73489 | benjamin.peterson | 2009-06-19 17:21:12 -0500 (Fri, 19 Jun 2009) | 1 line use closures ........ r73501 | benjamin.peterson | 2009-06-21 18:01:07 -0500 (Sun, 21 Jun 2009) | 1 line don't need to add the name 'lambda' as assigned ........ r73502 | benjamin.peterson | 2009-06-21 18:03:36 -0500 (Sun, 21 Jun 2009) | 1 line remove tmpname support since it's no longer used ........ r73513 | benjamin.peterson | 2009-06-22 20:18:57 -0500 (Mon, 22 Jun 2009) | 1 line fix grammar ........ r73514 | benjamin.peterson | 2009-06-22 22:01:56 -0500 (Mon, 22 Jun 2009) | 1 line remove some unused symtable constants ........
		
			
				
	
	
		
			176 lines
		
	
	
	
		
			5.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			176 lines
		
	
	
	
		
			5.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| """
 | |
| Test the API of the symtable module.
 | |
| """
 | |
| import symtable
 | |
| import unittest
 | |
| 
 | |
| from test import support
 | |
| 
 | |
| 
 | |
| TEST_CODE = """
 | |
| import sys
 | |
| 
 | |
| glob = 42
 | |
| 
 | |
| class Mine:
 | |
|     instance_var = 24
 | |
|     def a_method(p1, p2):
 | |
|         pass
 | |
| 
 | |
| def spam(a, b, *var, **kw):
 | |
|     global bar
 | |
|     bar = 47
 | |
|     x = 23
 | |
|     glob
 | |
|     def internal():
 | |
|         return x
 | |
|     return internal
 | |
| 
 | |
| def foo():
 | |
|     pass
 | |
| 
 | |
| def namespace_test(): pass
 | |
| def namespace_test(): pass
 | |
| """
 | |
| 
 | |
| 
 | |
| def find_block(block, name):
 | |
|     for ch in block.get_children():
 | |
|         if ch.get_name() == name:
 | |
|             return ch
 | |
| 
 | |
| 
 | |
| class SymtableTest(unittest.TestCase):
 | |
| 
 | |
|     top = symtable.symtable(TEST_CODE, "?", "exec")
 | |
|     # These correspond to scopes in TEST_CODE
 | |
|     Mine = find_block(top, "Mine")
 | |
|     a_method = find_block(Mine, "a_method")
 | |
|     spam = find_block(top, "spam")
 | |
|     internal = find_block(spam, "internal")
 | |
|     foo = find_block(top, "foo")
 | |
| 
 | |
|     def test_type(self):
 | |
|         self.assertEqual(self.top.get_type(), "module")
 | |
|         self.assertEqual(self.Mine.get_type(), "class")
 | |
|         self.assertEqual(self.a_method.get_type(), "function")
 | |
|         self.assertEqual(self.spam.get_type(), "function")
 | |
|         self.assertEqual(self.internal.get_type(), "function")
 | |
| 
 | |
|     def test_optimized(self):
 | |
|         self.assertFalse(self.top.is_optimized())
 | |
|         self.assertFalse(self.top.has_exec())
 | |
| 
 | |
|         self.assertTrue(self.spam.is_optimized())
 | |
| 
 | |
|     def test_nested(self):
 | |
|         self.assertFalse(self.top.is_nested())
 | |
|         self.assertFalse(self.Mine.is_nested())
 | |
|         self.assertFalse(self.spam.is_nested())
 | |
|         self.assertTrue(self.internal.is_nested())
 | |
| 
 | |
|     def test_children(self):
 | |
|         self.assertTrue(self.top.has_children())
 | |
|         self.assertTrue(self.Mine.has_children())
 | |
|         self.assertFalse(self.foo.has_children())
 | |
| 
 | |
|     def test_lineno(self):
 | |
|         self.assertEqual(self.top.get_lineno(), 0)
 | |
|         self.assertEqual(self.spam.get_lineno(), 11)
 | |
| 
 | |
|     def test_function_info(self):
 | |
|         func = self.spam
 | |
|         self.assertEqual(func.get_parameters(), ("a", "b", "kw", "var"))
 | |
|         self.assertEqual(func.get_locals(),
 | |
|                          ("a", "b", "internal", "kw", "var", "x"))
 | |
|         self.assertEqual(func.get_globals(), ("bar", "glob"))
 | |
|         self.assertEqual(self.internal.get_frees(), ("x",))
 | |
| 
 | |
|     def test_globals(self):
 | |
|         self.assertTrue(self.spam.lookup("glob").is_global())
 | |
|         self.assertFalse(self.spam.lookup("glob").is_declared_global())
 | |
|         self.assertTrue(self.spam.lookup("bar").is_global())
 | |
|         self.assertTrue(self.spam.lookup("bar").is_declared_global())
 | |
|         self.assertFalse(self.internal.lookup("x").is_global())
 | |
|         self.assertFalse(self.Mine.lookup("instance_var").is_global())
 | |
| 
 | |
|     def test_local(self):
 | |
|         self.assertTrue(self.spam.lookup("x").is_local())
 | |
|         self.assertFalse(self.internal.lookup("x").is_local())
 | |
| 
 | |
|     def test_referenced(self):
 | |
|         self.assertTrue(self.internal.lookup("x").is_referenced())
 | |
|         self.assertTrue(self.spam.lookup("internal").is_referenced())
 | |
|         self.assertFalse(self.spam.lookup("x").is_referenced())
 | |
| 
 | |
|     def test_parameters(self):
 | |
|         for sym in ("a", "var", "kw"):
 | |
|             self.assertTrue(self.spam.lookup(sym).is_parameter())
 | |
|         self.assertFalse(self.spam.lookup("x").is_parameter())
 | |
| 
 | |
|     def test_symbol_lookup(self):
 | |
|         self.assertEqual(len(self.top.get_identifiers()),
 | |
|                          len(self.top.get_symbols()))
 | |
| 
 | |
|         self.assertRaises(KeyError, self.top.lookup, "not_here")
 | |
| 
 | |
|     def test_namespaces(self):
 | |
|         self.assertTrue(self.top.lookup("Mine").is_namespace())
 | |
|         self.assertTrue(self.Mine.lookup("a_method").is_namespace())
 | |
|         self.assertTrue(self.top.lookup("spam").is_namespace())
 | |
|         self.assertTrue(self.spam.lookup("internal").is_namespace())
 | |
|         self.assertTrue(self.top.lookup("namespace_test").is_namespace())
 | |
|         self.assertFalse(self.spam.lookup("x").is_namespace())
 | |
| 
 | |
|         self.assert_(self.top.lookup("spam").get_namespace() is self.spam)
 | |
|         ns_test = self.top.lookup("namespace_test")
 | |
|         self.assertEqual(len(ns_test.get_namespaces()), 2)
 | |
|         self.assertRaises(ValueError, ns_test.get_namespace)
 | |
| 
 | |
|     def test_assigned(self):
 | |
|         self.assertTrue(self.spam.lookup("x").is_assigned())
 | |
|         self.assertTrue(self.spam.lookup("bar").is_assigned())
 | |
|         self.assertTrue(self.top.lookup("spam").is_assigned())
 | |
|         self.assertTrue(self.Mine.lookup("a_method").is_assigned())
 | |
|         self.assertFalse(self.internal.lookup("x").is_assigned())
 | |
| 
 | |
|     def test_imported(self):
 | |
|         self.assertTrue(self.top.lookup("sys").is_imported())
 | |
| 
 | |
|     def test_name(self):
 | |
|         self.assertEqual(self.top.get_name(), "top")
 | |
|         self.assertEqual(self.spam.get_name(), "spam")
 | |
|         self.assertEqual(self.spam.lookup("x").get_name(), "x")
 | |
|         self.assertEqual(self.Mine.get_name(), "Mine")
 | |
| 
 | |
|     def test_class_info(self):
 | |
|         self.assertEqual(self.Mine.get_methods(), ('a_method',))
 | |
| 
 | |
|     def test_filename_correct(self):
 | |
|         ### Bug tickler: SyntaxError file name correct whether error raised
 | |
|         ### while parsing or building symbol table.
 | |
|         def checkfilename(brokencode):
 | |
|             try:
 | |
|                 symtable.symtable(brokencode, "spam", "exec")
 | |
|             except SyntaxError as e:
 | |
|                 self.assertEqual(e.filename, "spam")
 | |
|             else:
 | |
|                 self.fail("no SyntaxError for %r" % (brokencode,))
 | |
|         checkfilename("def f(x): foo)(")  # parse-time
 | |
|         checkfilename("def f(x): global x")  # symtable-build-time
 | |
| 
 | |
|     def test_eval(self):
 | |
|         symbols = symtable.symtable("42", "?", "eval")
 | |
| 
 | |
|     def test_single(self):
 | |
|         symbols = symtable.symtable("42", "?", "single")
 | |
| 
 | |
|     def test_exec(self):
 | |
|         symbols = symtable.symtable("def f(x): return x", "?", "exec")
 | |
| 
 | |
| 
 | |
| def test_main():
 | |
|     support.run_unittest(SymtableTest)
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     test_main()
 |