Message325092
| Author | rhettinger |
|---|---|
| Recipients | rhettinger |
| Date | 2018-09-11.23:34:59 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1536708899.31.0.0269046726804.issue34637@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
Currently, we can write:
>>> sum(range(10), 50)
95
What we want to allow:
>>> sum(range(10), start=50)
95
The positional form would still be allowed. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2018-09-11 23:34:59 | rhettinger | set | recipients: + rhettinger |
| 2018-09-11 23:34:59 | rhettinger | set | messageid: <1536708899.31.0.0269046726804.issue34637@psf.upfronthosting.co.za> |
| 2018-09-11 23:34:59 | rhettinger | link | issue34637 messages |
| 2018-09-11 23:34:59 | rhettinger | create | |