mirror of
https://gitlab.com/flectra-community/mis-builder.git
synced 2024-11-16 19:22:04 +00:00
216 lines
4.1 KiB
Python
216 lines
4.1 KiB
Python
# Copyright 2016 Thomas Binsfeld
|
|
# Copyright 2016 ACSONE SA/NV (<http://acsone.eu>)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
"""
|
|
Provides the AccountingNone singleton.
|
|
|
|
AccountingNone is a null value that dissolves in basic arithmetic operations,
|
|
as illustrated in the examples below. In comparisons, AccountingNone behaves
|
|
the same as zero.
|
|
|
|
>>> 1 + 1
|
|
2
|
|
>>> 1 + AccountingNone
|
|
1
|
|
>>> AccountingNone + 1
|
|
1
|
|
>>> AccountingNone + None
|
|
AccountingNone
|
|
>>> None + AccountingNone
|
|
AccountingNone
|
|
>>> +AccountingNone
|
|
AccountingNone
|
|
>>> -AccountingNone
|
|
AccountingNone
|
|
>>> -(AccountingNone)
|
|
AccountingNone
|
|
>>> AccountingNone - 1
|
|
-1
|
|
>>> 1 - AccountingNone
|
|
1
|
|
>>> abs(AccountingNone)
|
|
AccountingNone
|
|
>>> AccountingNone - None
|
|
AccountingNone
|
|
>>> None - AccountingNone
|
|
AccountingNone
|
|
>>> AccountingNone / 2
|
|
0.0
|
|
>>> 2 / AccountingNone
|
|
Traceback (most recent call last):
|
|
...
|
|
ZeroDivisionError
|
|
>>> AccountingNone / AccountingNone
|
|
AccountingNone
|
|
>>> AccountingNone // 2
|
|
0.0
|
|
>>> 2 // AccountingNone
|
|
Traceback (most recent call last):
|
|
...
|
|
ZeroDivisionError
|
|
>>> AccountingNone // AccountingNone
|
|
AccountingNone
|
|
>>> AccountingNone * 2
|
|
0.0
|
|
>>> 2 * AccountingNone
|
|
0.0
|
|
>>> AccountingNone * AccountingNone
|
|
AccountingNone
|
|
>>> AccountingNone * None
|
|
AccountingNone
|
|
>>> None * AccountingNone
|
|
AccountingNone
|
|
>>> str(AccountingNone)
|
|
''
|
|
>>> bool(AccountingNone)
|
|
False
|
|
>>> AccountingNone > 0
|
|
False
|
|
>>> AccountingNone < 0
|
|
False
|
|
>>> AccountingNone < 1
|
|
True
|
|
>>> AccountingNone > 1
|
|
False
|
|
>>> 0 < AccountingNone
|
|
False
|
|
>>> 0 > AccountingNone
|
|
False
|
|
>>> 1 < AccountingNone
|
|
False
|
|
>>> 1 > AccountingNone
|
|
True
|
|
>>> AccountingNone == 0
|
|
True
|
|
>>> AccountingNone == 0.0
|
|
True
|
|
>>> AccountingNone == None
|
|
True
|
|
>>> AccountingNone >= AccountingNone
|
|
True
|
|
>>> AccountingNone <= AccountingNone
|
|
True
|
|
>>> round(AccountingNone, 2)
|
|
0.0
|
|
>>> float(AccountingNone)
|
|
0.0
|
|
>>> int(AccountingNone)
|
|
0
|
|
"""
|
|
|
|
__all__ = ["AccountingNone"]
|
|
|
|
|
|
class AccountingNoneType:
|
|
def __add__(self, other):
|
|
if other is None:
|
|
return AccountingNone
|
|
return other
|
|
|
|
__radd__ = __add__
|
|
|
|
def __sub__(self, other):
|
|
if other is None:
|
|
return AccountingNone
|
|
return -other
|
|
|
|
def __rsub__(self, other):
|
|
if other is None:
|
|
return AccountingNone
|
|
return other
|
|
|
|
def __iadd__(self, other):
|
|
if other is None:
|
|
return AccountingNone
|
|
return other
|
|
|
|
def __isub__(self, other):
|
|
if other is None:
|
|
return AccountingNone
|
|
return -other
|
|
|
|
def __abs__(self):
|
|
return self
|
|
|
|
def __pos__(self):
|
|
return self
|
|
|
|
def __neg__(self):
|
|
return self
|
|
|
|
def __div__(self, other):
|
|
if other is AccountingNone:
|
|
return AccountingNone
|
|
return 0.0
|
|
|
|
def __rdiv__(self, other):
|
|
raise ZeroDivisionError
|
|
|
|
def __floordiv__(self, other):
|
|
if other is AccountingNone:
|
|
return AccountingNone
|
|
return 0.0
|
|
|
|
def __rfloordiv__(self, other):
|
|
raise ZeroDivisionError
|
|
|
|
def __truediv__(self, other):
|
|
if other is AccountingNone:
|
|
return AccountingNone
|
|
return 0.0
|
|
|
|
def __rtruediv__(self, other):
|
|
raise ZeroDivisionError
|
|
|
|
def __mul__(self, other):
|
|
if other is None or other is AccountingNone:
|
|
return AccountingNone
|
|
return 0.0
|
|
|
|
__rmul__ = __mul__
|
|
|
|
def __repr__(self):
|
|
return "AccountingNone"
|
|
|
|
def __str__(self):
|
|
return ""
|
|
|
|
def __nonzero__(self):
|
|
return False
|
|
|
|
def __bool__(self):
|
|
return False
|
|
|
|
def __eq__(self, other):
|
|
return other == 0 or other is None or other is AccountingNone
|
|
|
|
def __lt__(self, other):
|
|
return other > 0
|
|
|
|
def __gt__(self, other):
|
|
return other < 0
|
|
|
|
def __le__(self, other):
|
|
return other >= 0
|
|
|
|
def __ge__(self, other):
|
|
return other <= 0
|
|
|
|
def __float__(self):
|
|
return 0.0
|
|
|
|
def __int__(self):
|
|
return 0
|
|
|
|
def __round__(self, ndigits):
|
|
return 0.0
|
|
|
|
|
|
AccountingNone = AccountingNoneType()
|
|
|
|
|
|
if __name__ == "__main__": # pragma: no cover
|
|
import doctest
|
|
|
|
doctest.testmod()
|