AnonSec Shell
Server IP : 85.193.89.191  /  Your IP : 18.222.46.156
Web Server : Apache
System : Linux 956367-cx40159.tmweb.ru 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
User : bitrix ( 600)
PHP Version : 8.1.27
Disable Function : NONE
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /proc/981/cwd/lib/python2.7/site-packages/iniparse/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /proc/981/cwd/lib/python2.7/site-packages/iniparse/config.pyo
�
���Kc@sOdefd��YZdefd��YZdefd��YZd�ZdS(tConfigNamespacecBsqeZdZd�Zd�Zd�Zd�Zd�Zd�Zd�Z	d�Z
d	�Zd
�Zd�Z
RS(s�Abstract class representing the interface of Config objects.

    A ConfigNamespace is a collection of names mapped to values, where
    the values may be nested namespaces.  Values can be accessed via
    container notation - obj[key] - or via dotted notation - obj.key.
    Both these access methods are equivalent.

    To minimize name conflicts between namespace keys and class members,
    the number of class members should be minimized, and the names of
    all class members should start with an underscore.

    Subclasses must implement the methods for container-like access,
    and this class will automatically provide dotted access.

    cCs
t|�S(N(tNotImplementedError(tselftkey((s3/usr/lib/python2.7/site-packages/iniparse/config.pyt_getitemscCst||��dS(N(R(RRtvalue((s3/usr/lib/python2.7/site-packages/iniparse/config.pyt__setitem__scCst|��dS(N(R(RR((s3/usr/lib/python2.7/site-packages/iniparse/config.pyt__delitem__scCst�S(N(R(R((s3/usr/lib/python2.7/site-packages/iniparse/config.pyt__iter__scCst|��dS(N(R(Rtname((s3/usr/lib/python2.7/site-packages/iniparse/config.pyt_new_namespace scCs*y|j|�Wntk
r%tSXtS(N(RtKeyErrortFalsetTrue(RR((s3/usr/lib/python2.7/site-packages/iniparse/config.pyt__contains__#s

cCs3y|j|�SWntk
r.t||�SXdS(N(RRt	Undefined(RR((s3/usr/lib/python2.7/site-packages/iniparse/config.pyt__getitem__6s
cCsZy|j|�SWnBtk
rU|jd�rH|jd�rHt�nt||�SXdS(Nt__(RRt
startswithtendswithtAttributeErrorR(RR	((s3/usr/lib/python2.7/site-packages/iniparse/config.pyt__getattr__<s
	cCsOy'tj||�tj|||�Wn!tk
rJ|j||�nXdS(N(tobjectt__getattribute__t__setattr__RR(RR	R((s3/usr/lib/python2.7/site-packages/iniparse/config.pyRDs

cCsIy$tj||�tj||�Wntk
rD|j|�nXdS(N(RRt__delattr__RR(RR	((s3/usr/lib/python2.7/site-packages/iniparse/config.pyRKs

cCs|jj|�dS(N(t__dict__tupdate(Rtstate((s3/usr/lib/python2.7/site-packages/iniparse/config.pyt__setstate__Vs(t__name__t
__module__t__doc__RRRRR
RRRRRR(((s3/usr/lib/python2.7/site-packages/iniparse/config.pyRs										RcBs)eZdZd�Zd�Zd�ZRS(sHelper class used to hold undefined names until assignment.

    This class helps create any undefined subsections when an
    assignment is made to a nested value.  For example, if the
    statement is "cfg.a.b.c = 42", but "cfg.a.b" does not exist yet.
    cCs*tj|d|�tj|d|�dS(NR	t	namespace(RR(RR	R!((s3/usr/lib/python2.7/site-packages/iniparse/config.pyt__init__ascCs#|jj|j�}|||<dS(N(R!R
R	(RR	Rtobj((s3/usr/lib/python2.7/site-packages/iniparse/config.pyRescCs#|jj|j�}|||<dS(N(R!R
R	(RR	RR#((s3/usr/lib/python2.7/site-packages/iniparse/config.pyRis(RRR R"RR(((s3/usr/lib/python2.7/site-packages/iniparse/config.pyRYs		tBasicConfigcBs_eZdZd
Zd�Zd�Zd�Zd�Zd�Z	dd�Z
d�Zd	�ZRS(s�Represents a hierarchical collection of named values.

    Values are added using dotted notation:

    >>> n = BasicConfig()
    >>> n.x = 7
    >>> n.name.first = 'paramjit'
    >>> n.name.last = 'oberoi'

    ...and accessed the same way, or with [...]:

    >>> n.x
    7
    >>> n.name.first
    'paramjit'
    >>> n.name.last
    'oberoi'
    >>> n['x']
    7
    >>> n['name']['first']
    'paramjit'

    Iterating over the namespace object returns the keys:

    >>> l = list(n)
    >>> l.sort()
    >>> l
    ['name', 'x']

    Values can be deleted using 'del' and printed using 'print'.

    >>> n.aaa = 42
    >>> del n.x
    >>> print n
    aaa = 42
    name.first = paramjit
    name.last = oberoi

    Nested namepsaces are also namespaces:

    >>> isinstance(n.name, ConfigNamespace)
    True
    >>> print n.name
    first = paramjit
    last = oberoi
    >>> sorted(list(n.name))
    ['first', 'last']

    Finally, values can be read from a file as follows:

    >>> from StringIO import StringIO
    >>> sio = StringIO('''
    ... # comment
    ... ui.height = 100
    ... ui.width = 150
    ... complexity = medium
    ... have_python
    ... data.secret.password = goodness=gracious me
    ... ''')
    >>> n = BasicConfig()
    >>> n._readfp(sio)
    >>> print n
    complexity = medium
    data.secret.password = goodness=gracious me
    have_python
    ui.height = 100
    ui.width = 150
    cCs
i|_dS(N(t_data(R((s3/usr/lib/python2.7/site-packages/iniparse/config.pyR"�scCs|j|S(N(R%(RR((s3/usr/lib/python2.7/site-packages/iniparse/config.pyR�scCs||j|<dS(N(R%(RRR((s3/usr/lib/python2.7/site-packages/iniparse/config.pyR�scCs|j|=dS(N(R%(RR((s3/usr/lib/python2.7/site-packages/iniparse/config.pyR�scCs
t|j�S(N(titerR%(R((s3/usr/lib/python2.7/site-packages/iniparse/config.pyR�stcCs�g}|jj�}|j�x�|D]�}|j|}t|t�rn|j|jdd||f��q&|dkr�|jd||f�q&|jd|||f�q&Wdj|�S(Ntprefixs%s%s.s%s%ss	%s%s = %ss
(	R%tkeystsortt
isinstanceRtappendt__str__tNonetjoin(RR(tlinesR)R	R((s3/usr/lib/python2.7/site-packages/iniparse/config.pyR-�s


&cCst�}||j|<|S(N(R$R%(RR	R#((s3/usr/lib/python2.7/site-packages/iniparse/config.pyR
�s	
c	Cs)x"tr$|j�}|sPn|j�}|s7qn|ddkrMqn|jdd�}t|�dkr�|}d}n |dj�}|dj�}|jd�}|}x[|d D]O}||kr||}t|t�std|��qq�|j	|�}q�W|||d<qWdS(Nit#t=it.i����svalue-namespace conflict(
R
treadlinetstriptsplittlenR.R+Rt	TypeErrorR
(	RtfptlinetdataR	Rtname_componentstnstn((s3/usr/lib/python2.7/site-packages/iniparse/config.pyt_readfp�s0		
N(
RRR R.R%R"RRRRR-R
R?(((s3/usr/lib/python2.7/site-packages/iniparse/config.pyR$psD						cCs�x�|D]}||}t|t�r|||kr]||}t|t�sltd��qln|j|�}t||�q|||<qWdS(s�Imports values from source into target.

    Recursively walks the <source> ConfigNamespace and inserts values
    into the <target> ConfigNamespace.  For example:

    >>> n = BasicConfig()
    >>> n.playlist.expand_playlist = True
    >>> n.ui.display_clock = True
    >>> n.ui.display_qlength = True
    >>> n.ui.width = 150
    >>> print n
    playlist.expand_playlist = True
    ui.display_clock = True
    ui.display_qlength = True
    ui.width = 150

    >>> from iniparse import ini
    >>> i = ini.INIConfig()
    >>> update_config(i, n)
    >>> print i
    [playlist]
    expand_playlist = True
    <BLANKLINE>
    [ui]
    display_clock = True
    display_qlength = True
    width = 150

    svalue-namespace conflictN(R+RR8R
t
update_config(ttargettsourceR	Rtmyns((s3/usr/lib/python2.7/site-packages/iniparse/config.pyR@�s


N(RRRR$R@(((s3/usr/lib/python2.7/site-packages/iniparse/config.pyt<module>sX�

Anon7 - 2022
AnonSec Team