➜

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.

作者 eric.snow
收信人 Thorney, eric.araujo, eric.snow, ezio.melotti, jackdied, ncoghlan, pitrou, python-dev, rhettinger
日期 2012-11-13.23:48:19
SpamBayes Score -1.0
Marked as misclassified 是
Message-id <1352850500.03.0.69135934184.issue12428@psf.upfronthosting.co.za>
In-reply-to
内容
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?
历史
日期 用户 动作 参数
2012-11-13 23:48:20eric.snow修改recipients: + eric.snow, rhettinger, ncoghlan, pitrou, jackdied, ezio.melotti, eric.araujo, Thorney, python-dev
2012-11-13 23:48:20eric.snow修改messageid: <1352850500.03.0.69135934184.issue12428@psf.upfronthosting.co.za>
2012-11-13 23:48:19eric.snow链接issue12428 messages
2012-11-13 23:48:19eric.snow创建