消息 [153778]
Just noticed one minor nit with the patch: the pure Python version of functools.partial should support "func" as a keyword argument that is passed to the underlying object. The trick is to declare a positional only argument like this:
def f(*args, **kwds):
first, *args = args
# etc... |
|
| 日期 |
用户 |
动作 |
参数 |
| 2012-02-20 12:44:22 | ncoghlan | 修改 | recipients:
+ ncoghlan, rhettinger, pitrou, eric.araujo, Thorney |
| 2012-02-20 12:44:22 | ncoghlan | 修改 | messageid: <1329741862.73.0.530848122991.issue12428@psf.upfronthosting.co.za> |
| 2012-02-20 12:44:22 | ncoghlan | 链接 | issue12428 messages |
| 2012-02-20 12:44:22 | ncoghlan | 创建 | |
|