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 ezio.melotti
Recipients ezio.melotti, ozy, r.david.murray
Date 2014-01-15.00:53:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389747200.43.0.231121814319.issue20263@psf.upfronthosting.co.za>
In-reply-to
Content
FTR you can always get it back from builtins.print:

>>> print('test')
test
>>> print = 10
>>> print('test')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'int' object is not callable
>>> import builtins
>>> print = builtins.print
>>> print('test')
test
History
Date User Action Args
2014-01-15 00:53:20ezio.melottisetrecipients: + ezio.melotti, r.david.murray, ozy
2014-01-15 00:53:20ezio.melottisetmessageid: <1389747200.43.0.231121814319.issue20263@psf.upfronthosting.co.za>
2014-01-15 00:53:20ezio.melottilinkissue20263 messages
2014-01-15 00:53:20ezio.melotticreate