Skip to content

Commit f34cb38

Browse files
committed
[GR-11644] Implement float.__format__ properly.
PullRequest: graalpython/190
2 parents dd0f032 + 2447ebb commit f34cb38

File tree

8 files changed

+1624
-21
lines changed

8 files changed

+1624
-21
lines changed

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/grammar/BinaryArithTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public void complexBinaryArith2() {
110110
"d = 2 ** 4\n" + //
111111
"e = 2.5 ** 3.0\n" + //
112112
"print(a,b,c,d,e)\n";
113-
assertPrints("1.07343919141098688e+17 1.07343919141098675e+18 -8.21361754992e+11 16 15.625\n", source);
113+
assertPrints("1.0734391914109869e+17 1.0734391914109868e+18 -821361754992.0 16 15.625\n", source);
114114
}
115115

116116
@Test

0 commit comments

Comments
 (0)