21 items
NAME ↑ SIZE MODIFIED PERMS ACTIONS
.. / Parent Directory
__init__.cpython-311.opt-1.pyc — 57.58 KB
2026-04-27 17:21 · rw-r--r--
57.58 KB 2026-04-27 17:21 rw-r--r--
__init__.cpython-311.opt-2.pyc — 47.02 KB
2026-04-27 17:21 · rw-r--r--
47.02 KB 2026-04-27 17:21 rw-r--r--
__init__.cpython-311.pyc — 57.58 KB
2026-04-27 17:21 · rw-r--r--
57.58 KB 2026-04-27 17:21 rw-r--r--
_adapters.cpython-311.opt-1.pyc — 3.71 KB
2026-04-27 17:21 · rw-r--r--
3.71 KB 2026-04-27 17:21 rw-r--r--
_adapters.cpython-311.opt-2.pyc — 3.6 KB
2026-04-27 17:21 · rw-r--r--
3.6 KB 2026-04-27 17:21 rw-r--r--
_adapters.cpython-311.pyc — 3.71 KB
2026-04-27 17:21 · rw-r--r--
3.71 KB 2026-04-27 17:21 rw-r--r--
_collections.cpython-311.opt-1.pyc — 2.09 KB
2026-04-27 17:21 · rw-r--r--
2.09 KB 2026-04-27 17:21 rw-r--r--
_collections.cpython-311.opt-2.pyc — 1.79 KB
2026-04-27 17:21 · rw-r--r--
1.79 KB 2026-04-27 17:21 rw-r--r--
_collections.cpython-311.pyc — 2.09 KB
2026-04-27 17:21 · rw-r--r--
2.09 KB 2026-04-27 17:21 rw-r--r--
_functools.cpython-311.opt-1.pyc — 3.5 KB
2026-04-27 17:21 · rw-r--r--
3.5 KB 2026-04-27 17:21 rw-r--r--
_functools.cpython-311.opt-2.pyc — 1.51 KB
2026-04-27 17:21 · rw-r--r--
1.51 KB 2026-04-27 17:21 rw-r--r--
_functools.cpython-311.pyc — 3.5 KB
2026-04-27 17:21 · rw-r--r--
3.5 KB 2026-04-27 17:21 rw-r--r--
_itertools.cpython-311.opt-1.pyc — 2.48 KB
2026-04-27 17:21 · rw-r--r--
2.48 KB 2026-04-27 17:21 rw-r--r--
_itertools.cpython-311.opt-2.pyc — 1.3 KB
2026-04-27 17:21 · rw-r--r--
1.3 KB 2026-04-27 17:21 rw-r--r--
_itertools.cpython-311.pyc — 2.48 KB
2026-04-27 17:21 · rw-r--r--
2.48 KB 2026-04-27 17:21 rw-r--r--
_meta.cpython-311.opt-1.pyc — 2.84 KB
2026-04-27 17:21 · rw-r--r--
2.84 KB 2026-04-27 17:21 rw-r--r--
_meta.cpython-311.opt-2.pyc — 2.64 KB
2026-04-27 17:21 · rw-r--r--
2.64 KB 2026-04-27 17:21 rw-r--r--
_meta.cpython-311.pyc — 2.84 KB
2026-04-27 17:21 · rw-r--r--
2.84 KB 2026-04-27 17:21 rw-r--r--
_text.cpython-311.opt-1.pyc — 4.24 KB
2026-04-27 17:21 · rw-r--r--
4.24 KB 2026-04-27 17:21 rw-r--r--
_text.cpython-311.opt-2.pyc — 3.08 KB
2026-04-27 17:21 · rw-r--r--
3.08 KB 2026-04-27 17:21 rw-r--r--
_text.cpython-311.pyc — 4.24 KB
2026-04-27 17:21 · rw-r--r--
4.24 KB 2026-04-27 17:21 rw-r--r--
ONLINE
__pycache__
21 items
04:04:54
TERMINAL FM
Edit
Preview
Download
Rename
Copy
Chmod
Delete
!A?h(ddlmZddZeeffdZdS)) filterfalseNc#Kt}|j}|)t|j|D]}|||VdS|D] }||}||vr|||V!dS)zHList unique elements, preserving order. Remember all elements ever seen.N)setaddr __contains__)iterablekeyseenseen_addelementks 6/usr/lib64/python3.11/importlib/metadata/_itertools.pyunique_everseenrs 55DxH {"4#4h??  G HW   MMMM     GG A}}    c|tdS| t||rt|fS t|S#t$rt|fcYSwxYw)axIf *obj* is iterable, return an iterator over its items:: >>> obj = (1, 2, 3) >>> list(always_iterable(obj)) [1, 2, 3] If *obj* is not iterable, return a one-item iterable containing *obj*:: >>> obj = 1 >>> list(always_iterable(obj)) [1] If *obj* is ``None``, return an empty iterable: >>> obj = None >>> list(always_iterable(None)) [] By default, binary and text strings are not considered iterable:: >>> obj = 'foo' >>> list(always_iterable(obj)) ['foo'] If *base_type* is set, objects for which ``isinstance(obj, base_type)`` returns ``True`` won't be considered iterable. >>> obj = {'a': 1} >>> list(always_iterable(obj)) # Iterate over the dict's keys ['a'] >>> list(always_iterable(obj, base_type=dict)) # Treat dicts as a unit [{'a': 1}] Set *base_type* to ``None`` to avoid any special handling and treat objects Python considers iterable as iterable: >>> obj = 'foo' >>> list(always_iterable(obj, base_type=None)) ['f', 'o', 'o'] N)iter isinstance TypeError)obj base_types ralways_iterablersxR {Bxx:c9#=#=SF||Cyy SF||sAA! A!)N) itertoolsrrstrbytesrrrrrsR!!!!!!&%(<222222r