Uname: Linux server.digisquadtech.com 4.18.0-553.100.1.el8_10.x86_64 #1 SMP Mon Feb 2 04:13:33 EST 2026 x86_64
User: 1091 (madhavfluid)
Group: 1090 (madhavfluid)
Disabled functions: NONE
Safe mode: On[ PHPinfo ]
//usr/lib64/python3.6///__pycache__      ( Reset | Go to )
File Name: copy.cpython-36.opt-1.pyc
3

 \o"@sjdZddlZddlZddlmZGdddeZeZyddlm    Z    Wne
k
r\dZ    YnXdddgZ d    dZ iZ Zd
d ZxHedeeeeeeeeeeeejeeeeejejfD] Z eee <qWe!ed dZ e dk    reee <e"j ee"<e#j ee#<e$j ee$<e%j ee%<e    dk    r"e    j ee    <[[ dgfd dZ&iZ'ZddZ(e(eed<e(eee<e(eee<e(ee<e(ee<e(ee<e(ee<e(ee<e(ee<ye(eej)<Wne*k
rYnXe(ee<e(eej<e(eej<e(eej<e&fddZ+e+ee"<e&fddZ,e,ee<e&fddZ-e-ee#<e    dk    r2e-ee    <ddZ.e.eej/<[ddZ0ddde&fddZ1[[[    dS)aGeneric (shallow and deep) copying operations.

Interface summary:

        import copy

        x = copy.copy(y)        # make a shallow copy of y
        x = copy.deepcopy(y)    # make a deep copy of y

For module specific errors, copy.Error is raised.

The difference between shallow and deep copying is only relevant for
compound objects (objects that contain other objects, like lists or
class instances).

- A shallow copy constructs a new compound object and then (to the
  extent possible) inserts *the same objects* into it that the
  original contains.

- A deep copy constructs a new compound object and then, recursively,
  inserts *copies* into it of the objects found in the original.

Two problems often exist with deep copy operations that don't exist
with shallow copy operations:

 a) recursive objects (compound objects that, directly or indirectly,
    contain a reference to themselves) may cause a recursive loop

 b) because deep copy copies *everything* it may copy too much, e.g.
    administrative data structures that should be shared even between
    copies

Python's deep copy operation avoids these problems by:

 a) keeping a table of objects already copied during the current
    copying pass

 b) letting user-defined classes override the copying operation or the
    set of components copied

This version does not copy types like module, class, function, method,
nor stack trace, stack frame, nor file, socket, window, nor array, nor
any similar types.

Classes can use the same interfaces to control copying that they use
to control pickling: they can define methods called __getinitargs__(),
__getstate__() and __setstate__().  See the documentation for module
"pickle" for information on these methods.
N)dispatch_tablec@s eZdZdS)ErrorN)__name__
__module__ __qualname__rr/usr/lib64/python3.6/copy.pyr7sr) PyStringMapcopydeepcopyc Cst|}tj|}|r||Syt|t}Wntk
rDd}YnX|rRt|St|dd}|rj||Stj|}|r||}n>t|dd}|r|d}n$t|dd}|r|}n td|t    |t
r|St |df|S)zlShallow copy operation on arbitrary Python objects.

    See the module's __doc__ string for more info.
    F__copy__N __reduce_ex__
__reduce__z%un(shallow)copyable object of type %s) type_copy_dispatchget
issubclass    TypeError_copy_immutablegetattrrr
isinstancestr _reconstruct)xclscopierisscreductorrvrrrr
Bs4

 

 
  
cCs|S)Nr)rrrrrosrCodeTypec
Cs8|dkr i}t|}|j||}||k    r,|St|}tj|}|rN|||}nyt|t}Wntk
rtd}YnX|rt||}nt|dd}|r||}nxtj|}|r||}    n>t|dd}|r|d}    n$t|dd}|r|}    n t    d|t
|    t r|}nt ||f|    }||k    r4|||<t |||S)ziDeep copy operation on arbitrary Python objects.

    See the module's __doc__ string for more info.
    Nr __deepcopy__r rrz"un(deep)copyable object of type %s)idrr_deepcopy_dispatchrr_deepcopy_atomicrrrrrr _keep_alive)
rmemoZ_nildyrrrrrrrrr sJ 
 
  


 
 
 

cCs|S)Nr)rr&rrrr$sr$cCs6g}||t|<|j}x|D]}||||qW|S)N)r"append)rr&r r(r)arrr_deepcopy_lists  
r+c shfdd|D}y t|Stk
r4YnXx,t||D]\}}||k    rBt|}PqBW|}|S)Ncsg|]}|qSrr).0r*)r r&rr
<listcomp>sz#_deepcopy_tuple.<locals>.<listcomp>)r"KeyErrorziptuple)rr&r r(kjr)r r&r_deepcopy_tuples r3cCs>i}||t|<x(|jD]\}}|||||||<qW|S)N)r"items)rr&r r(keyvaluerrr_deepcopy_dicts
 r7cCst||jt|j|S)N)r__func__r __self__)rr&rrr_deepcopy_methodsr:c Cs>y|t|j|Wn"tk
r8|g|t|<YnXdS)aMKeeps a reference to the object x in the memo.

    Because we remember objects by their id, we have
    to assure that possibly temporary objects are kept
    alive by referencing them.
    We store a reference at the id of the memo, which should
    normally not be used unless someone tries to deepcopy
    the memo itself...
    N)r"r)r.)rr&rrrr%s
r%csxdk    }|r$|r$fdd|D}||}    |r<|    t|<|dk    r|rR|}t|    drh|    j|nbt|trt|dkr|\}}
nd}
|dk    r|    jj||
dk    rx |
jD]\} } t    |    | | qW|dk    r|rx<|D]} | } |    j
| qWnx|D]} |    j
| qW|dk    rt|rXxL|D]&\} } | } | } | |    | <q,Wnx|D]\} } | |    | <q^W|    S)Nc3s|]}|VqdS)Nr)r,arg)r r&rr    <genexpr>sz_reconstruct.<locals>.<genexpr> __setstate__) r"hasattrr=rr0len__dict__updater4setattrr))rr&funcargsstateZlistiterZdictiterr Zdeepr(Z    slotstater5r6itemr)r r&rr sF 

 
 






r)2__doc__typesweakrefcopyregr    ExceptionrerrorZorg.python.corer     ImportError__all__r
rr'rrintfloatboolcomplexrr0bytes    frozensetrangesliceBuiltinFunctionTypeEllipsisNotImplemented FunctionTypereftrlistdictset    bytearrayr r#r$r AttributeErrorr+r3r7r:
MethodTyper%rrrrr<module>1s~ 

+
  





8   


   

 +

All system for education purposes only. For more tools: Telegram @jackleet

Mr.X Private Shell

Logo
-
New File | New Folder
Command
SQL