o
    /Zh@                     @   s"  U d Z ddlZddlZddlZddlZddlZddlZddlm	Z	 ddl
mZmZ ddlmZmZ ddlZddlmZmZmZmZ dZejdd d	kZd
ededefddZd
ededefddZejd	krnddl
mZ nedZeddZde_ eddZde_ eddZde_ eddZde_ eddZd e_ ed!d"Z d#e _ ed$d%Z!d&e!_ ed'd(Z"d)e"_ ed*d+Z#d,e#_ ed-d.Z$d/e$_ ed0d1Z%d2e%_ d3ede&fd4d5Z'ed6d7Z(d8e(_ ed9d:Z)d;e)_ ejd	kred<d=Z*n	d3ede&fd>d=Z*d?e*_ ed@dAZ+dBe+_ edCdDZ,dEe,_ edFdGZ-dHe-_ edIdJZ.dKe._ edLdMZ/dNe/_ edOdPZ0dQe0_ edRdSZ1dTe1_ edUdVZ2dWe2_ edXdYZ3dZe3_ ed[d\Z4d]e4_ ed^d_Z5d`e5_ edadbZ6erdd3eddcfdddeZ7nedadeZ7dfe7_ edgdhZ8die8_ ejdjkrd3eddkfdldmZ9n	d3eddkfdndmZ9doe9_ i ej:ej;j:ej<ej;j<ej=ej;j=ej>ej;j>ej?ej;j?ej@ej;j@ejAej;jAejBej;jBejCej;jCejDej;jDejEej;jEejFej;jFejGej;jHejIej;jIejJej;jJejKej;jKejLej;jLi ejMej;jMejNeOejPeQejRejSejHeTejUeVejWej;jWejXej;jXejYej;jYejZej;jZej[e\ej]ej^ej_ej_ej`ej`ejaejaejbej;jbejcej;jcejdeejeejeejfejfejgejhejiejjiZkee\eee f  eldp< 	 eQekm D ]\ZnZoepeenjqd Zrdureoeker< qydS )qzLow-level introspection utilities for [`typing`][] members.

The provided functions in this module check against both the [`typing`][] and [`typing_extensions`][]
variants, if they exists and are different.
    N)dedent)FunctionTypeGenericAlias)AnyFinal)LiteralStringTypeAliasTypeTypeIs
deprecated)DEPRECATED_ALIASESNoneTypeis_annotatedis_anyis_classvaris_concatenateis_deprecatedis_final
is_generic
is_literalis_literalstringis_namedtupleis_never
is_newtypeis_nodefaultis_noreturnis_notrequiredis_paramspecis_paramspecargsis_paramspeckwargsis_readonlyis_requiredis_selfis_typealiasis_typealiastypeis_typeguard	is_typeis
is_typevaris_typevartupleis_union	is_unpack   )   
   memberfunction_namereturnc                 C   s   t t| }t t| }|r'|r'tt| tt| u rd|  }nd|  d|  }n|r1|s1d|  }n|s;|r;d|  }nd}td| d| d}i }tttd}t||| || S )	a}  Create a function checking that the function argument is the (unparameterized) typing :paramref:`member`.

    The function will make sure to check against both the `typing` and `typing_extensions`
    variants as depending on the Python version, the `typing_extensions` variant might be different.
    For instance, on Python 3.9:

    ```pycon
    >>> from typing import Literal as t_Literal
    >>> from typing_extensions import Literal as te_Literal, get_origin

    >>> t_Literal is te_Literal
    False
    >>> get_origin(t_Literal[1])
    typing.Literal
    >>> get_origin(te_Literal[1])
    typing_extensions.Literal
    ```
    zobj is typing.z or obj is typing_extensions.zobj is typing_extensions.False	
    def z&(obj: Any, /) -> bool:
        return 
    r   typingtyping_extensionshasattrr4   r5   getattrr   r   execr-   r.   Z	in_typingZin_typing_extensionsZ
