aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/twisted/internet/test/test_inlinecb.py
blob: 7b818d2dd735ec48d3b135d8c0d229664f91b276 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
Conditional import of C{inlinecb_tests} for Python 2.5 and greater.
"""
import sys

__all__ = ['NonLocalExitTests']

if sys.version_info[:2] >= (2, 5):
    from twisted.internet.test.inlinecb_tests import NonLocalExitTests