Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 1 | """Python part of the warnings subsystem.""" |
| 2 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 3 | import sys |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 4 | |
Victor Stinner | 914cde8 | 2016-03-19 01:03:51 +0100 | [diff] [blame] | 5 | |
Brett Cannon | 14ad531 | 2014-08-22 10:44:47 -0400 | [diff] [blame] | 6 | __all__ = ["warn", "warn_explicit", "showwarning", |
| 7 | "formatwarning", "filterwarnings", "simplefilter", |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 8 | "resetwarnings", "catch_warnings"] |
Skip Montanaro | 40fc160 | 2001-03-01 04:27:19 +0000 | [diff] [blame] | 9 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 10 | def showwarning(message, category, filename, lineno, file=None, line=None): |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 11 | """Hook to write a warning to a file; replace if you like.""" |
Victor Stinner | 1231a46 | 2016-03-19 00:47:17 +0100 | [diff] [blame] | 12 | msg = WarningMessage(message, category, filename, lineno, file, line) |
Victor Stinner | eedf13f | 2016-03-19 02:11:56 +0100 | [diff] [blame] | 13 | _showwarnmsg_impl(msg) |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 14 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 15 | def formatwarning(message, category, filename, lineno, line=None): |
Guido van Rossum | 9464a7d | 2001-01-14 14:08:40 +0000 | [diff] [blame] | 16 | """Function to format a warning the standard way.""" |
Victor Stinner | 1231a46 | 2016-03-19 00:47:17 +0100 | [diff] [blame] | 17 | msg = WarningMessage(message, category, filename, lineno, None, line) |
Victor Stinner | eedf13f | 2016-03-19 02:11:56 +0100 | [diff] [blame] | 18 | return _formatwarnmsg_impl(msg) |
Victor Stinner | 1231a46 | 2016-03-19 00:47:17 +0100 | [diff] [blame] | 19 | |
Victor Stinner | eedf13f | 2016-03-19 02:11:56 +0100 | [diff] [blame] | 20 | def _showwarnmsg_impl(msg): |
Victor Stinner | 1231a46 | 2016-03-19 00:47:17 +0100 | [diff] [blame] | 21 | file = msg.file |
| 22 | if file is None: |
| 23 | file = sys.stderr |
| 24 | if file is None: |
| 25 | # sys.stderr is None when run with pythonw.exe: |
| 26 | # warnings get lost |
| 27 | return |
| 28 | text = _formatwarnmsg(msg) |
| 29 | try: |
| 30 | file.write(text) |
| 31 | except OSError: |
| 32 | # the file (probably stderr) is invalid - this warning gets lost. |
| 33 | pass |
| 34 | |
Victor Stinner | eedf13f | 2016-03-19 02:11:56 +0100 | [diff] [blame] | 35 | def _formatwarnmsg_impl(msg): |
Victor Stinner | 1231a46 | 2016-03-19 00:47:17 +0100 | [diff] [blame] | 36 | s = ("%s:%s: %s: %s\n" |
| 37 | % (msg.filename, msg.lineno, msg.category.__name__, |
| 38 | msg.message)) |
Victor Stinner | e091d32 | 2016-03-25 00:33:12 +0100 | [diff] [blame] | 39 | |
Victor Stinner | 1231a46 | 2016-03-19 00:47:17 +0100 | [diff] [blame] | 40 | if msg.line is None: |
Victor Stinner | 2746168 | 2016-03-25 00:30:32 +0100 | [diff] [blame] | 41 | try: |
| 42 | import linecache |
Victor Stinner | e091d32 | 2016-03-25 00:33:12 +0100 | [diff] [blame] | 43 | line = linecache.getline(msg.filename, msg.lineno) |
Victor Stinner | 2746168 | 2016-03-25 00:30:32 +0100 | [diff] [blame] | 44 | except Exception: |
| 45 | # When a warning is logged during Python shutdown, linecache |
Martin Panter | cc71a79 | 2016-04-05 06:19:42 +0000 | [diff] [blame] | 46 | # and the import machinery don't work anymore |
Victor Stinner | 2746168 | 2016-03-25 00:30:32 +0100 | [diff] [blame] | 47 | line = None |
Victor Stinner | e091d32 | 2016-03-25 00:33:12 +0100 | [diff] [blame] | 48 | linecache = None |
Victor Stinner | 1231a46 | 2016-03-19 00:47:17 +0100 | [diff] [blame] | 49 | else: |
| 50 | line = msg.line |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 51 | if line: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 52 | line = line.strip() |
| 53 | s += " %s\n" % line |
Victor Stinner | e091d32 | 2016-03-25 00:33:12 +0100 | [diff] [blame] | 54 | |
Victor Stinner | 914cde8 | 2016-03-19 01:03:51 +0100 | [diff] [blame] | 55 | if msg.source is not None: |
Victor Stinner | e091d32 | 2016-03-25 00:33:12 +0100 | [diff] [blame] | 56 | try: |
| 57 | import tracemalloc |
| 58 | tb = tracemalloc.get_object_traceback(msg.source) |
| 59 | except Exception: |
| 60 | # When a warning is logged during Python shutdown, tracemalloc |
| 61 | # and the import machinery don't work anymore |
| 62 | tb = None |
| 63 | |
Victor Stinner | 914cde8 | 2016-03-19 01:03:51 +0100 | [diff] [blame] | 64 | if tb is not None: |
Jesse-Bakker | 706e10b | 2017-11-30 00:05:07 +0100 | [diff] [blame] | 65 | s += 'Object allocated at (most recent call last):\n' |
Victor Stinner | 914cde8 | 2016-03-19 01:03:51 +0100 | [diff] [blame] | 66 | for frame in tb: |
| 67 | s += (' File "%s", lineno %s\n' |
| 68 | % (frame.filename, frame.lineno)) |
Victor Stinner | e091d32 | 2016-03-25 00:33:12 +0100 | [diff] [blame] | 69 | |
| 70 | try: |
| 71 | if linecache is not None: |
| 72 | line = linecache.getline(frame.filename, frame.lineno) |
| 73 | else: |
| 74 | line = None |
| 75 | except Exception: |
| 76 | line = None |
Victor Stinner | 914cde8 | 2016-03-19 01:03:51 +0100 | [diff] [blame] | 77 | if line: |
| 78 | line = line.strip() |
| 79 | s += ' %s\n' % line |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 80 | return s |
| 81 | |
Victor Stinner | eedf13f | 2016-03-19 02:11:56 +0100 | [diff] [blame] | 82 | # Keep a reference to check if the function was replaced |
Ned Deily | c1c3292 | 2016-12-06 17:12:47 -0500 | [diff] [blame] | 83 | _showwarning_orig = showwarning |
Victor Stinner | eedf13f | 2016-03-19 02:11:56 +0100 | [diff] [blame] | 84 | |
| 85 | def _showwarnmsg(msg): |
| 86 | """Hook to write a warning to a file; replace if you like.""" |
Ned Deily | c1c3292 | 2016-12-06 17:12:47 -0500 | [diff] [blame] | 87 | try: |
| 88 | sw = showwarning |
| 89 | except NameError: |
| 90 | pass |
| 91 | else: |
| 92 | if sw is not _showwarning_orig: |
| 93 | # warnings.showwarning() was replaced |
| 94 | if not callable(sw): |
| 95 | raise TypeError("warnings.showwarning() must be set to a " |
| 96 | "function or method") |
Victor Stinner | eedf13f | 2016-03-19 02:11:56 +0100 | [diff] [blame] | 97 | |
Ned Deily | c1c3292 | 2016-12-06 17:12:47 -0500 | [diff] [blame] | 98 | sw(msg.message, msg.category, msg.filename, msg.lineno, |
| 99 | msg.file, msg.line) |
| 100 | return |
Victor Stinner | eedf13f | 2016-03-19 02:11:56 +0100 | [diff] [blame] | 101 | _showwarnmsg_impl(msg) |
| 102 | |
| 103 | # Keep a reference to check if the function was replaced |
Ned Deily | c1c3292 | 2016-12-06 17:12:47 -0500 | [diff] [blame] | 104 | _formatwarning_orig = formatwarning |
Victor Stinner | eedf13f | 2016-03-19 02:11:56 +0100 | [diff] [blame] | 105 | |
| 106 | def _formatwarnmsg(msg): |
| 107 | """Function to format a warning the standard way.""" |
Ned Deily | c1c3292 | 2016-12-06 17:12:47 -0500 | [diff] [blame] | 108 | try: |
| 109 | fw = formatwarning |
| 110 | except NameError: |
| 111 | pass |
| 112 | else: |
| 113 | if fw is not _formatwarning_orig: |
| 114 | # warnings.formatwarning() was replaced |
| 115 | return fw(msg.message, msg.category, |
| 116 | msg.filename, msg.lineno, line=msg.line) |
Victor Stinner | eedf13f | 2016-03-19 02:11:56 +0100 | [diff] [blame] | 117 | return _formatwarnmsg_impl(msg) |
| 118 | |
Guido van Rossum | 9464a7d | 2001-01-14 14:08:40 +0000 | [diff] [blame] | 119 | def filterwarnings(action, message="", category=Warning, module="", lineno=0, |
Georg Brandl | fe99105 | 2009-09-16 15:54:04 +0000 | [diff] [blame] | 120 | append=False): |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 121 | """Insert an entry into the list of warnings filters (at the front). |
| 122 | |
Georg Brandl | 495f7b5 | 2009-10-27 15:28:25 +0000 | [diff] [blame] | 123 | 'action' -- one of "error", "ignore", "always", "default", "module", |
| 124 | or "once" |
| 125 | 'message' -- a regex that the warning message must match |
| 126 | 'category' -- a class that the warning must be a subclass of |
| 127 | 'module' -- a regex that the module name must match |
| 128 | 'lineno' -- an integer line number, 0 matches all warnings |
| 129 | 'append' -- if true, append to the list of filters |
| 130 | """ |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 131 | assert action in ("error", "ignore", "always", "default", "module", |
Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 132 | "once"), "invalid action: %r" % (action,) |
Guido van Rossum | 3172c5d | 2007-10-16 18:12:55 +0000 | [diff] [blame] | 133 | assert isinstance(message, str), "message must be a string" |
Guido van Rossum | 1325790 | 2007-06-07 23:15:56 +0000 | [diff] [blame] | 134 | assert isinstance(category, type), "category must be a class" |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 135 | assert issubclass(category, Warning), "category must be a Warning subclass" |
Guido van Rossum | 3172c5d | 2007-10-16 18:12:55 +0000 | [diff] [blame] | 136 | assert isinstance(module, str), "module must be a string" |
Walter Dörwald | 65230a2 | 2002-06-03 15:58:32 +0000 | [diff] [blame] | 137 | assert isinstance(lineno, int) and lineno >= 0, \ |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 138 | "lineno must be an int >= 0" |
Victor Stinner | 8265627 | 2017-11-22 23:51:42 +0100 | [diff] [blame] | 139 | |
| 140 | if message or module: |
| 141 | import re |
| 142 | |
| 143 | if message: |
| 144 | message = re.compile(message, re.I) |
| 145 | else: |
| 146 | message = None |
| 147 | if module: |
| 148 | module = re.compile(module) |
| 149 | else: |
| 150 | module = None |
| 151 | |
| 152 | _add_filter(action, message, category, module, lineno, append=append) |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 153 | |
Georg Brandl | fe99105 | 2009-09-16 15:54:04 +0000 | [diff] [blame] | 154 | def simplefilter(action, category=Warning, lineno=0, append=False): |
Jeremy Hylton | 8501466 | 2003-07-11 15:37:59 +0000 | [diff] [blame] | 155 | """Insert a simple entry into the list of warnings filters (at the front). |
| 156 | |
| 157 | A simple filter matches all modules and messages. |
Georg Brandl | 495f7b5 | 2009-10-27 15:28:25 +0000 | [diff] [blame] | 158 | 'action' -- one of "error", "ignore", "always", "default", "module", |
| 159 | or "once" |
| 160 | 'category' -- a class that the warning must be a subclass of |
| 161 | 'lineno' -- an integer line number, 0 matches all warnings |
| 162 | 'append' -- if true, append to the list of filters |
Jeremy Hylton | 8501466 | 2003-07-11 15:37:59 +0000 | [diff] [blame] | 163 | """ |
| 164 | assert action in ("error", "ignore", "always", "default", "module", |
Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 165 | "once"), "invalid action: %r" % (action,) |
Jeremy Hylton | 8501466 | 2003-07-11 15:37:59 +0000 | [diff] [blame] | 166 | assert isinstance(lineno, int) and lineno >= 0, \ |
| 167 | "lineno must be an int >= 0" |
Martin Panter | 43593a1 | 2016-05-26 09:10:55 +0000 | [diff] [blame] | 168 | _add_filter(action, None, category, None, lineno, append=append) |
| 169 | |
| 170 | def _add_filter(*item, append): |
| 171 | # Remove possible duplicate filters, so new one will be placed |
| 172 | # in correct place. If append=True and duplicate exists, do nothing. |
| 173 | if not append: |
| 174 | try: |
| 175 | filters.remove(item) |
| 176 | except ValueError: |
| 177 | pass |
Jeremy Hylton | 8501466 | 2003-07-11 15:37:59 +0000 | [diff] [blame] | 178 | filters.insert(0, item) |
Martin Panter | 43593a1 | 2016-05-26 09:10:55 +0000 | [diff] [blame] | 179 | else: |
| 180 | if item not in filters: |
| 181 | filters.append(item) |
Antoine Pitrou | cb0a006 | 2014-09-18 02:40:46 +0200 | [diff] [blame] | 182 | _filters_mutated() |
Jeremy Hylton | 8501466 | 2003-07-11 15:37:59 +0000 | [diff] [blame] | 183 | |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 184 | def resetwarnings(): |
Tim Peters | d0cc4f0 | 2002-04-16 01:51:25 +0000 | [diff] [blame] | 185 | """Clear the list of warning filters, so that no filters are active.""" |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 186 | filters[:] = [] |
Antoine Pitrou | cb0a006 | 2014-09-18 02:40:46 +0200 | [diff] [blame] | 187 | _filters_mutated() |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 188 | |
| 189 | class _OptionError(Exception): |
| 190 | """Exception used by option processing helpers.""" |
| 191 | pass |
| 192 | |
| 193 | # Helper to process -W options passed via sys.warnoptions |
| 194 | def _processoptions(args): |
| 195 | for arg in args: |
| 196 | try: |
| 197 | _setoption(arg) |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 198 | except _OptionError as msg: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 199 | print("Invalid -W option ignored:", msg, file=sys.stderr) |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 200 | |
| 201 | # Helper for _processoptions() |
| 202 | def _setoption(arg): |
Skip Montanaro | d8f2120 | 2003-05-14 17:33:53 +0000 | [diff] [blame] | 203 | import re |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 204 | parts = arg.split(':') |
| 205 | if len(parts) > 5: |
Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 206 | raise _OptionError("too many fields (max 5): %r" % (arg,)) |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 207 | while len(parts) < 5: |
| 208 | parts.append('') |
| 209 | action, message, category, module, lineno = [s.strip() |
| 210 | for s in parts] |
| 211 | action = _getaction(action) |
| 212 | message = re.escape(message) |
| 213 | category = _getcategory(category) |
| 214 | module = re.escape(module) |
| 215 | if module: |
| 216 | module = module + '$' |
| 217 | if lineno: |
| 218 | try: |
| 219 | lineno = int(lineno) |
| 220 | if lineno < 0: |
| 221 | raise ValueError |
| 222 | except (ValueError, OverflowError): |
Serhiy Storchaka | 5affd23 | 2017-04-05 09:37:24 +0300 | [diff] [blame] | 223 | raise _OptionError("invalid lineno %r" % (lineno,)) from None |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 224 | else: |
| 225 | lineno = 0 |
| 226 | filterwarnings(action, message, category, module, lineno) |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 227 | |
| 228 | # Helper for _setoption() |
| 229 | def _getaction(action): |
| 230 | if not action: |
| 231 | return "default" |
| 232 | if action == "all": return "always" # Alias |
Raymond Hettinger | dbecd93 | 2005-02-06 06:57:08 +0000 | [diff] [blame] | 233 | for a in ('default', 'always', 'ignore', 'module', 'once', 'error'): |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 234 | if a.startswith(action): |
| 235 | return a |
Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 236 | raise _OptionError("invalid action: %r" % (action,)) |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 237 | |
| 238 | # Helper for _setoption() |
| 239 | def _getcategory(category): |
Skip Montanaro | d8f2120 | 2003-05-14 17:33:53 +0000 | [diff] [blame] | 240 | import re |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 241 | if not category: |
| 242 | return Warning |
| 243 | if re.match("^[a-zA-Z0-9_]+$", category): |
| 244 | try: |
| 245 | cat = eval(category) |
Guido van Rossum | d1db30b | 2000-12-19 03:04:50 +0000 | [diff] [blame] | 246 | except NameError: |
Serhiy Storchaka | 5affd23 | 2017-04-05 09:37:24 +0300 | [diff] [blame] | 247 | raise _OptionError("unknown warning category: %r" % (category,)) from None |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 248 | else: |
| 249 | i = category.rfind(".") |
| 250 | module = category[:i] |
| 251 | klass = category[i+1:] |
Guido van Rossum | d1db30b | 2000-12-19 03:04:50 +0000 | [diff] [blame] | 252 | try: |
Brett Cannon | cd171c8 | 2013-07-04 17:43:24 -0400 | [diff] [blame] | 253 | m = __import__(module, None, None, [klass]) |
| 254 | except ImportError: |
Serhiy Storchaka | 5affd23 | 2017-04-05 09:37:24 +0300 | [diff] [blame] | 255 | raise _OptionError("invalid module name: %r" % (module,)) from None |
Guido van Rossum | d1db30b | 2000-12-19 03:04:50 +0000 | [diff] [blame] | 256 | try: |
| 257 | cat = getattr(m, klass) |
| 258 | except AttributeError: |
Serhiy Storchaka | 5affd23 | 2017-04-05 09:37:24 +0300 | [diff] [blame] | 259 | raise _OptionError("unknown warning category: %r" % (category,)) from None |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 260 | if not issubclass(cat, Warning): |
Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 261 | raise _OptionError("invalid warning category: %r" % (category,)) |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 262 | return cat |
| 263 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 264 | |
Larry Hastings | 714e493 | 2015-09-06 00:39:37 -0700 | [diff] [blame] | 265 | def _is_internal_frame(frame): |
| 266 | """Signal whether the frame is an internal CPython implementation detail.""" |
| 267 | filename = frame.f_code.co_filename |
| 268 | return 'importlib' in filename and '_bootstrap' in filename |
| 269 | |
| 270 | |
| 271 | def _next_external_frame(frame): |
| 272 | """Find the next frame that doesn't involve CPython internals.""" |
| 273 | frame = frame.f_back |
| 274 | while frame is not None and _is_internal_frame(frame): |
| 275 | frame = frame.f_back |
| 276 | return frame |
| 277 | |
| 278 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 279 | # Code typically replaced by _warnings |
Victor Stinner | e19558a | 2016-03-23 00:28:08 +0100 | [diff] [blame] | 280 | def warn(message, category=None, stacklevel=1, source=None): |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 281 | """Issue a warning, or maybe ignore it or raise an exception.""" |
| 282 | # Check if message is already a Warning object |
| 283 | if isinstance(message, Warning): |
| 284 | category = message.__class__ |
| 285 | # Check category argument |
| 286 | if category is None: |
| 287 | category = UserWarning |
Berker Peksag | d8089e0 | 2014-07-11 19:50:25 +0300 | [diff] [blame] | 288 | if not (isinstance(category, type) and issubclass(category, Warning)): |
| 289 | raise TypeError("category must be a Warning subclass, " |
| 290 | "not '{:s}'".format(type(category).__name__)) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 291 | # Get context information |
| 292 | try: |
Larry Hastings | 714e493 | 2015-09-06 00:39:37 -0700 | [diff] [blame] | 293 | if stacklevel <= 1 or _is_internal_frame(sys._getframe(1)): |
| 294 | # If frame is too small to care or if the warning originated in |
| 295 | # internal code, then do not try to hide any frames. |
| 296 | frame = sys._getframe(stacklevel) |
| 297 | else: |
| 298 | frame = sys._getframe(1) |
| 299 | # Look for one frame less since the above line starts us off. |
| 300 | for x in range(stacklevel-1): |
| 301 | frame = _next_external_frame(frame) |
| 302 | if frame is None: |
| 303 | raise ValueError |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 304 | except ValueError: |
| 305 | globals = sys.__dict__ |
Thomas Kluyver | 11a8966 | 2018-06-08 21:28:37 +0200 | [diff] [blame] | 306 | filename = "sys" |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 307 | lineno = 1 |
| 308 | else: |
Larry Hastings | 714e493 | 2015-09-06 00:39:37 -0700 | [diff] [blame] | 309 | globals = frame.f_globals |
Thomas Kluyver | 11a8966 | 2018-06-08 21:28:37 +0200 | [diff] [blame] | 310 | filename = frame.f_code.co_filename |
Larry Hastings | 714e493 | 2015-09-06 00:39:37 -0700 | [diff] [blame] | 311 | lineno = frame.f_lineno |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 312 | if '__name__' in globals: |
| 313 | module = globals['__name__'] |
| 314 | else: |
| 315 | module = "<string>" |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 316 | registry = globals.setdefault("__warningregistry__", {}) |
| 317 | warn_explicit(message, category, filename, lineno, module, registry, |
Victor Stinner | e19558a | 2016-03-23 00:28:08 +0100 | [diff] [blame] | 318 | globals, source) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 319 | |
| 320 | def warn_explicit(message, category, filename, lineno, |
Victor Stinner | 914cde8 | 2016-03-19 01:03:51 +0100 | [diff] [blame] | 321 | module=None, registry=None, module_globals=None, |
| 322 | source=None): |
Brett Cannon | db73491 | 2008-06-27 00:52:15 +0000 | [diff] [blame] | 323 | lineno = int(lineno) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 324 | if module is None: |
| 325 | module = filename or "<unknown>" |
| 326 | if module[-3:].lower() == ".py": |
| 327 | module = module[:-3] # XXX What about leading pathname? |
| 328 | if registry is None: |
| 329 | registry = {} |
Antoine Pitrou | cb0a006 | 2014-09-18 02:40:46 +0200 | [diff] [blame] | 330 | if registry.get('version', 0) != _filters_version: |
| 331 | registry.clear() |
| 332 | registry['version'] = _filters_version |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 333 | if isinstance(message, Warning): |
| 334 | text = str(message) |
| 335 | category = message.__class__ |
| 336 | else: |
| 337 | text = message |
| 338 | message = category(message) |
| 339 | key = (text, category, lineno) |
| 340 | # Quick test for common case |
| 341 | if registry.get(key): |
| 342 | return |
| 343 | # Search the filters |
| 344 | for item in filters: |
| 345 | action, msg, cat, mod, ln = item |
| 346 | if ((msg is None or msg.match(text)) and |
| 347 | issubclass(category, cat) and |
| 348 | (mod is None or mod.match(module)) and |
| 349 | (ln == 0 or lineno == ln)): |
| 350 | break |
| 351 | else: |
| 352 | action = defaultaction |
| 353 | # Early exit actions |
| 354 | if action == "ignore": |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 355 | return |
| 356 | |
| 357 | # Prime the linecache for formatting, in case the |
| 358 | # "file" is actually in a zipfile or something. |
Antoine Pitrou | 7cb11fa | 2013-10-24 22:23:42 +0200 | [diff] [blame] | 359 | import linecache |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 360 | linecache.getlines(filename, module_globals) |
| 361 | |
| 362 | if action == "error": |
| 363 | raise message |
| 364 | # Other actions |
| 365 | if action == "once": |
| 366 | registry[key] = 1 |
| 367 | oncekey = (text, category) |
| 368 | if onceregistry.get(oncekey): |
| 369 | return |
| 370 | onceregistry[oncekey] = 1 |
| 371 | elif action == "always": |
| 372 | pass |
| 373 | elif action == "module": |
| 374 | registry[key] = 1 |
| 375 | altkey = (text, category, 0) |
| 376 | if registry.get(altkey): |
| 377 | return |
| 378 | registry[altkey] = 1 |
| 379 | elif action == "default": |
| 380 | registry[key] = 1 |
| 381 | else: |
| 382 | # Unrecognized actions are errors |
| 383 | raise RuntimeError( |
| 384 | "Unrecognized action (%r) in warnings.filters:\n %s" % |
| 385 | (action, item)) |
| 386 | # Print message and context |
Victor Stinner | 914cde8 | 2016-03-19 01:03:51 +0100 | [diff] [blame] | 387 | msg = WarningMessage(message, category, filename, lineno, source) |
Victor Stinner | 1231a46 | 2016-03-19 00:47:17 +0100 | [diff] [blame] | 388 | _showwarnmsg(msg) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 389 | |
| 390 | |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 391 | class WarningMessage(object): |
| 392 | |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 393 | _WARNING_DETAILS = ("message", "category", "filename", "lineno", "file", |
Victor Stinner | 914cde8 | 2016-03-19 01:03:51 +0100 | [diff] [blame] | 394 | "line", "source") |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 395 | |
| 396 | def __init__(self, message, category, filename, lineno, file=None, |
Victor Stinner | 914cde8 | 2016-03-19 01:03:51 +0100 | [diff] [blame] | 397 | line=None, source=None): |
Alex Gaynor | 5de3a64 | 2017-06-04 11:34:16 -0400 | [diff] [blame] | 398 | self.message = message |
| 399 | self.category = category |
| 400 | self.filename = filename |
| 401 | self.lineno = lineno |
| 402 | self.file = file |
| 403 | self.line = line |
| 404 | self.source = source |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 405 | self._category_name = category.__name__ if category else None |
| 406 | |
| 407 | def __str__(self): |
| 408 | return ("{message : %r, category : %r, filename : %r, lineno : %s, " |
| 409 | "line : %r}" % (self.message, self._category_name, |
| 410 | self.filename, self.lineno, self.line)) |
| 411 | |
| 412 | |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 413 | class catch_warnings(object): |
| 414 | |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 415 | """A context manager that copies and restores the warnings filter upon |
| 416 | exiting the context. |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 417 | |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 418 | The 'record' argument specifies whether warnings should be captured by a |
| 419 | custom implementation of warnings.showwarning() and be appended to a list |
| 420 | returned by the context manager. Otherwise None is returned by the context |
| 421 | manager. The objects appended to the list are arguments whose attributes |
| 422 | mirror the arguments to showwarning(). |
| 423 | |
| 424 | The 'module' argument is to specify an alternative module to the module |
| 425 | named 'warnings' and imported under that name. This argument is only useful |
| 426 | when testing the warnings module itself. |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 427 | |
| 428 | """ |
| 429 | |
| 430 | def __init__(self, *, record=False, module=None): |
| 431 | """Specify whether to record warnings and if an alternative module |
| 432 | should be used other than sys.modules['warnings']. |
| 433 | |
| 434 | For compatibility with Python 3.0, please consider all arguments to be |
| 435 | keyword-only. |
| 436 | |
| 437 | """ |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 438 | self._record = record |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 439 | self._module = sys.modules['warnings'] if module is None else module |
Benjamin Peterson | fcf5d63 | 2008-10-16 23:24:44 +0000 | [diff] [blame] | 440 | self._entered = False |
| 441 | |
| 442 | def __repr__(self): |
| 443 | args = [] |
| 444 | if self._record: |
| 445 | args.append("record=True") |
| 446 | if self._module is not sys.modules['warnings']: |
| 447 | args.append("module=%r" % self._module) |
| 448 | name = type(self).__name__ |
| 449 | return "%s(%s)" % (name, ", ".join(args)) |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 450 | |
| 451 | def __enter__(self): |
Benjamin Peterson | fcf5d63 | 2008-10-16 23:24:44 +0000 | [diff] [blame] | 452 | if self._entered: |
| 453 | raise RuntimeError("Cannot enter %r twice" % self) |
| 454 | self._entered = True |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 455 | self._filters = self._module.filters |
| 456 | self._module.filters = self._filters[:] |
Antoine Pitrou | cb0a006 | 2014-09-18 02:40:46 +0200 | [diff] [blame] | 457 | self._module._filters_mutated() |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 458 | self._showwarning = self._module.showwarning |
Victor Stinner | 8ef46be | 2016-12-06 10:53:52 +0100 | [diff] [blame] | 459 | self._showwarnmsg_impl = self._module._showwarnmsg_impl |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 460 | if self._record: |
| 461 | log = [] |
Ned Deily | c1c3292 | 2016-12-06 17:12:47 -0500 | [diff] [blame] | 462 | self._module._showwarnmsg_impl = log.append |
Victor Stinner | 8ef46be | 2016-12-06 10:53:52 +0100 | [diff] [blame] | 463 | # Reset showwarning() to the default implementation to make sure |
| 464 | # that _showwarnmsg() calls _showwarnmsg_impl() |
Ned Deily | c1c3292 | 2016-12-06 17:12:47 -0500 | [diff] [blame] | 465 | self._module.showwarning = self._module._showwarning_orig |
Brett Cannon | 1cd0247 | 2008-09-09 01:52:27 +0000 | [diff] [blame] | 466 | return log |
| 467 | else: |
| 468 | return None |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 469 | |
| 470 | def __exit__(self, *exc_info): |
Benjamin Peterson | fcf5d63 | 2008-10-16 23:24:44 +0000 | [diff] [blame] | 471 | if not self._entered: |
| 472 | raise RuntimeError("Cannot exit %r without entering first" % self) |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 473 | self._module.filters = self._filters |
Antoine Pitrou | cb0a006 | 2014-09-18 02:40:46 +0200 | [diff] [blame] | 474 | self._module._filters_mutated() |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 475 | self._module.showwarning = self._showwarning |
Victor Stinner | 8ef46be | 2016-12-06 10:53:52 +0100 | [diff] [blame] | 476 | self._module._showwarnmsg_impl = self._showwarnmsg_impl |
Brett Cannon | ec92e18 | 2008-09-02 02:46:59 +0000 | [diff] [blame] | 477 | |
| 478 | |
Nathaniel J. Smith | fc2f407 | 2018-01-21 06:44:07 -0800 | [diff] [blame] | 479 | # Private utility function called by _PyErr_WarnUnawaitedCoroutine |
| 480 | def _warn_unawaited_coroutine(coro): |
| 481 | msg_lines = [ |
| 482 | f"coroutine '{coro.__qualname__}' was never awaited\n" |
| 483 | ] |
| 484 | if coro.cr_origin is not None: |
| 485 | import linecache, traceback |
| 486 | def extract(): |
| 487 | for filename, lineno, funcname in reversed(coro.cr_origin): |
| 488 | line = linecache.getline(filename, lineno) |
| 489 | yield (filename, lineno, funcname, line) |
| 490 | msg_lines.append("Coroutine created at (most recent call last)\n") |
| 491 | msg_lines += traceback.format_list(list(extract())) |
| 492 | msg = "".join(msg_lines).rstrip("\n") |
| 493 | # Passing source= here means that if the user happens to have tracemalloc |
| 494 | # enabled and tracking where the coroutine was created, the warning will |
| 495 | # contain that traceback. This does mean that if they have *both* |
| 496 | # coroutine origin tracking *and* tracemalloc enabled, they'll get two |
| 497 | # partially-redundant tracebacks. If we wanted to be clever we could |
| 498 | # probably detect this case and avoid it, but for now we don't bother. |
| 499 | warn(msg, category=RuntimeWarning, stacklevel=2, source=coro) |
| 500 | |
| 501 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 502 | # filters contains a sequence of filter 5-tuples |
| 503 | # The components of the 5-tuple are: |
| 504 | # - an action: error, ignore, always, default, module, or once |
| 505 | # - a compiled regex that must match the warning message |
| 506 | # - a class representing the warning category |
| 507 | # - a compiled regex that must match the module that is being warned |
| 508 | # - a line number for the line being warning, or 0 to mean any line |
| 509 | # If either if the compiled regexs are None, match anything. |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 510 | try: |
Brett Cannon | ef0e6c3 | 2010-09-04 18:24:04 +0000 | [diff] [blame] | 511 | from _warnings import (filters, _defaultaction, _onceregistry, |
Antoine Pitrou | cb0a006 | 2014-09-18 02:40:46 +0200 | [diff] [blame] | 512 | warn, warn_explicit, _filters_mutated) |
Brett Cannon | ef0e6c3 | 2010-09-04 18:24:04 +0000 | [diff] [blame] | 513 | defaultaction = _defaultaction |
| 514 | onceregistry = _onceregistry |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 515 | _warnings_defaults = True |
Brett Cannon | cd171c8 | 2013-07-04 17:43:24 -0400 | [diff] [blame] | 516 | except ImportError: |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 517 | filters = [] |
| 518 | defaultaction = "default" |
| 519 | onceregistry = {} |
| 520 | |
Antoine Pitrou | cb0a006 | 2014-09-18 02:40:46 +0200 | [diff] [blame] | 521 | _filters_version = 1 |
| 522 | |
| 523 | def _filters_mutated(): |
| 524 | global _filters_version |
| 525 | _filters_version += 1 |
| 526 | |
Victor Stinner | 09f3a8a | 2017-11-20 17:32:40 -0800 | [diff] [blame] | 527 | _warnings_defaults = False |
| 528 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 529 | |
Guido van Rossum | 2a862c6 | 2000-12-15 21:59:53 +0000 | [diff] [blame] | 530 | # Module initialization |
Tim Peters | 6602520 | 2004-03-21 17:06:20 +0000 | [diff] [blame] | 531 | _processoptions(sys.warnoptions) |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 532 | if not _warnings_defaults: |
Nick Coghlan | 9b99747 | 2018-01-08 12:45:02 +1000 | [diff] [blame] | 533 | # Several warning categories are ignored by default in regular builds |
Victor Stinner | 747f48e | 2017-12-12 22:59:48 +0100 | [diff] [blame] | 534 | if not hasattr(sys, 'gettotalrefcount'): |
Nick Coghlan | 9b99747 | 2018-01-08 12:45:02 +1000 | [diff] [blame] | 535 | filterwarnings("default", category=DeprecationWarning, |
| 536 | module="__main__", append=1) |
Victor Stinner | 747f48e | 2017-12-12 22:59:48 +0100 | [diff] [blame] | 537 | simplefilter("ignore", category=DeprecationWarning, append=1) |
| 538 | simplefilter("ignore", category=PendingDeprecationWarning, append=1) |
| 539 | simplefilter("ignore", category=ImportWarning, append=1) |
| 540 | simplefilter("ignore", category=ResourceWarning, append=1) |
Victor Stinner | 09f3a8a | 2017-11-20 17:32:40 -0800 | [diff] [blame] | 541 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 542 | del _warnings_defaults |