DonatShell
Server IP : 180.180.241.3  /  Your IP : 216.73.216.252
Web Server : Microsoft-IIS/7.5
System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586
User : IUSR ( 0)
PHP Version : 5.3.28
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /Program Files/MySQL/MySQL Workbench 6.3 CE/python/lib/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /Program Files/MySQL/MySQL Workbench 6.3 CE/python/lib/copy.pyc
ó
rKXc@s›dZddlZddlZddlmZdefd„ƒYZeZyddlm	Z	Wne
k
rwdZ	nXdddgZd	„Z
iZZd
„Zx]edƒeeeeeeeeeejejeeƒejejfD]Zeee<qïWx9dD]1Z e!ee dƒZedk	r
eee<q
q
Wd„Z"x!e#e$e%fD]Ze"ee<qXWd„Z&e	dk	rŽe&ee	<nd„Z'e'eej(<[dgd„Z)iZ*Zd„Z+e+eedƒ<e+eeeƒ<e+ee<e+ee<e+ee<e+ee<ye+ee,<Wne-k
r2nXe+ee<ye+ee.<Wne-k
r^nXye+eej/<Wne0k
rƒnXe+ee<e+ee<e+eej<e+eej<e+eej<e+eej<d„Z1e1ee#<d„Z2e2ee<d„Z3e3ee$<e	dk	re3ee	<nd„Z4e4e*ej5<d„Z6d„Z7e7eej(<dd„Z8[[ddd„ƒYZ9d„Z:e;dkr—e:ƒndS( sÍGeneric (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.
iÿÿÿÿN(tdispatch_tabletErrorcBseZRS((t__name__t
__module__(((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyR7s(tPyStringMaptcopytdeepcopycCsÜt|ƒ}tj|ƒ}|r+||ƒSt|ddƒ}|rM||ƒStj|ƒ}|rq||ƒ}n[t|ddƒ}|r˜|dƒ}n4t|ddƒ}|r¼|ƒ}ntd|ƒ‚t||dƒS(slShallow copy operation on arbitrary Python objects.

    See the module's __doc__ string for more info.
    t__copy__t
__reduce_ex__it
__reduce__s%un(shallow)copyable object of type %siN(ttypet_copy_dispatchtgettgetattrtNoneRRt_reconstruct(txtclstcopiertreductortrv((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyRBs$

cCs|S(N((R((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyt_copy_immutableestComplexTypetUnicodeTypetCodeTypecCst|ƒ|ƒS(N(R
(R((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyt_copy_with_constructorqscCs
|jƒS(N(R(R((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyt_copy_with_copy_methodvscCsµt|dƒr|jƒSt|dƒrF|jƒ}|j|Œ}ntƒ}|j|_t|dƒry|jƒ}n	|j}t|dƒr¡|j|ƒn|jj|ƒ|S(NRt__getinitargs__t__getstate__t__setstate__(	thasattrRRt	__class__t_EmptyClassRt__dict__Rtupdate(Rtargstytstate((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyt
_copy_inst{s
		c
Cs‘|dkri}nt|ƒ}|j||ƒ}||k	rC|St|ƒ}tj|ƒ}|rv|||ƒ}nyt|tƒ}Wntk
r¢d}nX|r»t||ƒ}n»t|ddƒ}|râ||ƒ}n”t	j|ƒ}|r||ƒ}	n[t|ddƒ}|r-|dƒ}	n4t|ddƒ}|rQ|ƒ}	nt
d|ƒ‚t||	d|ƒ}|||<t||ƒ|S(	siDeep copy operation on arbitrary Python objects.

    See the module's __doc__ string for more info.
    it__deepcopy__RiR	s"un(deep)copyable object of type %siN(
RtidRR
t_deepcopy_dispatcht
issubclasst	TypeErrort_deepcopy_atomicR
RRRt_keep_alive(
Rtmemot_niltdR$RRtisscRR((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyR‘sD	




cCs|S(N((RR.((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyR,ÆscCsAg}||t|ƒ<x$|D]}|jt||ƒƒqW|S(N(R(tappendR(RR.R$ta((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyt_deepcopy_listâs

cCs®g}x$|D]}|jt||ƒƒq
Wt|ƒ}y||SWntk
rXnXxDtt|ƒƒD]*}||||k	rlt|ƒ}PqlqlW|}|||<|S(N(R2RR(tKeyErrortrangetlenttuple(RR.R$R3R0ti((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyt_deepcopy_tupleês


cCsSi}||t|ƒ<x6|jƒD](\}}t||ƒ|t||ƒ<q#W|S(N(R(t	iteritemsR(RR.R$tkeytvalue((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyt_deepcopy_dictýs
 cCs(t|ƒ|jt|j|ƒ|jƒS(N(R
tim_funcRtim_selftim_class(RR.((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyt_deepcopy_methodscCsFy|t|ƒj|ƒWn$tk
rA|g|t|ƒ<nXdS(sMKeeps 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(R2R5(RR.((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyR-s

cCsæt|dƒr|j|ƒSt|dƒrX|jƒ}t||ƒ}|j|Œ}ntƒ}|j|_||t|ƒ<t|dƒr›|jƒ}n	|j}t||ƒ}t|dƒrÒ|j	|ƒn|jj
|ƒ|S(NR'RRR(RR'RRRR R(RR!RR"(RR.R#R$R%((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyt_deepcopy_insts"
		cCsst|tƒr|St|tƒs(t‚|dkr=i}nt|ƒ}|dks[t‚|d \}}|dkr„|d}nd}|dkr£|d}nd}|dkrÂ|d}	nd}	|ràt||ƒ}n||Œ}
|
|t|ƒ<|dk	rÓ|r t||ƒ}nt|
dƒr?|
j	|ƒqÓt|tƒrot|ƒdkro|\}}nd}|dk	r”|
j
j|ƒn|dk	rÓx-|jƒD]\}}
t
|
||
ƒq­WqÓn|dk	rx6|D]+}|rt||ƒ}n|
j|ƒqæWn|	dk	roxH|	D]=\}}
|r^t||ƒ}t|
|ƒ}
n|
|
|<q+Wn|
S(NiiiiR(iiii(t
isinstancetstrR8tAssertionErrorRR7RR(RRR!R"R;tsetattrR2(RtinfotdeepR.tntcallableR#R%tlistitertdictiterR$t	slotstateR<R=titem((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyR2s\	


!
R cBseZRS((RR(((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyR nsc
Cs	ddddddddgidd6dgig}t|ƒ}||kGHtt|ƒ}||kGHt|ƒ}||kGHddd„ƒY}|d	ƒ}|j|ƒt|ƒ}||kGH|GH|GHt|ƒ}||kGH|GH|GH|ji||d6|d
d6ƒt|ƒ}ddl}t|j|ƒGHt|j|ƒGHt|j|ƒGHt|j|ƒGHt|ƒ}ddl}t|j|ƒGHt|j|ƒGHt|j|ƒGHt|j|ƒGHd
tfd„ƒY}|idd6ƒ}t|ƒ}	||	fGHdS(Nilg…ëQ¸	@txyzzytabctABCtCcBs2eZdd„Zd„Zd„Zdd„ZRS(cSs`d|_||_tdkr:ddl}|jd}nt}t|ƒ|_|jjƒdS(Nit__main__iÿÿÿÿi(	R3targRtsystargvt__file__topentfptclose(tselfRURVtfile((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyt__init__{s		cSsi|jd6|jd6S(NR3RU(R3RU(R\((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyR…scSs1x*|jƒD]\}}t|||ƒq
WdS(N(R;RG(R\R%R<R=((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyR‡scSs+|jt|j|ƒƒ}|j|_|S(N(RRRUR3(R\R.tnew((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyR'ŠsN(RRRR^RRR'(((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyRSzs
		sargument sketchitxyziÿÿÿÿtodictcBseZid„Zd„ZRS(cSsd|_tj||ƒdS(Nic(R3tdictR^(R\R0((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyR^¦s	cSstj|||ƒ|jdS(N(Rbt__setitem__R3(R\tkR9((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyRc©s(RRR^Rc(((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyRa¥stBtA(il(((RRtmapRR2treprRb(
tltl1RStctl2tl3RhRatoR((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyt_testqsH
#RT(sComplexTypesUnicodeTypesCodeType((<t__doc__ttypestweakreftcopy_regRt	ExceptionRterrortorg.python.coreRtImportErrorRt__all__RRR0RR
tinttlongtfloattboolRER8t	frozensettxranget	ClassTypetBuiltinFunctionTypetEllipsistFunctionTypetreftttnameR
RtlistRbtsetRR&tInstanceTypeRR)R,tcomplext	NameErrortunicodeRtAttributeErrorR4R:R>RBt
MethodTypeR-RCRR RoR(((s@C:\Program Files\MySQL\MySQL Workbench 6.3 CE\Python\Lib\copy.pyt<module>1sž

	!
	
		
	
3
	













	
	
	

	
		
7	?

Anon7 - 2022
AnonSec Team