mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 06:24:27 +08:00
15 lines
383 B
Python
15 lines
383 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
|
|
|
|
|
|
class Assertions(unittest.TestCase):
|
|
pass
|