コード例 #1
0
ファイル: test_extfunc.py プロジェクト: purepython/pypy
 def fn(sign, beforept, afterpt, exponent):
     return parts_to_float(sign, beforept, afterpt, exponent)
コード例 #2
0
 def oofakeimpl(sign, beforept, afterpt, exponent):
     return rfloat.parts_to_float(sign._str, beforept._str,
                                  afterpt._str, exponent._str)
コード例 #3
0
ファイル: test_ll_strtod.py プロジェクト: Debug-Orz/Sypy
 def f(a, b, c, d):
     a,b,c,d = hlstr(a), hlstr(b), hlstr(c), hlstr(d)
     
     return rfloat.parts_to_float(a, b, c, d)
コード例 #4
0
ファイル: test_ll_strtod.py プロジェクト: njues/Sypy
        def f(a, b, c, d):
            a, b, c, d = hlstr(a), hlstr(b), hlstr(c), hlstr(d)

            return rfloat.parts_to_float(a, b, c, d)