
    i                     j    d Z ddlZej                  Zej                  j                  Z G d de      Zy)z0
Internal objects to support the UUID adapters.
    Nc                   ,    e Zd ZdZdZej                  Zy)_WritableUUIDa  Temporary class, with the same memory layout of UUID, but writable.

    This class must have the same memory layout of the UUID class, so we can
    create one, setting the `int` attribute, and changing the `__class__`,
    which should be faster than calling the complex UUID.__init__ machinery.

        u = _WritableUUID()
        u.is_safe = ...
        u.int = ...
        u.__class__ = UUID
     N)__name__
__module____qualname____doc__	__slots__object__setattr__r       t/var/www/html/hwPaymentPortal-be-dev/hw-payment-portal-api/venv/lib/python3.12/site-packages/psycopg_binary/_uuid.pyr   r      s    
 I$$Kr   r   )r	   uuidUUIDSafeUUIDunknownSafeUUID_unknownr   r   r   r   <module>r      s6     yy==(( %D %r   