[issue33559] Exception's repr change not documented

2018-05-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your report and PR Miro! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker __

[issue33559] Exception's repr change not documented

2018-05-17 Thread miss-islington
miss-islington added the comment: New changeset efa642779739b5af028b0f6ebb9033395e124273 by Miss Islington (bot) in branch '3.7': bpo-33559: Attribute changed repr of exceptions (GH-6954) https://github.com/python/cpython/commit/efa642779739b5af028b0f6ebb9033395e124273 -- nosy: +miss

[issue33559] Exception's repr change not documented

2018-05-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +6615 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue33559] Exception's repr change not documented

2018-05-17 Thread Steve Dower
Steve Dower added the comment: New changeset fb9dd8915314d857161de89fcbbb041f2b49fc22 by Steve Dower (Miro Hrončok) in branch 'master': bpo-33559: Attribute changed repr of exceptions (GH-6954) https://github.com/python/cpython/commit/fb9dd8915314d857161de89fcbbb041f2b49fc22 --

[issue33559] Exception's repr change not documented

2018-05-17 Thread Steve Dower
Steve Dower added the comment: New changeset 54fc49737a6a79f6e2ece16e22b233858b836567 by Steve Dower (Miss Islington (bot)) in branch '3.7': bpo-33559: Document changed repr of exceptions (GH-6943) (GH-6950) https://github.com/python/cpython/commit/54fc49737a6a79f6e2ece16e22b233858b836567 --

[issue33559] Exception's repr change not documented

2018-05-17 Thread Steve Dower
Steve Dower added the comment: It's worth documenting. I'll merge the next PR with the attribution. -- ___ Python tracker ___ ___ Py

[issue33559] Exception's repr change not documented

2018-05-17 Thread Miro Hrončok
Miro Hrončok added the comment: I was bit by this, so that's why I think this is worth documenting. https://github.com/testing-cabal/testtools/issues/270 -- ___ Python tracker ___

[issue33559] Exception's repr change not documented

2018-05-17 Thread Miro Hrončok
Change by Miro Hrončok : -- pull_requests: +6614 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue33559] Exception's repr change not documented

2018-05-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This was done in issue30399, and I was not sure that this change is worth adding in What's New. Add a reference to the issue. -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue33559] Exception's repr change not documented

2018-05-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +6613 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue33559] Exception's repr change not documented

2018-05-17 Thread Steve Dower
Steve Dower added the comment: New changeset 631753fcc5e88bbbad402933e77295675cfe1fee by Steve Dower (Miro Hrončok) in branch 'master': bpo-33559: Document changed repr of exceptions (GH-6943) https://github.com/python/cpython/commit/631753fcc5e88bbbad402933e77295675cfe1fee -- nosy:

[issue33559] Exception's repr change not documented

2018-05-17 Thread Miro Hrončok
Change by Miro Hrončok : -- keywords: +patch pull_requests: +6611 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue33559] Exception's repr change not documented

2018-05-17 Thread Miro Hrončok
Change by Miro Hrončok : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue33559] Exception's repr change not documented

2018-05-17 Thread Miro Hrončok
New submission from Miro Hrončok : Python 3.6.5 ... >>> Exception('foo',) Exception('foo',) Python 3.7.0b4 ... >>> Exception('foo',) Exception('foo') This is a change that might bit people who rely on doctesting. It is not documented at https://docs.python.org/3.7/whatsnew/3.7.html I'll send