Current File : //proc/self/root/usr/lib/python3/dist-packages/constantly/__pycache__/_constants.cpython-312.pyc
�

?��^�>�	�P�dZddlmZmZgZddlmZddlmZddl	m
Z
mZmZe
�Zeee��ZGd�de
�ZGd�d	e�ZGd
�dede
fi��ZGd
�de�ZGd�de�ZGd�de�ZGd�de�Zd�ZGd�de�ZGd�de�Zy)zi
Symbolic constant support, including collections and constants with text,
numeric, and bit flag values.
�)�division�absolute_import)�partial)�count)�and_�or_�xorc�:�eZdZdZd�Zd�Zd�Zd�Zd�Zd�Z	d�Z
y	)
�	_Constanta�
    @ivar _index: A C{int} allocated from a shared counter in order to keep
        track of the order in which L{_Constant}s are instantiated.

    @ivar name: A C{str} giving the name of this constant; only set once the
        constant is initialized by L{_ConstantsContainer}.

    @ivar _container: The L{_ConstantsContainer} subclass this constant belongs
        to; C{None} until the constant is initialized by that subclass.
    c�0�d|_t�|_y�N)�
_container�_constantOrder�_index��selfs �7/usr/lib/python3/dist-packages/constantly/_constants.py�__init__z_Constant.__init__!s�����$�&���c�P�d|jj�d|j�d�S)zq
        Return text identifying both which constant this is and which
        collection it belongs to.
        �<�=�>)r�__name__�namers r�__repr__z_Constant.__repr__&s��
!�O�O�4�4�d�i�i�@�@rc��t||j�r|j|jk(stS|j|jkS)aC
        Implements C{<}.  Order is defined by instantiation order.

        @param other: An object.

        @return: C{NotImplemented} if C{other} is not a constant belonging to
            the same container as this constant, C{True} if this constant is
            defined before C{other}, otherwise C{False}.
        ��
isinstance�	__class__r�NotImplementedr�r�others  r�__lt__z_Constant.__lt__.�=���5�$�.�.�1����5�#3�#3�3�!�!��{�{�U�\�\�)�)rc��t||j�r|j|jk(stS||uxs|j|jkS)aP
        Implements C{<=}.  Order is defined by instantiation order.

        @param other: An object.

        @return: C{NotImplemented} if C{other} is not a constant belonging to
            the same container as this constant, C{True} if this constant is
            defined before or equal to C{other}, otherwise C{False}.
        rr"s  r�__le__z_Constant.__le__@�F���5�$�.�.�1����5�#3�#3�3�!�!��u�}�:����e�l�l� :�:rc��t||j�r|j|jk(stS|j|jkDS)aB
        Implements C{>}.  Order is defined by instantiation order.

        @param other: An object.

        @return: C{NotImplemented} if C{other} is not a constant belonging to
            the same container as this constant, C{True} if this constant is
            defined after C{other}, otherwise C{False}.
        rr"s  r�__gt__z_Constant.__gt__Rr%rc��t||j�r|j|jk(stS||uxs|j|jkDS)aO
        Implements C{>=}.  Order is defined by instantiation order.

        @param other: An object.

        @return: C{NotImplemented} if C{other} is not a constant belonging to
            the same container as this constant, C{True} if this constant is
            defined after or equal to C{other}, otherwise C{False}.
        rr"s  r�__ge__z_Constant.__ge__dr(rc� �||_||_y)ao
        Complete the initialization of this L{_Constant}.

        @param container: The L{_ConstantsContainer} subclass this constant is
            part of.

        @param name: The name of this constant in its container.

        @param value: The value of this constant; not used, as named constants
            have no value apart from their identity.
        N)rr)r�	containerr�values    r�_realizez_Constant._realizevs��$�����	rN)r�
__module__�__qualname__�__doc__rrr$r'r*r,r0�rrrrs+��	�'�
A�*�$;�$*�$;�$
rrc�"��eZdZdZ�fd�Z�xZS)�_ConstantsContainerTypeza
    L{_ConstantsContainerType} is a metaclass for creating constants container
    classes.
    c����tt|�||||�}t|dd�}|�|Sg}|j	�D]a\}}t||j�s�|j�td|�d|j����|j|j||f��ci}t|�D]0\}	}
}|j|
|�}|j||
|�|||
<�2||_|S)a�
        Create a new constants container class.

        If C{attributes} includes a value of C{None} for the C{"_constantType"}
        key, the new class will not be initialized as a constants container and
        it will behave as a normal class.

        @param name: The name of the container class.
        @type name: L{str}

        @param bases: A tuple of the base classes for the new container class.
        @type bases: L{tuple} of L{_ConstantsContainerType} instances

        @param attributes: The attributes of the new container class, including
            any constants it is to contain.
        @type attributes: L{dict}
        �
