a ê|_ßã@s¦dZgd¢ZiZddd„Zdd„ZzeWney<Yn0dd„Zeeeeƒd d „Zd Z d d „Z dd„Z dd„Z dd„Z iZiZiZdd„Zdd„Zdd„ZdS)z¤Helper to provide extensibility for pickle. This is only useful to add pickle support for extension types defined in C, not for instances of user-defined classes. )ÚpickleÚ constructorÚ add_extensionÚremove_extensionÚclear_extension_cacheNcCs,t|ƒstdƒ‚|t|<|dur(t|ƒdS)Nz$reduction functions must be callable)ÚcallableÚ TypeErrorÚdispatch_tabler)Zob_typeZpickle_functionZconstructor_ob©r ú#/usr/local/lib/python3.9/copyreg.pyr s rcCst|ƒstdƒ‚dS)Nzconstructors must be callable)rr)Úobjectr r r rsrcCst|j|jffS©N)ÚcomplexÚrealÚimag)Úcr r r Úpickle_complex"srcCs<|turt |¡}n$| ||¡}|jtjkr8| ||¡|Sr )r Ú__new__Ú__init__)ÚclsÚbaseÚstateÚobjr r r Ú_reconstructor)s     ric Csø|dks J‚|j}|jD]}t|dƒr|jt@sq:qt}|turHd}n"||urbtd|j›dƒ‚||ƒ}|||f}z |j}WnXt yÖt |ddƒr°td|j›d|›ƒd‚z |j }Wnt yÐd}Yn0Yn0|ƒ}|rìt ||fSt |fSdS)NéÚ __flags__zcannot pickle z objectÚ __slots__zf object: a class that defines __slots__ without defining __getstate__ cannot be pickled with protocol ) Ú __class__Ú__mro__ÚhasattrrÚ _HEAPTYPEr rÚ__name__Ú __getstate__ÚAttributeErrorÚgetattrÚ__dict__r)ÚselfÚprotorrrÚargsÚgetstateÚdictr r r Ú _reduce_ex6s:       ýý   r*cGs|j|g|¢RŽSr ©r)rr'r r r Ú __newobj__Zsr,cCs|j|g|¢Ri|¤ŽS)zUsed by pickle protocol 4, instead of __newobj__ to allow classes with keyword-only arguments to be pickled correctly. r+)rr'Úkwargsr r r Ú __newobj_ex__]sr.cCsØ|j d¡}|dur|Sg}t|dƒs(n”|jD]Œ}d|jvr.|jd}t|tƒrV|f}|D]^}|dvrjqZqZ| d¡r®| d¡s®|j  d¡}|r¢|  d||f¡q¸|  |¡qZ|  |¡qZq.z ||_ Wn Yn0|S)a›Return a list of slot names for a given class. This needs to find slots defined by the class and its bases, so we can't simply return the __slots__ attribute. We must walk down the Method Resolution Order and concatenate the __slots__ of each class found there. (This assumes classes don't modify their __slots__ attribute to misrepresent their slots after the class is defined.) Ú __slotnames__Nr)r$Ú __weakref__Ú__Ú_z_%s%s) r$ÚgetrrÚ isinstanceÚstrÚ startswithÚendswithr ÚlstripÚappendr/)rÚnamesrZslotsÚnameZstrippedr r r Ú _slotnamescs2         r<cCsšt|ƒ}d|krdks&ntdƒ‚||f}t |¡|krNt |¡|krNdS|tvrjtd|t|fƒ‚|tvr†td|t|fƒ‚|t|<|t|<dS)zRegister an extension code.éiÿÿÿzcode out of rangeNz)key %s is already registered with code %sz$code %s is already in use for key %s)ÚintÚ ValueErrorÚ_extension_registryr3Ú_inverted_registry©Úmoduler;ÚcodeÚkeyr r r r¥s$ ÿ ÿ ÿrcCsR||f}t |¡|ks$t |¡|kr4td||fƒ‚t|=t|=|tvrNt|=dS)z0Unregister an extension code. For testing only.z%key %s is not registered with code %sN)r@r3rAr?Ú_extension_cacherBr r r r·s ÿÿrcCs t ¡dSr )rFÚclearr r r r rÃsr)N)Ú__doc__Ú__all__rrrr Ú NameErrorrrrr*r,r.r<r@rArFrrrr r r r Ús,    $<