[Python-checkins] r79232 - python/trunk/Lib/test/test_extcall.py

benjamin.peterson python-checkins at python.org
Sun Mar 21 20:54:56 CET 2010


Author: benjamin.peterson
Date: Sun Mar 21 20:54:56 2010
New Revision: 79232

Log:
fix import

Modified:
   python/trunk/Lib/test/test_extcall.py

Modified: python/trunk/Lib/test/test_extcall.py
==============================================================================
--- python/trunk/Lib/test/test_extcall.py	(original)
+++ python/trunk/Lib/test/test_extcall.py	Sun Mar 21 20:54:56 2010
@@ -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 @@
     1 2
 """
 
+__test__ = {"extcall" : __doc__}
+
 import unittest
+import sys
 from test import test_support
 
 


More information about the Python-checkins mailing list