_constantTypeNzCannot use z! as the value of an attribute on )�superr6�__new__�getattr�itemsrr8r�
ValueErrorr�appendr�sorted�_constantFactoryr0�_enumerants)
rr�bases�
attributes�cls�constantType�	constants�
descriptor�
enumerants�index�	enumerantr/r s
            �rr:z_ConstantsContainerType.__new__�s���$�+�T�:��$��z�+��
�s�O�T�:�����J��	�",�"2�"2�"4�	H��T�:��*�c�&7�&7�8��(�(�4�$�&����6�7�7�� � �*�"3�"3�T�:�!F�G�
	H��
�.4�Y�.?�	/�*�U�I�z��(�(��J�?�E�����Y��6�$.�J�y�!�	/�%����
r)rr1r2r3r:�
__classcell__)r s@rr6r6�s����/�/rr6c�J�eZdZdZdZd�Zed��Zed��Zed��Z	y)�_ConstantsContainera�
    L{_ConstantsContainer} is a class with attributes used as symbolic
    constants.  It is up to subclasses to specify what kind of constants are
    allowed.

    @cvar _constantType: Specified by a L{_ConstantsContainer} subclass to
        specify the type of constants allowed by that subclass.

    @cvar _enumerants: A C{dict} mapping the names of constants (eg
        L{NamedConstant} instances) found in the class definition to those
        instances.
    Nc�2�t|j�d���)z�
        Classes representing constants containers are not intended to be
        instantiated.

        The class object itself is used directly.
        z may not be instantiated.)�	TypeErrorr)rDs rr:z_ConstantsContainer.__new__�s������G�H�Hrc��tS)a�
        Construct the value for a new constant to add to this container.

        @param name: The name of the constant to create.

        @param descriptor: An instance of a L{_Constant} subclass (eg
            L{NamedConstant}) which is assigned to C{name}.

        @return: L{NamedConstant} instances have no value apart from identity,
            so return a meaningless dummy value.
        )�_unspecified)rDrrGs   rr@z$_ConstantsContainer._constantFactory�s
���rc�L�||jvrt||�St|��)a�
        Retrieve a constant by its name or raise a C{ValueError} if there is no
        constant associated with that name.

        @param name: A C{str} giving the name of one of the constants defined
            by C{cls}.

        @raise ValueError: If C{name} is not the name of one of the constants
            defined by C{cls}.

        @return: The L{NamedConstant} associated with C{name}.
        )rAr;r=)rDrs  r�lookupByNamez _ConstantsContainer.lookupByName�s(���3�?�?�"��3��%�%����rc�d�|jj�}tt|d����S)z�
        Iteration over a L{Names} subclass results in all of the constants it
        contains.

        @return: an iterator the elements of which are the L{NamedConstant}
            instances defined in the body of this L{Names} subclass.
        c��|jSr
)r)rGs r�<lambda>z3_ConstantsContainer.iterconstants.<locals>.<lambda>s��Z�5F�5F�r)�key)rA�values�iterr?)rDrFs  r�
iterconstantsz!_ConstantsContainer.iterconstantss0���O�O�*�*�,�	���9�"F�G�I�	Ir)
rr1r2r3r8r:�classmethodr@rSrZr4rrrMrM�sR����M�I���������$�I��IrrM�c��eZdZdZy)�
NamedConstanta
    L{NamedConstant} defines an attribute to be a named constant within a
    collection defined by a L{Names} subclass.

    L{NamedConstant} is only for use in the definition of L{Names}
    subclasses.  Do not instantiate L{NamedConstant} elsewhere and do not
    subclass it.
    N)rr1r2r3r4rrr^r^s��rr^c��eZdZdZeZy)�Namesze
    A L{Names} subclass contains constants which differ only in their names and
    identities.
    N)rr1r2r3r^r8r4rrr`r`s���"�Mrr`c��eZdZdZd�Zy)�
ValueConstanta
    L{ValueConstant} defines an attribute to be a named constant within a
    collection defined by a L{Values} subclass.

    L{ValueConstant} is only for use in the definition of L{Values} subclasses.
    Do not instantiate L{ValueConstant} elsewhere and do not subclass it.
    c�<�tj|�||_yr