check_code	func_codeZlocals_globals_ r=   W/var/www/html/lang_env/lib/python3.10/site-packages/typing_inspection/typing_objects.py _compile_identity_check_function:   s(   


r?   c                 C   s   t t| }t t| }|r)|r)tt| tt| u rd|  d}n"d|  d|  d}n|r4|s4d|  d}n|s?|r?d|  d}nd}td| d	|  d
| d}i }tttd}t||| || S )a  Create a function checking that the function is an instance of the typing `member`.

    The function will make sure to check against both the `typing` and `typing_extensions`
    variants as depending on the Python version, the `typing_extensions` variant might be different.
    zisinstance(obj, typing.)zisinstance(obj, (typing.z, typing_extensions.z))z"isinstance(obj, typing_extensions.r0   r1   z(obj: Any, /) -> 'TypeIs[z]':
        return r2   r3   r6   r:   r=   r=   r>   "_compile_isinstance_check_functiong   s,   


rA   )r   	Annotatedr   z
Return whether the argument is the [`Annotated`][typing.Annotated] [special form][].

```pycon
>>> is_annotated(Annotated)
True
>>> is_annotated(Annotated[int, ...])
False
```
r   r   zm
Return whether the argument is the [`Any`][typing.Any] [special form][].

```pycon
>>> is_any(Any)
True
```
ClassVarr   z
Return whether the argument is the [`ClassVar`][typing.ClassVar] [type qualifier][].

```pycon
>>> is_classvar(ClassVar)
True
>>> is_classvar(ClassVar[int])
>>> False
```
Concatenater   z
Return whether the argument is the [`Concatenate`][typing.Concatenate] [special form][].

```pycon
>>> is_concatenate(Concatenate)
True
>>> is_concatenate(Concatenate[int, P])
False
```
r   r   z
Return whether the argument is the [`Final`][typing.Final] [type qualifier][].

```pycon
>>> is_final(Final)
True
>>> is_final(Final[int])
False
```
Genericr   z
Return whether the argument is the [`Generic`][typing.Generic] [special form][].

```pycon
>>> is_generic(Generic)
True
>>> is_generic(Generic[T])
False
```
Literalr   z
Return whether the argument is the [`Literal`][typing.Literal] [special form][].

```pycon
>>> is_literal(Literal)
True
>>> is_literal(Literal["a"])
False
```
	ParamSpecr   z
Return whether the argument is an instance of [`ParamSpec`][typing.ParamSpec].

```pycon
>>> P = ParamSpec('P')
>>> is_paramspec(P)
True
```
TypeVarr&   z
Return whether the argument is an instance of [`TypeVar`][typing.TypeVar].

```pycon
>>> T = TypeVar('T')
>>> is_typevar(T)
True
```
TypeVarTupler'   z
Return whether the argument is an instance of [`TypeVarTuple`][typing.TypeVarTuple].

```pycon
>>> Ts = TypeVarTuple('Ts')
>>> is_typevartuple(Ts)
True
```
Unionr(   a  
Return whether the argument is the [`Union`][typing.Union] [special form][].

This function can also be used to check for the [`Optional`][typing.Optional] [special form][],
as at runtime, `Optional[int]` is equivalent to `Union[int, None]`.

```pycon
>>> is_union(Union)
True
>>> is_union(Union[int, str])
False
```

!!! warning
    This does not check for unions using the [new syntax][types-union] (e.g. `int | str`).
objc                C   s   t | tot| tot| dS )a  Return whether the argument is a named tuple type.

    This includes [`NamedTuple`][typing.NamedTuple] subclasses and classes created from the
    [`collections.namedtuple`][] factory function.

    ```pycon
    >>> class User(NamedTuple):
    ...     name: str
    ...
    >>> is_namedtuple(User)
    True
    >>> City = collections.namedtuple('City', [])
    >>> is_namedtuple(City)
    True
    >>> is_namedtuple(NamedTuple)
    False
    ```
    _fields)
isinstancetype
issubclasstupler7   rK   r=   r=   r>   r     s   r   r   r   z
Return whether the argument is the [`LiteralString`][typing.LiteralString] [special form][].

```pycon
>>> is_literalstring(LiteralString)
True
```
Neverr   zu
Return whether the argument is the [`Never`][typing.Never] [special form][].

```pycon
>>> is_never(Never)
True
```
NewTyper   c                C   s
   t | dS )N__supertype__)r7   rQ   r=   r=   r>   r   M  s   
z
Return whether the argument is a [`NewType`][typing.NewType].

```pycon
>>> UserId = NewType("UserId", int)
>>> is_newtype(UserId)
True
```
	NoDefaultr   z
Return whether the argument is the [`NoDefault`][typing.NoDefault] sentinel object.

```pycon
>>> is_nodefault(NoDefault)
True
```
NoReturnr   z
Return whether the argument is the [`NoReturn`][typing.NoReturn] [special form][].

