예제 #1
0
파일: rcheck.py 프로젝트: agapow/relais.dev
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)
예제 #2
0
파일: rcheck.py 프로젝트: agapow/relais.dev
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)