~certify-web-dev/twisted/certify-trunk

« back to all changes in this revision

Viewing changes to twisted/web2/channel/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-01-17 14:52:35 UTC
  • mfrom: (1.1.5 upstream) (2.1.2 etch)
  • Revision ID: james.westby@ubuntu.com-20070117145235-btmig6qfmqfen0om
Tags: 2.5.0-0ubuntu1
New upstream version, compatible with python2.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- test-case-name: twisted.web2.test.test_cgi,twisted.web2.test.test_http -*-
 
2
# See LICENSE for details.
 
3
 
 
4
"""
 
5
Various backend channel implementations for web2.
 
6
"""
 
7
from twisted.web2.channel.cgi import startCGI
 
8
from twisted.web2.channel.scgi import SCGIFactory
 
9
from twisted.web2.channel.http import HTTPFactory
 
10
from twisted.web2.channel.fastcgi import FastCGIFactory
 
11
 
 
12
__all__ = ['startCGI', 'SCGIFactory', 'HTTPFactory', 'FastCGIFactory']