merge 3.2
This commit is contained in:
commit
c095956ca5
|
@ -172,7 +172,7 @@ Server Objects
|
|||
|
||||
.. method:: BaseServer.shutdown()
|
||||
|
||||
Tell the :meth:`serve_forever` loop to stop and waits until it does.
|
||||
Tell the :meth:`serve_forever` loop to stop and wait until it does.
|
||||
|
||||
|
||||
.. attribute:: BaseServer.address_family
|
||||
|
|
|
@ -80,10 +80,10 @@ class SymtableTest(unittest.TestCase):
|
|||
|
||||
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(sorted(func.get_parameters()), ["a", "b", "kw", "var"])
|
||||
expected = ["a", "b", "internal", "kw", "var", "x"]
|
||||
self.assertEqual(sorted(func.get_locals()), expected)
|
||||
self.assertEqual(sorted(func.get_globals()), ["bar", "glob"])
|
||||
self.assertEqual(self.internal.get_frees(), ("x",))
|
||||
|
||||
def test_globals(self):
|
||||
|
|
Loading…
Reference in New Issue