summaryrefslogtreecommitdiff
path: root/cherrypy/test/test_static.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_static.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_static.py')
-rw-r--r--cherrypy/test/test_static.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cherrypy/test/test_static.py b/cherrypy/test/test_static.py
index 40098119..8ef49c7e 100644
--- a/cherrypy/test/test_static.py
+++ b/cherrypy/test/test_static.py
@@ -184,7 +184,7 @@ class StaticTest(helper.CPWebCase):
def test_file_stream(self):
if cherrypy.server.protocol_version != "HTTP/1.1":
- print "skipped ",
+ cherrypy.py3print("skipped ", end=' ')
return
self.PROTOCOL = "HTTP/1.1"
@@ -223,7 +223,7 @@ class StaticTest(helper.CPWebCase):
def test_file_stream_deadlock(self):
if cherrypy.server.protocol_version != "HTTP/1.1":
- print "skipped ",
+ cherrypy.py3print("skipped ", end=' ')
return
self.PROTOCOL = "HTTP/1.1"