paul@6 | 1 | #!/usr/bin/env python |
paul@6 | 2 | |
paul@6 | 3 | """ |
paul@6 | 4 | Long objects. |
paul@6 | 5 | |
paul@6 | 6 | Copyright (C) 2015 Paul Boddie <paul@boddie.org.uk> |
paul@6 | 7 | |
paul@6 | 8 | This program is free software; you can redistribute it and/or modify it under |
paul@6 | 9 | the terms of the GNU General Public License as published by the Free Software |
paul@6 | 10 | Foundation; either version 3 of the License, or (at your option) any later |
paul@6 | 11 | version. |
paul@6 | 12 | |
paul@6 | 13 | This program is distributed in the hope that it will be useful, but WITHOUT |
paul@6 | 14 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
paul@6 | 15 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
paul@6 | 16 | details. |
paul@6 | 17 | |
paul@6 | 18 | You should have received a copy of the GNU General Public License along with |
paul@6 | 19 | this program. If not, see <http://www.gnu.org/licenses/>. |
paul@6 | 20 | """ |
paul@6 | 21 | |
paul@355 | 22 | class long: |
paul@6 | 23 | def __init__(self, number_or_string=None): pass |
paul@6 | 24 | def __iadd__(self, other): pass |
paul@6 | 25 | def __isub__(self, other): pass |
paul@6 | 26 | def __add__(self, other): pass |
paul@6 | 27 | def __radd__(self, other): pass |
paul@6 | 28 | def __sub__(self, other): pass |
paul@6 | 29 | def __rsub__(self, other): pass |
paul@6 | 30 | def __mul__(self, other): pass |
paul@6 | 31 | def __rmul__(self, other): pass |
paul@6 | 32 | def __div__(self, other): pass |
paul@6 | 33 | def __rdiv__(self, other): pass |
paul@6 | 34 | def __floordiv__(self, other): pass |
paul@6 | 35 | def __rfloordiv__(self, other): pass |
paul@6 | 36 | def __and__(self, other): pass |
paul@6 | 37 | def __rand__(self, other): pass |
paul@6 | 38 | def __or__(self, other): pass |
paul@6 | 39 | def __ror__(self, other): pass |
paul@6 | 40 | def __xor__(self, other): pass |
paul@6 | 41 | def __rxor__(self, other): pass |
paul@6 | 42 | def __lt__(self, other): pass |
paul@6 | 43 | def __gt__(self, other): pass |
paul@6 | 44 | def __le__(self, other): pass |
paul@6 | 45 | def __ge__(self, other): pass |
paul@6 | 46 | def __eq__(self, other): pass |
paul@6 | 47 | def __ne__(self, other): pass |
paul@6 | 48 | def __neg__(self): pass |
paul@6 | 49 | def __pos__(self): pass |
paul@6 | 50 | def __str__(self): pass |
paul@6 | 51 | def __bool__(self): pass |
paul@6 | 52 | |
paul@6 | 53 | # vim: tabstop=4 expandtab shiftwidth=4 |