Tweak the comments and formatting.
[python.git] / Lib / warnings.py
blobd9e6e4458722276ca7a04e2f6d384b8b431b76a4
1 """Python part of the warnings subsystem."""
3 # Note: function level imports should *not* be used
4 # in this module as it may cause import lock deadlock.
5 # See bug 683658.
6 import linecache
7 import sys
8 import types
10 __all__ = ["warn", "showwarning", "formatwarning", "filterwarnings",
11 "resetwarnings"]
14 def warnpy3k(message, category=None, stacklevel=1):
15 """Issue a deprecation warning for Python 3.x related changes.
17 Warnings are omitted unless Python is started with the -3 option.
18 """
19 if sys.py3kwarning:
20 if category is None:
21 category = DeprecationWarning
22 warn(message, category, stacklevel+1)
24 def _show_warning(message, category, filename, lineno, file=None, line=None):
25 """Hook to write a warning to a file; replace if you like."""
26 if file is None:
27 file = sys.stderr
28 try:
29 file.write(formatwarning(message, category, filename, lineno, line))
30 except IOError:
31 pass # the file (probably stderr) is invalid - this warning gets lost.
32 # Keep a worrking version around in case the deprecation of the old API is
33 # triggered.
34 showwarning = _show_warning
36 def formatwarning(message, category, filename, lineno, line=None):
37 """Function to format a warning the standard way."""
38 s = "%s:%s: %s: %s\n" % (filename, lineno, category.__name__, message)
39 line = linecache.getline(filename, lineno) if line is None else line
40 if line:
41 line = line.strip()
42 s += " %s\n" % line
43 return s
45 def filterwarnings(action, message="", category=Warning, module="", lineno=0,
46 append=0):
47 """Insert an entry into the list of warnings filters (at the front).
49 Use assertions to check that all arguments have the right type."""
50 import re
51 assert action in ("error", "ignore", "always", "default", "module",
52 "once"), "invalid action: %r" % (action,)
53 assert isinstance(message, basestring), "message must be a string"
54 assert isinstance(category, (type, types.ClassType)), \
55 "category must be a class"
56 assert issubclass(category, Warning), "category must be a Warning subclass"
57 assert isinstance(module, basestring), "module must be a string"
58 assert isinstance(lineno, int) and lineno >= 0, \
59 "lineno must be an int >= 0"
60 item = (action, re.compile(message, re.I), category,
61 re.compile(module), lineno)
62 if append:
63 filters.append(item)
64 else:
65 filters.insert(0, item)
67 def simplefilter(action, category=Warning, lineno=0, append=0):
68 """Insert a simple entry into the list of warnings filters (at the front).
70 A simple filter matches all modules and messages.
71 """
72 assert action in ("error", "ignore", "always", "default", "module",
73 "once"), "invalid action: %r" % (action,)
74 assert isinstance(lineno, int) and lineno >= 0, \
75 "lineno must be an int >= 0"
76 item = (action, None, category, None, lineno)
77 if append:
78 filters.append(item)
79 else:
80 filters.insert(0, item)
82 def resetwarnings():
83 """Clear the list of warning filters, so that no filters are active."""
84 filters[:] = []
86 class _OptionError(Exception):
87 """Exception used by option processing helpers."""
88 pass
90 # Helper to process -W options passed via sys.warnoptions
91 def _processoptions(args):
92 for arg in args:
93 try:
94 _setoption(arg)
95 except _OptionError, msg:
96 print >>sys.stderr, "Invalid -W option ignored:", msg
98 # Helper for _processoptions()
99 def _setoption(arg):
100 import re
101 parts = arg.split(':')
102 if len(parts) > 5:
103 raise _OptionError("too many fields (max 5): %r" % (arg,))
104 while len(parts) < 5:
105 parts.append('')
106 action, message, category, module, lineno = [s.strip()
107 for s in parts]
108 action = _getaction(action)
109 message = re.escape(message)
110 category = _getcategory(category)
111 module = re.escape(module)
112 if module:
113 module = module + '$'
114 if lineno:
115 try:
116 lineno = int(lineno)
117 if lineno < 0:
118 raise ValueError
119 except (ValueError, OverflowError):
120 raise _OptionError("invalid lineno %r" % (lineno,))
121 else:
122 lineno = 0
123 filterwarnings(action, message, category, module, lineno)
125 # Helper for _setoption()
126 def _getaction(action):
127 if not action:
128 return "default"
129 if action == "all": return "always" # Alias
130 for a in ('default', 'always', 'ignore', 'module', 'once', 'error'):
131 if a.startswith(action):
132 return a
133 raise _OptionError("invalid action: %r" % (action,))
135 # Helper for _setoption()
136 def _getcategory(category):
137 import re
138 if not category:
139 return Warning
140 if re.match("^[a-zA-Z0-9_]+$", category):
141 try:
142 cat = eval(category)
143 except NameError:
144 raise _OptionError("unknown warning category: %r" % (category,))
145 else:
146 i = category.rfind(".")
147 module = category[:i]
148 klass = category[i+1:]
149 try:
150 m = __import__(module, None, None, [klass])
151 except ImportError:
152 raise _OptionError("invalid module name: %r" % (module,))
153 try:
154 cat = getattr(m, klass)
155 except AttributeError:
156 raise _OptionError("unknown warning category: %r" % (category,))
157 if not issubclass(cat, Warning):
158 raise _OptionError("invalid warning category: %r" % (category,))
159 return cat
162 # Code typically replaced by _warnings
163 def warn(message, category=None, stacklevel=1):
164 """Issue a warning, or maybe ignore it or raise an exception."""
165 # Check if message is already a Warning object
166 if isinstance(message, Warning):
167 category = message.__class__
168 # Check category argument
169 if category is None:
170 category = UserWarning
171 assert issubclass(category, Warning)
172 # Get context information
173 try:
174 caller = sys._getframe(stacklevel)
175 except ValueError:
176 globals = sys.__dict__
177 lineno = 1
178 else:
179 globals = caller.f_globals
180 lineno = caller.f_lineno
181 if '__name__' in globals:
182 module = globals['__name__']
183 else:
184 module = "<string>"
185 filename = globals.get('__file__')
186 if filename:
187 fnl = filename.lower()
188 if fnl.endswith((".pyc", ".pyo")):
189 filename = filename[:-1]
190 else:
191 if module == "__main__":
192 try:
193 filename = sys.argv[0]
194 except AttributeError:
195 # embedded interpreters don't have sys.argv, see bug #839151
196 filename = '__main__'
197 if not filename:
198 filename = module
199 registry = globals.setdefault("__warningregistry__", {})
200 warn_explicit(message, category, filename, lineno, module, registry,
201 globals)
203 def warn_explicit(message, category, filename, lineno,
204 module=None, registry=None, module_globals=None):
205 if module is None:
206 module = filename or "<unknown>"
207 if module[-3:].lower() == ".py":
208 module = module[:-3] # XXX What about leading pathname?
209 if registry is None:
210 registry = {}
211 if isinstance(message, Warning):
212 text = str(message)
213 category = message.__class__
214 else:
215 text = message
216 message = category(message)
217 key = (text, category, lineno)
218 # Quick test for common case
219 if registry.get(key):
220 return
221 # Search the filters
222 for item in filters:
223 action, msg, cat, mod, ln = item
224 if ((msg is None or msg.match(text)) and
225 issubclass(category, cat) and
226 (mod is None or mod.match(module)) and
227 (ln == 0 or lineno == ln)):
228 break
229 else:
230 action = defaultaction
231 # Early exit actions
232 if action == "ignore":
233 registry[key] = 1
234 return
236 # Prime the linecache for formatting, in case the
237 # "file" is actually in a zipfile or something.
238 linecache.getlines(filename, module_globals)
240 if action == "error":
241 raise message
242 # Other actions
243 if action == "once":
244 registry[key] = 1
245 oncekey = (text, category)
246 if onceregistry.get(oncekey):
247 return
248 onceregistry[oncekey] = 1
249 elif action == "always":
250 pass
251 elif action == "module":
252 registry[key] = 1
253 altkey = (text, category, 0)
254 if registry.get(altkey):
255 return
256 registry[altkey] = 1
257 elif action == "default":
258 registry[key] = 1
259 else:
260 # Unrecognized actions are errors
261 raise RuntimeError(
262 "Unrecognized action (%r) in warnings.filters:\n %s" %
263 (action, item))
264 # Warn if showwarning() does not support the 'line' argument.
265 # Don't use 'inspect' as it relies on an extension module, which break the
266 # build thanks to 'warnings' being imported by setup.py.
267 fxn_code = None
268 if hasattr(showwarning, 'func_code'):
269 fxn_code = showwarning.func_code
270 elif hasattr(showwarning, '__func__'):
271 fxn_code = showwarning.__func__.func_code
272 if fxn_code:
273 args = fxn_code.co_varnames[:fxn_code.co_argcount]
274 if 'line' not in args:
275 showwarning_msg = ("functions overriding warnings.showwarning() "
276 "must support the 'line' argument")
277 if message == showwarning_msg:
278 _show_warning(message, category, filename, lineno)
279 else:
280 warn(showwarning_msg, DeprecationWarning)
281 # Print message and context
282 showwarning(message, category, filename, lineno)
285 # filters contains a sequence of filter 5-tuples
286 # The components of the 5-tuple are:
287 # - an action: error, ignore, always, default, module, or once
288 # - a compiled regex that must match the warning message
289 # - a class representing the warning category
290 # - a compiled regex that must match the module that is being warned
291 # - a line number for the line being warning, or 0 to mean any line
292 # If either if the compiled regexs are None, match anything.
293 _warnings_defaults = False
294 try:
295 from _warnings import (filters, default_action, once_registry,
296 warn, warn_explicit)
297 defaultaction = default_action
298 onceregistry = once_registry
299 _warnings_defaults = True
300 except ImportError:
301 filters = []
302 defaultaction = "default"
303 onceregistry = {}
306 # Module initialization
307 _processoptions(sys.warnoptions)
308 if not _warnings_defaults:
309 simplefilter("ignore", category=PendingDeprecationWarning, append=1)
310 simplefilter("ignore", category=ImportWarning, append=1)
311 bytes_warning = sys.flags.bytes_warning
312 if bytes_warning > 1:
313 bytes_action = "error"
314 elif bytes_warning:
315 bytes_action = "default"
316 else:
317 bytes_action = "ignore"
318 simplefilter(bytes_action, category=BytesWarning, append=1)
319 del _warnings_defaults