From: Senthil Kumaran Date: Mon, 18 Jan 2016 04:12:16 +0000 (-0800) Subject: Issue26069 - Update whatsnew/3.6.rst on traceback module's api removals. X-Git-Tag: v3.6.0a1~752 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=613065b60d823efa6e2be0e0e53079a44305b6b2;p=python Issue26069 - Update whatsnew/3.6.rst on traceback module's api removals. --- diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index f54cf12ca1..0e15edacc8 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -227,6 +227,13 @@ API and Feature Removals :func:`inspect.getmodulename` should be used for obtaining the module name for a given path. +* ``traceback.Ignore`` class and ``traceback.usage``, ``traceback.modname``, + ``traceback.fullmodname``, ``traceback.find_lines_from_code``, + ``traceback.find_lines``, ``traceback.find_strings``, + ``traceback.find_executable_lines`` methods were removed from the + :mod:`traceback` module. They were undocumented methods deprecated since + Python 3.2 and equivalent functionality is available from private methods. + Porting to Python 3.6 =====================