1
# -*- test-case-name: twisted.test.test_internet -*-
2
# $Id: default.py,v 1.90 2004/01/06 22:35:22 warner Exp $
4
# Copyright (c) 2001-2004 Twisted Matrix Laboratories.
5
# See LICENSE for details.
9
Deprecated module that used to contain SelectReactor and PosixReactorBase
11
Maintainer: Itamar Shtull-Trauring
15
warnings.warn("twisted.internet.default is deprecated. Use posixbase or selectreactor instead.", category=DeprecationWarning)
18
from posixbase import PosixReactorBase
19
from selectreactor import SelectReactor, install
21
__all__ = ["install", "PosixReactorBase", "SelectReactor"]