| Server IP : 61.19.30.66 / Your IP : 216.73.216.15 Web Server : Apache/2.2.22 (Ubuntu) System : Linux klw 3.11.0-15-generic #25~precise1-Ubuntu SMP Thu Jan 30 17:39:31 UTC 2014 x86_64 User : www-data ( 33) PHP Version : 5.3.10-1ubuntu3.48 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/lib/python2.7/dist-packages/apt/ |
Upload File : |
ó
WâRc @ sk d Z d d l Z d d l Z d d l Z d d l Z g Z d e f d „ ƒ YZ e d „ Z d „ Z
d S( s¯ Classes and functions for deprecating features.
This is used for internal purposes only and not part of the official API. Do
not use it for anything outside the apt package.
iÿÿÿÿNt AttributeDeprecatedByc B s, e Z d Z d „ Z d d „ Z d „ Z RS( s Property acting as a proxy for a new attribute.
When accessed, the property issues a DeprecationWarning and (on get) calls
attrgetter() for the attribute 'attribute' on the current object or (on
set) uses setattr to set the value of the wrapped attribute.
c C s, | | _ d | | _ t j | ƒ | _ d S( s Initialize the property.s# Deprecated, please use '%s' insteadN( t attributet __doc__t operatort
attrgettert getter( t selfR ( ( s3 /usr/lib/python2.7/dist-packages/apt/deprecation.pyt __init__* s
c C sK | d k r t | | j | ƒ St j | j t d d ƒ| j | pG | ƒ S( s; Issue a DeprecationWarning and return the requested value.t
stackleveli N( t Nonet getattrR t warningst warnR t DeprecationWarningR ( R t objt type_( ( s3 /usr/lib/python2.7/dist-packages/apt/deprecation.pyt __get__0 s c C s0 t j | j t d d ƒt | | j | ƒ d S( s8 Issue a DeprecationWarning and set the requested value.R i N( R R R R
t setattrR ( R R t value( ( s3 /usr/lib/python2.7/dist-packages/apt/deprecation.pyt __set__7 s N( t __name__t
__module__R R R R R ( ( ( s3 /usr/lib/python2.7/dist-packages/apt/deprecation.pyR "