Commit 1cd3c12f authored by Stefan Behnel's avatar Stefan Behnel

test cases for 'import as'

parent 23c28eff
__doc__ = u"""
>>> import sys as sous
>>> import distutils.core as corey
>>> from copy import copy as copey
>>> sous is _sous
True
>>> corey is _corey
True
>>> copey is _copey
True
>>> _sous is not None
True
>>> _corey is not None
True
>>> _copey is not None
True
"""
import sys as _sous
import distutils.core as _corey
from copy import copy as _copey
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment