⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.144
Server IP:
157.245.143.252
Server:
Linux www 6.11.0-9-generic #9-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 14 13:19:59 UTC 2024 x86_64
Server Software:
nginx/1.26.0
PHP Version:
8.3.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
python3.12
/
importlib
/
metadata
/
__pycache__
/
View File Name :
_collections.cpython-312.pyc
CRh n d dl Z G d de j Z G d d e j dd Zy) Nc ( e Zd ZdZ fdZd Z xZS )FreezableDefaultDicta! Often it is desirable to prevent the mutation of a default dict after its initial construction, such as to prevent mutation during iteration. >>> dd = FreezableDefaultDict(list) >>> dd[0].append('1') >>> dd.freeze() >>> dd[1] [] >>> len(dd) 1 c : t | dt | | S )N_frozen)getattrsuper__missing__)selfkey __class__s 6/usr/lib/python3.12/importlib/metadata/_collections.pyr z FreezableDefaultDict.__missing__ s