/usr/lib/python2.6/site-packages/debtcollector
Edit: /usr/lib/python2.6/site-packages/debtcollector/_utils.pyc (4787B)
Ñò
}DVc @ s® d d k Z d d k Z d d k Z d d k Z y
e i Z Wn e j
o
e Z n Xd Z d d d „ Z
d „ Z d d d d d „ Z e
d „ Z d
„ Z d „ Z d S(
iÿÿÿÿNt builtinst __builtin__t __builtins__t
exceptionsc C sX | d j o
t } n | d j o t i | d | ƒn t i | d | d | ƒd S( s„ Warns about some type of deprecation that has been (or will be) made.
This helper function makes it easier to interact with the warnings module
by standardizing the arguments that the warning function recieves so that
it is easier to use.
This should be used to emit warnings to users (users can easily turn these
warnings off/on, see https://docs.python.org/2/library/warnings.html
as they see fit so that the messages do not fill up the users logs with
warnings that they do not wish to see in production) about functions,
methods, attributes or other code that is deprecated and will be removed
in a future release (this is done using these warnings to avoid breaking
existing users of those functions, methods, code; which a library should
avoid doing by always giving at *least* N + 1 release for users to address
the deprecation warnings).
t categoryt
stacklevelN( t Nonet DeprecationWarningt warningst warn( t messageR R ( ( s; /tmp/pip-build-lt8jXN/debtcollector/debtcollector/_utils.pyt deprecation# s
c C s5 y t | i f SWn t j
o t | i f SXd S( N( t Truet __qualname__t AttributeErrort Falset __name__( t obj( ( s; /tmp/pip-build-lt8jXN/debtcollector/debtcollector/_utils.pyt get_qualified_name<