Skip to content
This repository was archived by the owner on Feb 1, 2023. It is now read-only.

Commit aab046d

Browse files
committed
Remove __future__ statements from Cython files
1 parent 0f789d8 commit aab046d

File tree

327 files changed

+5
-432
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

327 files changed

+5
-432
lines changed

src/sage/algebras/letterplace/free_algebra_element_letterplace.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ AUTHOR:
1515
- Simon King (2011-03-23): Trac ticket :trac:`7797`
1616
1717
"""
18-
from __future__ import print_function
1918

2019
from sage.libs.singular.function import lib, singular_function
2120
from sage.misc.misc import repr_lincomb

src/sage/algebras/quatalg/quaternion_algebra_cython.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ AUTHORS:
2020
# (at your option) any later version.
2121
# http://www.gnu.org/licenses/
2222
#*****************************************************************************
23-
from __future__ import absolute_import
2423

2524
from sage.rings.integer_ring import ZZ
2625
from sage.rings.rational_field import QQ

src/sage/arith/multi_modular.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ Utility classes for multi-modular algorithms
1111
# (at your option) any later version.
1212
# http://www.gnu.org/licenses/
1313
#*****************************************************************************
14-
from __future__ import absolute_import
1514

1615
from cysignals.memory cimport check_allocarray, check_reallocarray, sig_free
1716

src/sage/calculus/integration.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ AUTHORS:
2525
# the License, or (at your option) any later version.
2626
# http://www.gnu.org/licenses/
2727
#*****************************************************************************
28-
from __future__ import print_function, absolute_import
2928

3029
from cysignals.signals cimport sig_on, sig_off
3130
from sage.rings.real_double import RDF

src/sage/calculus/interpolators.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Development supported by NSF award No. 0702939.
2222
#
2323
# http://www.gnu.org/licenses/
2424
#*****************************************************************************
25-
from __future__ import absolute_import
2625

2726
import numpy as np
2827
cimport numpy as np

src/sage/calculus/ode.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ AUTHORS:
1818
# (at your option) any later version.
1919
# http://www.gnu.org/licenses/
2020
#*****************************************************************************
21-
from __future__ import absolute_import
2221

2322
from cysignals.memory cimport sig_malloc, sig_free
2423
from cysignals.signals cimport sig_on, sig_off

src/sage/calculus/riemann.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ Development supported by NSF award No. 0702939.
2424
#
2525
# http://www.gnu.org/licenses/
2626
#*****************************************************************************
27-
from __future__ import print_function, absolute_import
2827

2928
from cysignals.signals cimport sig_on, sig_off
3029

src/sage/calculus/transforms/dwt.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ AUTHOR:
2020
# (at your option) any later version.
2121
# http://www.gnu.org/licenses/
2222
#*****************************************************************************
23-
from __future__ import absolute_import
2423

2524
import sage.plot.all
2625

src/sage/calculus/transforms/fft.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ AUTHORS:
1919
# (at your option) any later version.
2020
# http://www.gnu.org/licenses/
2121
#*****************************************************************************
22-
from __future__ import absolute_import
2322

2423
from cysignals.memory cimport sig_malloc, sig_free
2524

src/sage/categories/action.pyx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ AUTHOR:
5353
# http://www.gnu.org/licenses/
5454
#*****************************************************************************
5555

56-
from __future__ import absolute_import
57-
5856
from cpython.tuple cimport PyTuple_GET_ITEM
5957

6058
from .functor cimport Functor

0 commit comments

Comments
 (0)