Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,5 @@ whereas others have multiple bases.

sage/rings/polynomial/polynomial_compiled
sage/rings/polynomial/polynomial_fateman

sage/rings/polynomial/integer_valued_polynomials
11 changes: 7 additions & 4 deletions src/sage/rings/polynomial/all.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
"""
Polynomials
"""

#*****************************************************************************
# ****************************************************************************
# Copyright (C) 2005 William Stein <[email protected]>
#
# Distributed under the terms of the GNU General Public License (GPL)
Expand All @@ -14,8 +13,8 @@
#
# The full text of the GPL is available at:
#
# http://www.gnu.org/licenses/
#*****************************************************************************
# https://www.gnu.org/licenses/
# ****************************************************************************

from sage.misc.lazy_import import lazy_import

Expand Down Expand Up @@ -51,3 +50,7 @@

# Evaluation of cyclotomic polynomials
from sage.rings.polynomial.cyclotomic import cyclotomic_value

# Integer-valued Univariate Polynomial Ring
lazy_import('sage.rings.polynomial.integer_valued_polynomials',
'IntegerValuedPolynomialRing')
Loading