ACIL FM
Dark
Refresh
Current DIR:
/lib64/python3.9/site-packages/pyrsistent
/
lib64
python3.9
site-packages
pyrsistent
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
__pycache__
-
chmod
Open
Rename
Delete
py.typed
0 B
chmod
View
DL
Edit
Rename
Delete
typing.py
1.73 MB
chmod
View
DL
Edit
Rename
Delete
typing.pyi
10.17 MB
chmod
View
DL
Edit
Rename
Delete
_checked_types.py
17.86 MB
chmod
View
DL
Edit
Rename
Delete
_field_common.py
11.26 MB
chmod
View
DL
Edit
Rename
Delete
_helpers.py
2.39 MB
chmod
View
DL
Edit
Rename
Delete
_immutable.py
3.45 MB
chmod
View
DL
Edit
Rename
Delete
_pbag.py
6.57 MB
chmod
View
DL
Edit
Rename
Delete
_pclass.py
9.47 MB
chmod
View
DL
Edit
Rename
Delete
_pdeque.py
11.92 MB
chmod
View
DL
Edit
Rename
Delete
_plist.py
8.1 MB
chmod
View
DL
Edit
Rename
Delete
_pmap.py
14.29 MB
chmod
View
DL
Edit
Rename
Delete
_precord.py
6.83 MB
chmod
View
DL
Edit
Rename
Delete
_pset.py
5.55 MB
chmod
View
DL
Edit
Rename
Delete
_pvector.py
22.16 MB
chmod
View
DL
Edit
Rename
Delete
_toolz.py
3.35 MB
chmod
View
DL
Edit
Rename
Delete
_transformations.py
3.71 MB
chmod
View
DL
Edit
Rename
Delete
__init__.py
1.44 MB
chmod
View
DL
Edit
Rename
Delete
__init__.pyi
7.02 MB
chmod
View
DL
Edit
Rename
Delete
Edit file: /lib64/python3.9/site-packages/pyrsistent/typing.py
"""Helpers for use with type annotation. Use the empty classes in this module when annotating the types of Pyrsistent objects, instead of using the actual collection class. For example, from pyrsistent import pvector from pyrsistent.typing import PVector myvector: PVector[str] = pvector(['a', 'b', 'c']) """ from __future__ import absolute_import try: from typing import Container from typing import Hashable from typing import Generic from typing import Iterable from typing import Mapping from typing import Sequence from typing import Sized from typing import TypeVar __all__ = [ 'CheckedPMap', 'CheckedPSet', 'CheckedPVector', 'PBag', 'PDeque', 'PList', 'PMap', 'PSet', 'PVector', ] T = TypeVar('T') KT = TypeVar('KT') VT = TypeVar('VT') class CheckedPMap(Mapping[KT, VT], Hashable): pass # PSet.add and PSet.discard have different type signatures than that of Set. class CheckedPSet(Generic[T], Hashable): pass class CheckedPVector(Sequence[T], Hashable): pass class PBag(Container[T], Iterable[T], Sized, Hashable): pass class PDeque(Sequence[T], Hashable): pass class PList(Sequence[T], Hashable): pass class PMap(Mapping[KT, VT], Hashable): pass # PSet.add and PSet.discard have different type signatures than that of Set. class PSet(Generic[T], Hashable): pass class PVector(Sequence[T], Hashable): pass class PVectorEvolver(Generic[T]): pass class PMapEvolver(Generic[KT, VT]): pass class PSetEvolver(Generic[T]): pass except ImportError: pass
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply