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 georg.brandl
Recipients gazza7364, georg.brandl
Date 2014-10-23.19:06:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1414091200.61.0.385971695204.issue22713@psf.upfronthosting.co.za>
In-reply-to
Content
This is as expected; the new global name "print" overrides the builtin name "print".

(What you could also have done to remove your binding is "del print", which removes the global binding.)
History
Date User Action Args
2014-10-23 19:06:40georg.brandlsetrecipients: + georg.brandl, gazza7364
2014-10-23 19:06:40georg.brandlsetmessageid: <1414091200.61.0.385971695204.issue22713@psf.upfronthosting.co.za>
2014-10-23 19:06:40georg.brandllinkissue22713 messages
2014-10-23 19:06:40georg.brandlcreate