1
0
forked from VimPlug/jedi
Files
jedi-fork/test/absolute_import/local_module.py
Laurens Van Houtven cb4acccfe5 More PEP8, minor cleanup
2013-06-22 09:54:18 +02:00

15 lines
438 B
Python

"""
This is a module that imports the *standard library* unittest,
despite there being a local "unittest" module. It specifies that it
wants the stdlib one with the ``absolute_import`` __future__ import.
The twisted equivalent of this module is ``twisted.trial._synctest``.
"""
from __future__ import absolute_import
import unittest # this is stdlib unittest, but jedi gets the local one
class Assertions(unittest.TestCase):
pass