diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-21 19:54:56 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-21 19:54:56 +0000 |
commit | 52b32b6d6af8f71bd3d8d7bc6df82ca836a56cb0 (patch) | |
tree | ca62f6a2bc2f207f7888e32ebc7ee924de3d0dd5 /Lib/test/test_extcall.py | |
parent | 88e7ebac4ca8153bdcd63b66b1748b0e0668d9c2 (diff) | |
download | cpython-git-52b32b6d6af8f71bd3d8d7bc6df82ca836a56cb0.tar.gz |
fix import
Diffstat (limited to 'Lib/test/test_extcall.py')
-rw-r--r-- | Lib/test/test_extcall.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py index d9598e7e54..8f6629b240 100644 --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -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 |