This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author lemburg
Recipients lemburg, mark.dickinson, pitrou
Date 2009-02-06.22:48:05
SpamBayes Score 3.6601833e-12
Marked as misclassified No
Message-id <498CBE24.90301@egenix.com>
In-reply-to <1233959128.10020.0.camel@fsol>
Content
On 2009-02-06 23:25, Antoine Pitrou wrote:
> Antoine Pitrou <pitrou@free.fr> added the comment:
> 
>> It's ok to bump this to Python 2.3, though :-)
> 
> The current version only works with 3.x, due to the use of the print
> function with the "end" keyword argument.
> Should it be fixed?

If possible, pybench should work unchanged in both Python 2.x and 3.x.

If the only change needed for this is a new print function, then
it's better to replace all print function calls with a new
helper function:

def print3(*args, end='\r'):
    sys.stdout.write(' '.join(*args))
    sys.stdout.write(end)
    sys.stdout.flush()

(untested, but the idea should be clear)
History
Date User Action Args
2009-02-06 22:49:08lemburgsetrecipients: + lemburg, mark.dickinson, pitrou
2009-02-06 22:48:06lemburglinkissue4704 messages
2009-02-06 22:48:05lemburgcreate