mirror of
https://github.com/python/cpython.git
synced 2025-08-11 20:40:27 +00:00
Merged revisions 66922 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r66922 | benjamin.peterson | 2008-10-16 14:40:14 -0500 (Thu, 16 Oct 2008) | 1 line use new showwarnings signature for idle #3391 ........
This commit is contained in:
parent
d586c4ed2b
commit
352ebae87e
2 changed files with 12 additions and 6 deletions
|
@ -24,11 +24,13 @@ try:
|
|||
except ImportError:
|
||||
pass
|
||||
else:
|
||||
def idle_formatwarning_subproc(message, category, filename, lineno):
|
||||
def idle_formatwarning_subproc(message, category, filename, lineno,
|
||||
file=None, line=None):
|
||||
"""Format warnings the IDLE way"""
|
||||
s = "\nWarning (from warnings module):\n"
|
||||
s += ' File \"%s\", line %s\n' % (filename, lineno)
|
||||
line = linecache.getline(filename, lineno).strip()
|
||||
line = linecache.getline(filename, lineno).strip() \
|
||||
if line is None else line
|
||||
if line:
|
||||
s += " %s\n" % line
|
||||
s += "%s: %s\n" % (category.__name__, message)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue