Lichen

Change of lib/__builtins__/float.py

6:f551873980e5
lib/__builtins__/float.py
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lib/__builtins__/float.py	Tue Aug 30 21:55:58 2016 +0200
     1.3 @@ -0,0 +1,54 @@
     1.4 +#!/usr/bin/env python
     1.5 +
     1.6 +"""
     1.7 +Floating point objects.
     1.8 +
     1.9 +Copyright (C) 2015, 2016 Paul Boddie <paul@boddie.org.uk>
    1.10 +
    1.11 +This program is free software; you can redistribute it and/or modify it under
    1.12 +the terms of the GNU General Public License as published by the Free Software
    1.13 +Foundation; either version 3 of the License, or (at your option) any later
    1.14 +version.
    1.15 +
    1.16 +This program is distributed in the hope that it will be useful, but WITHOUT
    1.17 +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
    1.18 +FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
    1.19 +details.
    1.20 +
    1.21 +You should have received a copy of the GNU General Public License along with
    1.22 +this program.  If not, see <http://www.gnu.org/licenses/>.
    1.23 +"""
    1.24 +
    1.25 +class float(object):
    1.26 +    def __init__(self, number_or_string=None):
    1.27 +        # Note member.
    1.28 +        self.data = 0
    1.29 +
    1.30 +    def __iadd__(self, other): pass
    1.31 +    def __isub__(self, other): pass
    1.32 +    def __add__(self, other): pass
    1.33 +    def __radd__(self, other): pass
    1.34 +    def __sub__(self, other): pass
    1.35 +    def __rsub__(self, other): pass
    1.36 +    def __mul__(self, other): pass
    1.37 +    def __rmul__(self, other): pass
    1.38 +    def __div__(self, other): pass
    1.39 +    def __rdiv__(self, other): pass
    1.40 +    def __floordiv__(self, other): pass
    1.41 +    def __rfloordiv__(self, other): pass
    1.42 +    def __mod__(self, other): pass
    1.43 +    def __rmod__(self, other): pass
    1.44 +    def __pow__(self, other): pass
    1.45 +    def __rpow__(self, other): pass
    1.46 +    def __lt__(self, other): pass
    1.47 +    def __gt__(self, other): pass
    1.48 +    def __le__(self, other): pass
    1.49 +    def __ge__(self, other): pass
    1.50 +    def __eq__(self, other): pass
    1.51 +    def __ne__(self, other): pass
    1.52 +    def __neg__(self): pass
    1.53 +    def __pos__(self): pass
    1.54 +    def __str__(self): pass
    1.55 +    def __bool__(self): pass
    1.56 +
    1.57 +# vim: tabstop=4 expandtab shiftwidth=4