�rrr/�rr/s  rrzValueConstant.__init__0������4� ���
rN)rr1r2r3rr4rrrbrb(s���rrbc�$�eZdZdZeZed��Zy)�Valuesza
    A L{Values} subclass contains constants which are associated with arbitrary
    values.
    c�h�|j�D]}|j|k(s�|cSt|��)a�
        Retrieve a constant by its value or raise a C{ValueError} if there is
        no constant associated with that value.

        @param value: The value of one of the constants defined by C{cls}.

        @raise ValueError: If C{value} is not the value of one of the constants
            defined by C{cls}.

        @return: The L{ValueConstant} associated with C{value}.
        )rZr/r=)rDr/�constants   r�
lookupByValuezValues.lookupByValue=s:���)�)�+�	 �H��~�~��&���	 ����rN)rr1r2r3rbr8r[rkr4rrrhrh6s ���"�M�� �� rrhc���||j|j�}||j|j�}t�}|j|j||�|S)a�
    Implement a binary operator for a L{FlagConstant} instance.

    @param op: A two-argument callable implementing the binary operation.  For
        example, C{operator.or_}.

    @param left: The left-hand L{FlagConstant} instance.
    @param right: The right-hand L{FlagConstant} instance.

    @return: A new L{FlagConstant} instance representing the result of the
        operation.
    )r/�names�FlagConstantr0r)�op�left�rightr/rm�results      r�_flagOprsQsL��
�t�z�z�5�;�;�'�E��t�z�z�5�;�;�'�E�
�^�F�
�O�O�D�O�O�U�E�2��Mrc�N�eZdZdZefd�Zd�Zd�Zd�Zd�Z	d�Z
d�Zd	�Zd
�Z
e
Zy)rna
    L{FlagConstant} defines an attribute to be a flag constant within a
    collection defined by a L{Flags} subclass.

    L{FlagConstant} is only for use in the definition of L{Flags} subclasses.
    Do not instantiate L{FlagConstant} elsewhere and do not subclass it.
    c�<�tj|�||_yr
rdres  rrzFlagConstant.__init__nrfrc���t|t�r|}t|g�}n3t|�dk(r|\}n ddj	t|��zdz}tj||||�||_||_	y)aR
        Complete the initialization of this L{FlagConstant}.

        This implementation differs from other C{_realize} implementations in
        that a L{FlagConstant} may have several names which apply to it, due to
        flags being combined with various operators.

        @param container: The L{Flags} subclass this constant is part of.

        @param names: When a single-flag value is being initialized, a C{str}
            giving the name of that flag.  This is the case which happens when
            a L{Flags} subclass is being initialized and L{FlagConstant}
            instances from its body are being realized.  Otherwise, a C{set} of
            C{str} giving names of all the flags set on this L{FlagConstant}
            instance.  This is the case when two flags are combined using C{|},
            for example.
        ��{�,�}N)
r�str�set�len�joinr?rr0r/rm)rr.rmr/rs     rr0zFlagConstant._realizessn��$�e�S�!��D����L�E�
��Z�1�_��G�T�����&��-�0�0�3�6�D����4��D�%�8���
���
rc�$�tt||�S)z�
        Define C{|} on two L{FlagConstant} instances to create a new
        L{FlagConstant} instance with all flags set in either instance set.
        )rsrr"s  r�__or__zFlagConstant.__or__�s��
�s�D�%�(�(rc�$�tt||�S)z�
        Define C{&} on two L{FlagConstant} instances to create a new
        L{FlagConstant} instance with only flags set in both instances set.
        )rsrr"s  r�__and__zFlagConstant.__and__�s��
�t�T�5�)�)rc�$�tt||�S)z�
        Define C{^} on two L{FlagConstant} instances to create a new
        L{FlagConstant} instance with only flags set on exactly one instance
        set.
        )rsr	r"s  r�__xor__zFlagConstant.__xor__�s���s�D�%�(�(rc���t�}|j|jt�d�|jj	�D]$}|j
|j
zdk(s� ||z}�&|S)z�
        Define C{~} on a L{FlagConstant} instance to create a new
        L{FlagConstant} instance with all flags not set on this instance set.
        r)rnr0rr|rZr/)rrr�flags   r�
