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 serhiy.storchaka
Recipients barry, eli.bendersky, eric.smith, ethan.furman, serhiy.storchaka
Date 2013-08-21.11:37:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1377085057.31.0.194973740173.issue18738@psf.upfronthosting.co.za>
In-reply-to
Content
>> print(member)
>> "%s" % member
>> "{}".format(member)
>
> Would you seriously use either of those last two in either the debugger 
or the command line?

Yes, of course. When you need debug output from function or loop inners.

    for ...:
        ...
        print('stage1(%s) = [%s:%s] %s' % (i, start, stop, result))
History
Date User Action Args
2013-08-21 11:37:37serhiy.storchakasetrecipients: + serhiy.storchaka, barry, eric.smith, eli.bendersky, ethan.furman
2013-08-21 11:37:37serhiy.storchakasetmessageid: <1377085057.31.0.194973740173.issue18738@psf.upfronthosting.co.za>
2013-08-21 11:37:37serhiy.storchakalinkissue18738 messages
2013-08-21 11:37:37serhiy.storchakacreate