[issue30399] Get rid of trailing comma in the repr() of BaseException

2017-11-15 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue30399] Get rid of trailing comma in the repr() of BaseException

2017-11-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset f8a4c03ede6048022f60a58d5a21b278b78a8a16 by Serhiy Storchaka in branch 'master': bpo-30399: Get rid of trailing comma in the repr of BaseException. (#1650) https://github.com/python/cpython/commit/f8a4c03ede6048022f60a58d5a21b278b78a8a16

[issue30399] Get rid of trailing comma in the repr() of BaseException

2017-05-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: I think the trailing comma is slightly worse than redundant, as someone who has forgotten the trailing comma rule for calls can mistakenly read it as making the arg a tuple. So +1 on removing it. -- nosy: +terry.reedy

[issue30399] Get rid of trailing comma in the repr() of BaseException

2017-05-19 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- title: Get rid of trailing comma if the repr() of BaseException -> Get rid of trailing comma in the repr() of BaseException ___ Python tracker _