__invert__zFlagConstant.__invert__�sb��
������������2��O�O�1�1�3�	�D��z�z�D�J�J�&�!�+��$���	��
rc�.���fd��jD�S)zI
        @return: An iterator of flags set on this instance set.
        c3�T�K�|]}�jj|����!y�wr
)rrS)�.0rrs  �r�	<genexpr>z(FlagConstant.__iter__.<locals>.<genexpr>�s �����J�t����,�,�T�2�J�s�%()rmrs`r�__iter__zFlagConstant.__iter__�s���K�t�z�z�J�Jrc��t||z�S)z�
        @param flag: The flag to test for membership in this instance
            set.

        @return: C{True} if C{flag} is in this instance set, else
            C{False}.
        )�bool)rr�s  r�__contains__zFlagConstant.__contains__�s���D�4�K� � rc�,�t|j�S)zL
        @return: C{False} if this flag's value is 0, else C{True}.
        )r�r/rs r�__nonzero__zFlagConstant.__nonzero__�s���D�J�J��rN)rr1r2r3rQrr0r�r�r�r�r�r�r��__bool__r4rrrnrnfsA���*��
�<)�*�)�
�K�	!� �
�Hrrnc�(�eZdZdZeZdZed��Zy)�Flagsz�
    A L{Flags} subclass contains constants which can be combined using the
    common bitwise operators (C{|}, C{&}, etc) similar to a I{bitvector} from a
    language like C.
    rwc��|jtur#|j}|xjdzc_|S|j}|dz|_|S)a

        For L{FlagConstant} instances with no explicitly defined value, assign
        the next power of two as its value.

        @param name: The name of the constant to create.

        @param descriptor: An instance of a L{FlagConstant} which is assigned
            to C{name}.

        @return: Either the value passed to the C{descriptor} constructor, or
            the next power of 2 value which will be assigned to C{descriptor},
            relative to the value of the last defined L{FlagConstant}.
        rw)r/rQ�_value)rDrrGr/s    rr@zFlags._constantFactory�sM�����|�+��J�J�E��J�J�1��J����$�$�E��!��C�J��rN)	rr1r2r3rnr8r�r[r@r4rrr�r��s%���
!�M�
�F����rr�N)r3�
__future__rr�__all__�	functoolsr�	itertoolsr�operatorrrr	�objectrQ�nextrr�typer6rMr^r`rbrhrsrnr�r4rr�<module>r�s���
�
1�
����#�#��x����u�w�'��m��m�b4�d�4�~II�1�"�v�i��D�II�Z�I��"��"�
�I�
� �
 � �6�*i�9�i�Z�F�r
¿Qué es la limpieza dental de perros? - Clínica veterinaria


Es la eliminación del sarro y la placa adherida a la superficie de los dientes mediante un equipo de ultrasonidos que garantiza la integridad de las piezas dentales a la vez que elimina en profundidad cualquier resto de suciedad.

A continuación se procede al pulido de los dientes mediante una fresa especial que elimina la placa bacteriana y devuelve a los dientes el aspecto sano que deben tener.

Una vez terminado todo el proceso, se mantiene al perro en observación hasta que se despierta de la anestesia, bajo la atenta supervisión de un veterinario.

¿Cada cuánto tiempo tengo que hacerle una limpieza dental a mi perro?

A partir de cierta edad, los perros pueden necesitar una limpieza dental anual o bianual. Depende de cada caso. En líneas generales, puede decirse que los perros de razas pequeñas suelen acumular más sarro y suelen necesitar una atención mayor en cuanto a higiene dental.


Riesgos de una mala higiene


Los riesgos más evidentes de una mala higiene dental en los perros son los siguientes:

  • Cuando la acumulación de sarro no se trata, se puede producir una inflamación y retracción de las encías que puede descalzar el diente y provocar caídas.
  • Mal aliento (halitosis).
  • Sarro perros
  • Puede ir a más
  • Las bacterias de la placa pueden trasladarse a través del torrente circulatorio a órganos vitales como el corazón ocasionando problemas de endocarditis en las válvulas. Las bacterias pueden incluso acantonarse en huesos (La osteomielitis es la infección ósea, tanto cortical como medular) provocando mucho dolor y una artritis séptica).

¿Cómo se forma el sarro?

El sarro es la calcificación de la placa dental. Los restos de alimentos, junto con las bacterias presentes en la boca, van a formar la placa bacteriana o placa dental. Si la placa no se retira, al mezclarse con la saliva y los minerales presentes en ella, reaccionará formando una costra. La placa se calcifica y se forma el sarro.

El sarro, cuando se forma, es de color blanquecino pero a medida que pasa el tiempo se va poniendo amarillo y luego marrón.

Síntomas de una pobre higiene dental
La señal más obvia de una mala salud dental canina es el mal aliento.

Sin embargo, a veces no es tan fácil de detectar
Y hay perros que no se dejan abrir la boca por su dueño. Por ejemplo…

