ÿØÿà JPEG ÿþ;
Server IP : 68.65.120.201 / Your IP : 216.73.216.221 Web Server : LiteSpeed System : Linux server179.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : taxhyuvu ( 2294) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/alt/python311/lib64/python3.11/importlib/metadata/__pycache__/ |
Upload File : |
� �/�g� � �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 ��F/opt/alt/python311/lib64/python3.11/importlib/metadata/_collections.pyr z FreezableDefaultDict.__missing__ s&