summaryrefslogtreecommitdiffstats
path: root/Lib/warnings.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-06-27 00:31:13 (GMT)
committerBrett Cannon <bcannon@gmail.com>2008-06-27 00:31:13 (GMT)
commitdea1b5653ffd2183c7a4d577a2ca08644dd51248 (patch)
treedc441e1ddb4884a57e4fc305fa77f87b7a100578 /Lib/warnings.py
parent80821f7cf4b2af64e444ad71ca13eb96fcbd6454 (diff)
downloadcpython-dea1b5653ffd2183c7a4d577a2ca08644dd51248.zip
cpython-dea1b5653ffd2183c7a4d577a2ca08644dd51248.tar.gz
cpython-dea1b5653ffd2183c7a4d577a2ca08644dd51248.tar.bz2
warnings.warn_explicit() did not have the proper TypeErrors in place to prevent
bus errors or SystemError being raised. As a side effect of fixing this, a bad DECREF that could be triggered when 'message' and 'category' were both None was fixed. Closes issue 3211. Thanks JP Calderone for the bug report.
Diffstat (limited to 'Lib/warnings.py')
-rw-r--r--Lib/warnings.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/warnings.py b/Lib/warnings.py
index d9e6e44..2e5c512 100644
--- a/Lib/warnings.py
+++ b/Lib/warnings.py
@@ -202,6 +202,7 @@ def warn(message, category=None, stacklevel=1):
def warn_explicit(message, category, filename, lineno,
module=None, registry=None, module_globals=None):
+ lineno = int(lineno)
if module is None:
module = filename or "<unknown>"
if module[-3:].lower() == ".py":