[issue27506] make bytes/bytearray translate's delete a keyword argument

2016-08-27 Thread Xiang Zhang
Xiang Zhang added the comment: Yay, thanks for your work, Martin. -- ___ Python tracker ___ ___

[issue27506] make bytes/bytearray translate's delete a keyword argument

2016-08-27 Thread Martin Panter
Changes by Martin Panter : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___

[issue27506] make bytes/bytearray translate's delete a keyword argument

2016-08-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6ab1b54245d5 by Martin Panter in branch 'default': Issue #27506: Support bytes/bytearray.translate() delete as keyword argument https://hg.python.org/cpython/rev/6ab1b54245d5 -- nosy: +python-dev ___

[issue27506] make bytes/bytearray translate's delete a keyword argument

2016-08-22 Thread Martin Panter
Martin Panter added the comment: Looks pretty good thanks Xiang. There’s one English grammar problem in a comment (see review), but I can fix that when I commit. -- stage: patch review -> commit review ___ Python tracker

[issue27506] make bytes/bytearray translate's delete a keyword argument

2016-08-18 Thread Xiang Zhang
Xiang Zhang added the comment: Martin, I write the v3 patch to apply the comments. It preserves *table* as mandatory and move the test_translate to BaseBytesTest to remove duplicates. -- title: make bytes/bytearray delete a keyword argument -> make bytes/bytearray translate's delete a