Skip to content

Commit 97fd6e8

Browse files
committed
move ExtraMath into util
1 parent 8f74585 commit 97fd6e8

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

src/org/python/core/PyComplex.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) Corporation for National Research Initiatives
22
package org.python.core;
33

4+
import org.python.core.util.ExtraMath;
45
import org.python.expose.ExposedGet;
56
import org.python.expose.ExposedMethod;
67
import org.python.expose.ExposedNew;

src/org/python/core/PyString.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
import java.math.BigInteger;
55

6+
import org.python.core.util.ExtraMath;
67
import org.python.core.util.StringUtil;
78

89
import org.python.expose.ExposedMethod;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) Corporation for National Research Initiatives
22

3-
package org.python.core;
3+
package org.python.core.util;
44

55
/**
66
* A static utility class with two additional math functions.

src/org/python/modules/math.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
package org.python.modules;
33

44
import org.python.core.*;
5+
import org.python.core.util.ExtraMath;
56
import java.lang.Math;
67

78
public class math implements ClassDictInit {

0 commit comments

Comments
 (0)