diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2009-07-09 10:52:29 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-07-09 10:52:29 -0400 |
| commit | 221822595b4e040c66937a3f9574623a9756b736 (patch) | |
| tree | 662187f475c49a154c35741cfd342ecab7401396 /test | |
| parent | 831cbf4e7ef69eca24034425a887aa774f765fd8 (diff) | |
| download | python-coveragepy-git-221822595b4e040c66937a3f9574623a9756b736.tar.gz | |
Py3k: fix more print statements.
Diffstat (limited to 'test')
| -rw-r--r-- | test/farm/run/src/xxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/farm/run/src/xxx b/test/farm/run/src/xxx index 78f7d668..8f727f08 100644 --- a/test/farm/run/src/xxx +++ b/test/farm/run/src/xxx @@ -5,4 +5,4 @@ b = 4 if not b: c = 6 d = 7 -print "xxx:", a, b, c, d +print("xxx: %r %r %r %r" % (a, b, c, d)) |
