| Server IP : 198.38.94.13 / Your IP : 216.73.217.33 Web Server : Apache System : Linux d4744.dxb1.stableserver.net 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64 User : revivere ( 1140) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /opt/saltstack/salt/lib/python3.10/site-packages/salt/utils/__pycache__/ |
Upload File : |
o
;j2 � @ sT d Z ddlZddlmZ ddlmZ ddlmZ G dd� de�ZG dd � d e�Z dS )
a-
:codeauthor: Pedro Algarvio (pedro@algarvio.me)
salt.utils.odict
~~~~~~~~~~~~~~~~
Implements a DefaultOrderedDict Class that serves as a
combination of ``OrderedDict`` and ``defaultdict``
Its source was submitted here::
http://stackoverflow.com/questions/6190331/
� N)�OrderedDict)�Callable)�
warn_untilc sb e Zd ZdZd� fdd� Zdd� Zdd� Zd d
� Zdd� Zd
d� Z dd� Z
i f� fdd� Z� ZS )�DefaultOrderedDictz3
Dictionary that remembers insertion order
Nc s@ t dd� |d urt|t�std��t� j|i |�� || _d S )N� �sThis module is deprecated. Use the standard library's collections.OrderedDict or salt.utils.datastructures instead.zfirst argument must be callable)r �
isinstancer � TypeError�super�__init__�default_factory)�selfr �a�kw�� __class__� �D/opt/saltstack/salt/lib/python3.10/site-packages/salt/utils/odict.pyr s �
zDefaultOrderedDict.__init__c C s, zt �| |�W S ty | �|� Y S w �N)r �__getitem__�KeyError�__missing__)r
�keyr r r r &