Recientemente nos trajeron a la clínica a un perro que parpadeaba de un ojo y decía su dueño que le picaba un lado de la cara. Tenía molestias y dificultad para comer, lo que había llevado a sus dueños a comprarle comida blanda (que suele ser un poco más cara y llevar más contenido en grasa) durante medio año. Después de una exploración oftalmológica, nos dimos cuenta de que el ojo tenía una úlcera en la córnea probablemente de rascarse . Además, el canto lateral del ojo estaba inflamado. Tenía lo que en humanos llamamos flemón pero como era un perro de pelo largo, no se le notaba a simple vista. Al abrirle la boca nos llamó la atención el ver una muela llena de sarro. Le realizamos una radiografía y encontramos una fístula que llegaba hasta la parte inferior del ojo.

Le tuvimos que extraer la muela. Tras esto, el ojo se curó completamente con unos colirios y una lentilla protectora de úlcera. Afortunadamente, la úlcera no profundizó y no perforó el ojo. Ahora el perro come perfectamente a pesar de haber perdido una muela.

¿Cómo mantener la higiene dental de tu perro?
Hay varias maneras de prevenir problemas derivados de la salud dental de tu perro.

Limpiezas de dientes en casa
Es recomendable limpiar los dientes de tu perro semanal o diariamente si se puede. Existe una gran variedad de productos que se pueden utilizar:

Pastas de dientes.
Cepillos de dientes o dedales para el dedo índice, que hacen más fácil la limpieza.
Colutorios para echar en agua de bebida o directamente sobre el diente en líquido o en spray.

En la Clínica Tus Veterinarios enseñamos a nuestros clientes a tomar el hábito de limpiar los dientes de sus perros desde que son cachorros. Esto responde a nuestro compromiso con la prevención de enfermedades caninas.

Hoy en día tenemos muchos clientes que limpian los dientes todos los días a su mascota, y como resultado, se ahorran el dinero de hacer limpiezas dentales profesionales y consiguen una mejor salud de su perro.


Limpiezas dentales profesionales de perros y gatos

Recomendamos hacer una limpieza dental especializada anualmente. La realizamos con un aparato de ultrasonidos que utiliza agua para quitar el sarro. Después, procedemos a pulir los dientes con un cepillo de alta velocidad y una pasta especial. Hacemos esto para proteger el esmalte.

La frecuencia de limpiezas dentales necesaria varía mucho entre razas. En general, las razas grandes tienen buena calidad de esmalte, por lo que no necesitan hacerlo tan a menudo e incluso pueden pasarse la vida sin requerir una limpieza. Sin embargo, razas pequeñas como el Yorkshire o el Maltés, deben hacérselas todos los años desde cachorros si se quiere conservar sus piezas dentales.

Otro factor fundamental es la calidad del pienso. Algunas marcas han diseñado croquetas que limpian la superficie del diente y de la muela al masticarse.

Ultrasonido para perros

¿Se necesita anestesia para las limpiezas dentales de perros y gatos?

La limpieza dental en perros no es una técnica que pueda practicarse sin anestesia general , aunque hay veces que los propietarios no quieren anestesiar y si tiene poco sarro y el perro es muy bueno se puede intentar…… , pero no se va a poder pulir ni acceder a todas la zona de la boca …. Además los limpiadores dentales van a irrigar agua y hay riesgo de aspiración a vías respiratorias si no se realiza una anestesia correcta con intubación traqueal . En resumen , sin anestesia no se va hacer una correcta limpieza dental.

Tampoco sirve la sedación ya que necesitamos que el animal esté totalmente quieto, y el veterinario tenga un acceso completo a todas sus piezas dentales y encías.

Alimentos para la limpieza dental

Hay que tener cierto cuidado a la hora de comprar determinados alimentos porque no todos son saludables. Algunos tienen demasiado contenido graso, que en exceso puede causar problemas cardiovasculares y obesidad.

Los mejores alimentos para los dientes son aquellos que están elaborados por empresas farmacéuticas y llevan componentes químicos con tratamientos específicos para el diente del perro. Esto implica no solo limpieza a través de la acción mecánica de morder sino también un tratamiento antibacteriano para prevenir el sarro.

Conclusión

Si eres como la mayoría de dueños, por falta de tiempo , es probable que no estés prestando la suficiente atención a la limpieza dental de tu perro. Por eso te animamos a que comiences a limpiar los dientes de tu perro y consideres atender a su higiene bucal con frecuencia.

Estas simples medidas pueden conllevar a que tu perro tenga una vida más larga y mucho más saludable.

Si te resulta imposible introducir un cepillo de dientes a tu perro en la boca, pásate con él por clínica Tus Veterinarios y te explicamos cómo hacerlo.

Necesitas hacer una limpieza dental profesional a tu mascota?
Llámanos al 622575274 o contacta con nosotros

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

¡Hola!