update to CherryPy 3.0.0

from Will Maier <willmaier at ml1.net>

tested and ok by maintainer Joerg Zinke
This commit is contained in:
steven 2007-01-11 22:45:45 +00:00
parent 689feff997
commit aa45470eaa
6 changed files with 96 additions and 132 deletions

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.2 2006/06/03 09:48:04 alek Exp $
# $OpenBSD: Makefile,v 1.3 2007/01/11 22:45:45 steven Exp $
COMMENT= "pythonic, object-oriented web development framework"
DISTNAME= CherryPy-2.2.1
PKGNAME= py-${DISTNAME}p0
DISTNAME= CherryPy-3.0.0
PKGNAME= py-${DISTNAME}
CATEGORIES= www
HOMEPAGE= http://www.cherrypy.org/
@ -16,11 +16,11 @@ PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cherrypy/}
MASTER_SITES= http://download.cherrypy.org/cherrypy/${V}/
MODULES= lang/python
do-regress:
@cd ${WRKSRC} && ${MODPY_BIN} ./cherrypy/test/test.py
@cd ${WRKSRC} && ${MODPY_BIN} ./cherrypy/test/test.py --dumb
.include <bsd.port.mk>

View File

@ -1,4 +1,4 @@
MD5 (CherryPy-2.2.1.tar.gz) = 14bf17b0706bc480342cb8fcfaed74cd
RMD160 (CherryPy-2.2.1.tar.gz) = c8f406c5eaedb6f710dc746528b8474df48cb3c8
SHA1 (CherryPy-2.2.1.tar.gz) = cda044ceed78059a56c54ce157bca564f4907a51
SIZE (CherryPy-2.2.1.tar.gz) = 219932
MD5 (CherryPy-3.0.0.tar.gz) = 2065d19e79c9c1b30c9327509d2f3d0e
RMD160 (CherryPy-3.0.0.tar.gz) = e162013d2b7cbb0ee1020c96653d7c26f6fa6481
SHA1 (CherryPy-3.0.0.tar.gz) = 8deb77b5ce9f80ba58ac010824636a609ec909c4
SIZE (CherryPy-3.0.0.tar.gz) = 253348

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-cherrypy_test_test_conn_py,v 1.1 2007/01/11 22:45:46 steven Exp $
--- cherrypy/test/test_conn.py.orig Mon Jan 8 09:04:08 2007
+++ cherrypy/test/test_conn.py Mon Jan 8 09:04:37 2007
@@ -5,7 +5,7 @@ import httplib
import socket
import sys
import time
-timeout = 0.1
+timeout = 2.0
import cherrypy

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-cherrypy_test_test_py,v 1.1.1.1 2006/05/18 08:44:51 alek Exp $
--- cherrypy/test/test.py.orig Tue May 16 09:59:36 2006
+++ cherrypy/test/test.py Tue May 16 09:59:51 2006
@@ -311,7 +311,7 @@ def run():
CommandLineParser(testList).run()
print
- raw_input('hit enter')
+ #raw_input('hit enter')
if __name__ == '__main__':

View File

