📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-22 22:02:26
📂
/ (Root)
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
setuptools
/
_vendor
/
importlib_metadata
/
__pycache__
📍 /opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/__pycache__
🔄 Refresh
✏️
Editing: _collections.cpython-311.pyc
Read Only
� ,|oi� � �n � d dl Z G d� de j � � Z G d� d e j dd� � � � ZdS )� Nc �( � � e Zd ZdZ� fd�Zd� 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 �Z �� t | dt � � j � � |� � S )N�_frozen)�getattr�super�__missing__)�self�key� __class__s ���/builddir/build/BUILD/cloudlinux-venv-1.0.10/venv/lib/python3.11/site-packages/setuptools/_vendor/importlib_metadata/_collections.pyr z FreezableDefaultDict.__missing__ s&