Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: third_party/cherrypy/wsgiserver/__init__.py

Issue 9368042: Add CherryPy to third_party. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: '' Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 __all__ = ['HTTPRequest', 'HTTPConnection', 'HTTPServer',
2 'SizeCheckWrapper', 'KnownLengthRFile', 'ChunkedRFile',
3 'MaxSizeExceeded', 'NoSSLError', 'FatalSSLAlert',
4 'WorkerThread', 'ThreadPool', 'SSLAdapter',
5 'CherryPyWSGIServer',
6 'Gateway', 'WSGIGateway', 'WSGIGateway_10', 'WSGIGateway_u0',
7 'WSGIPathInfoDispatcher', 'get_ssl_adapter_class']
8
9 import sys
10 if sys.version_info < (3, 0):
11 from wsgiserver2 import *
12 else:
13 # Le sigh. Boo for backward-incompatible syntax.
14 exec('from .wsgiserver3 import *')
OLDNEW
« no previous file with comments | « third_party/cherrypy/scaffold/static/made_with_cherrypy_small.png ('k') | third_party/cherrypy/wsgiserver/ssl_builtin.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698