@ -1,21 +0,0 @@
$OpenBSD: patch-cherrypy_test_webtest_py,v 1.1.1.1 2006/05/18 08:44:51 alek Exp $
--- cherrypy/test/webtest.py.orig Tue May 16 09:55:50 2006
+++ cherrypy/test/webtest.py Tue May 16 09:57:15 2006
@@ -368,9 +368,14 @@ def openURL(url, headers=None, method="G
conn = http_conn(host, port)
conn._http_vsn_str = protocol
conn._http_vsn = int("".join([x for x in protocol if x.isdigit()]))
- conn.putrequest(method.upper(), url,
- skip_host=True, skip_accept_encoding=True)
-
+ # skip_accept_encoding argument added in python version 2.4
+ if sys.version_info < (2, 4):
+ conn.putrequest(method.upper(), url,
+ skip_host=True)
+ else:
+ conn.putrequest(method.upper(), url,
+ skip_host=True, skip_accept_encoding=True)
+
for key, value in headers:
conn.putheader(key, value)
conn.endheaders()

View File

@ -1,147 +1,130 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2006/05/18 08:44:51 alek Exp $
@comment $OpenBSD: PLIST,v 1.2 2007/01/11 22:45:46 steven Exp $
lib/python${MODPY_VERSION}/site-packages/cherrypy/
lib/python${MODPY_VERSION}/site-packages/cherrypy/__init__.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpcgifs.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpcgifs.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpchecker.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpchecker.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpconfig.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpconfig.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpdispatch.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpdispatch.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpengine.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpengine.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cperror.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cperror.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cphttptools.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cphttptools.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cplogging.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cplogging.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpmodpy.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpmodpy.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cprequest.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cprequest.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpserver.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpserver.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpthreadinglocal.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpthreadinglocal.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cptools.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cptools.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cptree.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cptree.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cputil.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cputil.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpwsgi.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpwsgi.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpwsgiserver.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/_cpwsgiserver.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/config.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/config.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/favicon.ico
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/__init__.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/basefilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/basefilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/baseurlfilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/baseurlfilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/cachefilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/cachefilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/decodingfilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/decodingfilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/encodingfilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/encodingfilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/gzipfilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/gzipfilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/logdebuginfofilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/logdebuginfofilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/nsgmlsfilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/nsgmlsfilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/responseheadersfilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/responseheadersfilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/sessionauthenticatefilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/sessionauthenticatefilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/sessionfilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/sessionfilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/staticfilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/staticfilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/tidyfilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/tidyfilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/virtualhostfilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/virtualhostfilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/wsgiappfilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/wsgiappfilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/xmlrpcfilter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/filters/xmlrpcfilter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/__init__.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/autoreload.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/autoreload.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/auth.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/auth.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/caching.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/caching.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/covercp.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/covercp.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/cptools.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/cptools.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/defaultformmask.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/defaultformmask.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/filter/
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/filter/__init__.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/filter/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/form.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/form.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/httptools.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/httptools.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/encoding.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/encoding.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/http.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/http.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/httpauth.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/httpauth.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/profiler.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/profiler.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/sessions.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/sessions.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/static.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/static.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/tidy.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/tidy.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/wsgiapp.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/wsgiapp.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/xmlrpc.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/lib/xmlrpc.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/__init__.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/benchmark.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/benchmark.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/checkerdemo.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/checkerdemo.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/helper.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/helper.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/modpy.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/modpy.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/standalone_test_alt_script_name.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/standalone_test_alt_script_name.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/static/
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/static/dirback.jpg
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/static/has space.html
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/static/index.html
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/style.css
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_baseurl_filter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_baseurl_filter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_cache_filter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_cache_filter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_combinedfilters.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_combinedfilters.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_caching.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_caching.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_config.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_config.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_conn.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_conn.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_core.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_core.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_custom_filters.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_custom_filters.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_decodingencoding_filter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_decodingencoding_filter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_gzip_filter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_gzip_filter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_encoding.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_encoding.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_etags.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_etags.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_http.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_http.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_logdebuginfo_filter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_logdebuginfo_filter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_noserver.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_noserver.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_httpauth.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_httpauth.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_misc_tools.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_misc_tools.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_objectmapping.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_objectmapping.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_response_headers_filter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_response_headers_filter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_session_concurrency.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_session_concurrency.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_session_filter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_session_filter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_sessionauthenticate_filter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_sessionauthenticate_filter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_proxy.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_proxy.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_routes.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_routes.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_session.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_session.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_sessionauthenticate.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_sessionauthenticate.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_states.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_states.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_static_filter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_static_filter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_states_demo.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_states_demo.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_static.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_static.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_tidy.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_tidy.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_tools.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_tools.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_tutorials.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_tutorials.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_virtualhost_filter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_virtualhost_filter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_wsgiapp_filter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_wsgiapp_filter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_xmlrpc_filter.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_xmlrpc_filter.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_virtualhost.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_virtualhost.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_wsgi_ns.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_wsgi_ns.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_wsgiapps.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_wsgiapps.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_xmlrpc.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/test_xmlrpc.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/webtest.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/test/webtest.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/tutorial/
@ -173,3 +156,5 @@ lib/python${MODPY_VERSION}/site-packages/cherrypy/tutorial/tut09_files.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/tutorial/tut10_http_errors.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/tutorial/tut10_http_errors.pyc
lib/python${MODPY_VERSION}/site-packages/cherrypy/tutorial/tutorial.conf
lib/python${MODPY_VERSION}/site-packages/cherrypy/wsgiserver.py
lib/python${MODPY_VERSION}/site-packages/cherrypy/wsgiserver.pyc