]> granicus.if.org Git - python/commitdiff
fix import
authorBenjamin Peterson <benjamin@python.org>
Sun, 21 Mar 2010 19:54:56 +0000 (19:54 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 21 Mar 2010 19:54:56 +0000 (19:54 +0000)
Lib/test/test_extcall.py

index d9598e7e54a5121573105c2aa0b3d7995490aaeb..8f6629b2400b0efc7f89cfa2dc458327f47b28fb 100644 (file)
@@ -1,7 +1,5 @@
 # -*- coding: utf-8 -*-
 
-import sys
-
 """Doctest for method/function calls.
 
 We're going the use these types for extra testing
@@ -274,7 +272,10 @@ the function call setup. See <http://bugs.python.org/issue2016>.
     1 2
 """
 
+__test__ = {"extcall" : __doc__}
+
 import unittest
+import sys
 from test import test_support