diff options
author | rahulp13 | 2020-03-03 05:38:24 +0530 |
---|---|---|
committer | rahulp13 | 2020-03-03 05:38:24 +0530 |
commit | 07cc7e03ba5e91c14abc854231ce975109563616 (patch) | |
tree | c00d44222bba1dc31a899987581ccebe1424a2c6 /Windows/dateutil/_common.py | |
parent | dfc268e0863c913a1b8726cd54eea3b40caf7c67 (diff) | |
download | eSim-07cc7e03ba5e91c14abc854231ce975109563616.tar.gz eSim-07cc7e03ba5e91c14abc854231ce975109563616.tar.bz2 eSim-07cc7e03ba5e91c14abc854231ce975109563616.zip |
packaging with pyinstaller - Windows OS
Diffstat (limited to 'Windows/dateutil/_common.py')
-rw-r--r-- | Windows/dateutil/_common.py | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/Windows/dateutil/_common.py b/Windows/dateutil/_common.py deleted file mode 100644 index 4eb2659b..00000000 --- a/Windows/dateutil/_common.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -Common code used in multiple modules. -""" - - -class weekday(object): - __slots__ = ["weekday", "n"] - - def __init__(self, weekday, n=None): - self.weekday = weekday - self.n = n - - def __call__(self, n): - if n == self.n: - return self - else: - return self.__class__(self.weekday, n) - - def __eq__(self, other): - try: - if self.weekday != other.weekday or self.n != other.n: - return False - except AttributeError: - return False - return True - - def __hash__(self): - return hash(( - self.weekday, - self.n, - )) - - def __ne__(self, other): - return not (self == other) - - def __repr__(self): - s = ("MO", "TU", "WE", "TH", "FR", "SA", "SU")[self.weekday] - if not self.n: - return s - else: - return "%s(%+d)" % (s, self.n) - -# vim:ts=4:sw=4:et |