Commit 44fff776 authored by Antoine Pitrou's avatar Antoine Pitrou

Whitespace

parent 0373a106
import unittest
unittest.main('test.test_import')
\ No newline at end of file
unittest.main('test.test_import')
"""Test the binding of names when a circular import shares the same name as an
attribute."""
from .rebinding2 import util
\ No newline at end of file
from .rebinding2 import util
from .subpkg import util
from . import rebinding
util = util.util
\ No newline at end of file
util = util.util
"""Circular import involving a sub-package."""
from .subpkg import subpackage2
\ No newline at end of file
from .subpkg import subpackage2
#from .util import util
from .. import subpackage
\ No newline at end of file
from .. import subpackage
def util():
pass
\ No newline at end of file
pass
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