mirror of
https://github.com/python/cpython.git
synced 2025-07-28 21:55:21 +00:00
fix import
This commit is contained in:
parent
88e7ebac4c
commit
52b32b6d6a
1 changed files with 3 additions and 2 deletions
|
@ -1,7 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
import sys
|
|
||||||
|
|
||||||
"""Doctest for method/function calls.
|
"""Doctest for method/function calls.
|
||||||
|
|
||||||
We're going the use these types for extra testing
|
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
|
1 2
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
__test__ = {"extcall" : __doc__}
|
||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
|
import sys
|
||||||
from test import test_support
|
from test import test_support
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue