Ejemplo n.º 1
0
def runtime_warning (msg):
	"""
	Issue a warning that the calling code is deprecated.
	"""
	called_from = debug.get_call_locn_str (-3)
	warnings.warn ("%s %s" % (called_from, msg), RuntimeWarning)
Ejemplo n.º 2
0
def warn_deprecated (msg='deprecated'):
	"""
	Issue a warning that the calling code is deprecated.
	"""
	called_from = debug.get_call_locn_str (-3)
	warnings.warn ("%s %s" % (called_from, msg), DeprecationWarning)