[Python-ideas] Add `future_builtins` as an alias for `builtins`

Nick Coghlan ncoghlan at gmail.com
Thu May 10 00:04:38 CEST 2012


No, because it is trivial to do the following during application startup
(with appropriate version checks or try blocks):

import sys, builtins
sys.modules["future_builtins"] = builtins

Or, use the six package instead.

--
Sent from my phone, thus the relative brevity :)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-ideas/attachments/20120510/1959c0b1/attachment.html>


More information about the Python-ideas mailing list