summaryrefslogtreecommitdiff
path: root/cherrypy/test/test_config_server.py
diff options
context:
space:
mode:
authorLakin Wecker <none@none>2009-06-01 16:43:59 +0000
committerLakin Wecker <none@none>2009-06-01 16:43:59 +0000
commitbcac4e137da9675a5ba2ba4dfe0404288749e33a (patch)
tree9640ef6ef03106e218e9623e852e4c4f5fd42f8e /cherrypy/test/test_config_server.py
parent03f15ebb2a21e24a2a7458b9022ce05e89137fa4 (diff)
downloadcherrypy-git-bcac4e137da9675a5ba2ba4dfe0404288749e33a.tar.gz
trunk - adding a py3util module that will normalize as many differences between this branch and the python3 branch as it can. First it includes a py3print call who's signature matches that of print in python3. Also removed a few byte strings of the form b''
Diffstat (limited to 'cherrypy/test/test_config_server.py')
-rw-r--r--cherrypy/test/test_config_server.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cherrypy/test/test_config_server.py b/cherrypy/test/test_config_server.py
index 9b2e217b..d1afc7f6 100644
--- a/cherrypy/test/test_config_server.py
+++ b/cherrypy/test/test_config_server.py
@@ -79,7 +79,7 @@ class ServerConfigTests(helper.CPWebCase):
def testMaxRequestSizePerHandler(self):
if getattr(cherrypy.server, "using_apache", False):
- print "skipped due to known Apache differences...",
+ cherrypy.py3print("skipped due to known Apache differences...", end=' ')
return
self.getPage('/tinyupload?maxlen=100', method="POST", body="x" * 100)
@@ -90,7 +90,7 @@ class ServerConfigTests(helper.CPWebCase):
def testMaxRequestSize(self):
if getattr(cherrypy.server, "using_apache", False):
- print "skipped due to known Apache differences...",
+ cherrypy.py3print("skipped due to known Apache differences...", end=' ')
return
for size in (500, 5000, 50000):