[issue26568] Add a new warnings.showwarnmsg() function taking a warnings.WarningMessage object

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue26568] Add a new warnings.showwarnmsg() function taking a warnings.WarningMessage object

2017-12-20 Thread irdb
Change by irdb : -- nosy: +irdb ___ Python tracker ___ ___ Python-bugs-list mailing

[issue26568] Add a new warnings.showwarnmsg() function taking a warnings.WarningMessage object

2017-06-30 Thread STINNER Victor
STINNER Victor added the comment: New changeset d0aac5da59b1bbd113e6081d7c807ad5bced8a05 by Victor Stinner in branch '3.6': bpo-30812: Fix test_warnings, restore _showwarnmsg (#2504) (#2507) https://github.com/python/cpython/commit/d0aac5da59b1bbd113e6081d7c807ad5bced8a05 --

[issue26568] Add a new warnings.showwarnmsg() function taking a warnings.WarningMessage object

2017-06-30 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +2578 ___ Python tracker ___ ___

[issue26568] Add a new warnings.showwarnmsg() function taking a warnings.WarningMessage object

2017-06-30 Thread STINNER Victor
STINNER Victor added the comment: New changeset 7eebeb8fb84e2a9cb73903a08c59cf1d3b32cee0 by Victor Stinner in branch 'master': bpo-30812: Fix test_warnings, restore _showwarnmsg (#2504) https://github.com/python/cpython/commit/7eebeb8fb84e2a9cb73903a08c59cf1d3b32cee0 --

[issue26568] Add a new warnings.showwarnmsg() function taking a warnings.WarningMessage object

2017-06-30 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +2568 ___ Python tracker ___ ___

[issue26568] Add a new warnings.showwarnmsg() function taking a warnings.WarningMessage object

2016-10-19 Thread Sebastian Berg
Sebastian Berg added the comment: To make warning testing saner, in numpy we added basically my own version of catch_warnings on steroids, which needed/will need changing because of this. Unless I missed it somewhere, this change should maybe put into the release notes to warn make it a bit

[issue26568] Add a new warnings.showwarnmsg() function taking a warnings.WarningMessage object

2016-03-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9c92352324e8 by Victor Stinner in branch 'default': Fix test_logging https://hg.python.org/cpython/rev/9c92352324e8 -- ___ Python tracker

[issue26568] Add a new warnings.showwarnmsg() function taking a warnings.WarningMessage object

2016-03-18 Thread STINNER Victor
STINNER Victor added the comment: I pushed a change which adds a private _showwarnmsg(), but I'm still interested to make this new function public! I pushed the change to unblock the issue #26567. -- title: Add a new warnings.showmsg() function taking a warnings.WarningMessage object