mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 19:22:17 +03:00
7 lines
194 B
Python
7 lines
194 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Some utility classes / functions first
|
||
|
class AllMatch(set):
|
||
|
"""Universal set - match everything"""
|
||
|
def __contains__(self, item): return True
|