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 eric.snow
Recipients Thorney, eric.araujo, eric.snow, ezio.melotti, jackdied, ncoghlan, pitrou, python-dev, rhettinger
Date 2012-11-13.23:48:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352850500.03.0.69135934184.issue12428@psf.upfronthosting.co.za>
In-reply-to
Content
The following from the changeset left me with questions:

-from _functools import partial, reduce
+try:
+    from _functools import reduce
+except ImportError:
+    pass

* Why the try block when there wasn't one before?
* Should reduce be added to __all__ only conditionally?
* Should the pure Python partial only be used if _functools.partial is not available?
* Should _functools.partial be removed?
History
Date User Action Args
2012-11-13 23:48:20eric.snowsetrecipients: + eric.snow, rhettinger, ncoghlan, pitrou, jackdied, ezio.melotti, eric.araujo, Thorney, python-dev
2012-11-13 23:48:20eric.snowsetmessageid: <1352850500.03.0.69135934184.issue12428@psf.upfronthosting.co.za>
2012-11-13 23:48:19eric.snowlinkissue12428 messages
2012-11-13 23:48:19eric.snowcreate