summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_warnings
Commit message (Collapse)AuthorAgeFilesLines
...
* | Issue #26588: skip test_warnings.test_tracemalloc()Victor Stinner2016-03-221-0/+1
| |
* | Try again to fix test_warnings on WindowsVictor Stinner2016-03-191-0/+2
| | | | | | | | Issue #26567: normalize newlines in test_tracemalloc.
* | Try to fix test_warnings on WindowsVictor Stinner2016-03-191-8/+10
| | | | | | | | Issue #26567.
* | On ResourceWarning, log traceback where the object was allocatedVictor Stinner2016-03-191-0/+30
| | | | | | | | | | | | | | | | | | | | Issue #26567: * Add a new function PyErr_ResourceWarning() function to pass the destroyed object * Add a source attribute to warnings.WarningMessage * Add warnings._showwarnmsg() which uses tracemalloc to get the traceback where source object was allocated.
* | Add _showwarnmsg() and _formatwarnmsg() to warningsVictor Stinner2016-03-181-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | Issue #26568: add new _showwarnmsg() and _formatwarnmsg() functions to the warnings module. The C function warn_explicit() now calls warnings._showwarnmsg() with a warnings.WarningMessage as parameter, instead of calling warnings.showwarning() with multiple parameters. _showwarnmsg() calls warnings.showwarning() if warnings.showwarning() was replaced. Same for _formatwarnmsg(): call warnings.formatwarning() if it was replaced.
* | Merge from 3.5Steve Dower2015-09-071-1/+1
|/
* Reapplied change to test_warnings.py to test_warnings/__init__.py.Steve Dower2015-09-071-0/+6
|
* Issue #24305: Prevent import subsystem stack frames from being countedLarry Hastings2015-09-064-0/+970
by the warnings.warn(stacklevel=) parameter.