mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 05:01:14 -07:00
* Bump mako from 1.1.6 to 1.2.0 Bumps [mako](https://github.com/sqlalchemy/mako) from 1.1.6 to 1.2.0. - [Release notes](https://github.com/sqlalchemy/mako/releases) - [Changelog](https://github.com/sqlalchemy/mako/blob/main/CHANGES) - [Commits](https://github.com/sqlalchemy/mako/commits) --- updated-dependencies: - dependency-name: mako dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update mako==1.2.0 * Update MarkupSafe==2.1.1 * Add importlib-metadata==4.11.3 * Update requirements.txt Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
30 lines
743 B
Python
30 lines
743 B
Python
import collections
|
|
|
|
|
|
# from jaraco.collections 3.3
|
|
class FreezableDefaultDict(collections.defaultdict):
|
|
"""
|
|
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
|
|
"""
|
|
|
|
def __missing__(self, key):
|
|
return getattr(self, '_frozen', super().__missing__)(key)
|
|
|
|
def freeze(self):
|
|
self._frozen = lambda key: self.default_factory()
|
|
|
|
|
|
class Pair(collections.namedtuple('Pair', 'name value')):
|
|
@classmethod
|
|
def parse(cls, text):
|
|
return cls(*map(str.strip, text.split("=", 1)))
|