From d603adf5ce676e4a59a3beece8ce49ec5b91f1b2 Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Wed, 10 Jul 2013 23:50:45 +1200 Subject: * Fix Python 3.* support for entrypoints; the initial code was Python3 incompatible. (Robert Collins, Clark Boylan, #1187192) --- NEWS | 3 +++ testrepository/setuptools_command.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 419c19e..2200e1c 100644 --- a/NEWS +++ b/NEWS @@ -8,6 +8,9 @@ NEXT (In development) CHANGES ------- +* Fix Python 3.* support for entrypoints; the initial code was Python3 + incompatible. (Robert Collins, Clark Boylan, #1187192) + * Switch to using multiprocessing to determine CPU counts. (Chris Jones, #1092276) diff --git a/testrepository/setuptools_command.py b/testrepository/setuptools_command.py index 2718e3e..fbaf606 100644 --- a/testrepository/setuptools_command.py +++ b/testrepository/setuptools_command.py @@ -77,7 +77,7 @@ class Testr(cmd.Command): raise distutils.errors.DistutilsError( "testr failed (%d)" % testr_ret) if self.slowest: - print "Slowest Tests" + print ("Slowest Tests") self._run_testr("slowest") if self.coverage: self._coverage_after() -- cgit v1.2.1