| 123456789101112131415161718 |
- from __future__ import unicode_literals
- from builtins import str
- def as_string(obj):
- return "" if not obj else str(obj)
- class CompleteSet(set):
- def union(self, other):
- return set(other)
- def intersection(self, other):
- return set(other)
- def __contains__(self, y):
- return True
|