```pycon
>>> is_noreturn(NoReturn)
True
>>> is_noreturn(Never)
False
```
NotRequiredr   z
Return whether the argument is the [`NotRequired`][typing.NotRequired] [special form][].

```pycon
>>> is_notrequired(NotRequired)
True
```
ParamSpecArgsr   z
Return whether the argument is an instance of [`ParamSpecArgs`][typing.ParamSpecArgs].

```pycon
>>> P = ParamSpec('P')
>>> is_paramspecargs(P.args)
True
```
ParamSpecKwargsr   z
Return whether the argument is an instance of [`ParamSpecKwargs`][typing.ParamSpecKwargs].

```pycon
>>> P = ParamSpec('P')
>>> is_paramspeckwargs(P.kwargs)
True
```
ReadOnlyr   z
Return whether the argument is the [`ReadOnly`][typing.ReadOnly] [special form][].

```pycon
>>> is_readonly(ReadOnly)
True
```
Requiredr    z
Return whether the argument is the [`Required`][typing.Required] [special form][].

```pycon
>>> is_required(Required)
True
```
Selfr!   zq
Return whether the argument is the [`Self`][typing.Self] [special form][].

```pycon
>>> is_self(Self)
True
```
	TypeAliasr"   z
Return whether the argument is the [`TypeAlias`][typing.TypeAlias] [special form][].

```pycon
>>> is_typealias(TypeAlias)
True
```
	TypeGuardr$   z
Return whether the argument is the [`TypeGuard`][typing.TypeGuard] [special form][].

```pycon
>>> is_typeguard(TypeGuard)
True
```
r	   r%   zy
Return whether the argument is the [`TypeIs`][typing.TypeIs] [special form][].

```pycon
>>> is_typeis(TypeIs)
True
```
r   _is_typealiastype_innerzTypeIs[TypeAliasType]c                C   s   t | tuo	t| S N)rN   r   r_   rQ   r=   r=   r>   r#     s   r#   a'  
Return whether the argument is a [`TypeAliasType`][typing.TypeAliasType] instance.

```pycon
>>> type MyInt = int
>>> is_typealiastype(MyInt)
True
>>> MyStr = TypeAliasType("MyStr", str)
>>> is_typealiastype(MyStr):
True
>>> type MyList[T] = list[T]
>>> is_typealiastype(MyList[int])
False
```
Unpackr)   z
Return whether the argument is the [`Unpack`][typing.Unpack] [special form][].

```pycon
>>> is_unpack(Unpack)
True
>>> is_unpack(Unpack[Ts])
False
```
)r+      zTypeIs[deprecated]c                C   s   t | tjtjfS r`   )rM   warningsr
   r5   rQ   r=   r=   r>   r     s   r   c                C   s   t | tjS r`   )rM   r5   r
   rQ   r=   r=   r>   r      s   a#  
Return whether the argument is a [`deprecated`][warnings.deprecated] instance.

This also includes the [`typing_extensions` backport][typing_extensions.deprecated].

```pycon
>>> is_deprecated(warnings.deprecated('message'))
True
>>> is_deprecated(typing_extensions('deprecated'))
True
```
r   )s__doc__collections.abccollections
contextlibresysr4   rc   textwrapr   typesr   r   r   r   r5   r   r   r	   r
   __all__version_infoZ	_IS_PY310r?   rA   r   rN   r   r   r   r   r   r   r   r   r&   r'   r(   boolr   r   r   r   r   r   r   r   r   r   r    r!   r"   r$   r%   r_   r#   r)   r   Hashableabc	Awaitable	CoroutineAsyncIterableAsyncIteratorIterableIterator
ReversibleSized	Container
CollectionCallableAbstractSetSet
MutableSetMappingMutableMappingSequenceMutableSequenceTuplerP   ListlistDequedequeset	FrozenSet	frozensetMappingViewKeysView	ItemsView
ValuesViewDictdictDefaultDictdefaultdictOrderedDictCounterChainMap	GeneratorAsyncGeneratorTypePatternMatchContextManagerAbstractContextManagerAsyncContextManagerAbstractAsyncContextManagerr   __annotations__itemsaliastargetr8   _nameZte_aliasr=   r=   r=   r>   <module>   sH   "-
 


	











	
	


	

	




	
	

	
	
	










	













 !
"
#$,