Skip to content

Commit 5f1c63f

Browse files
committed
fix another wrong move
1 parent abe43d9 commit 5f1c63f

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

src/sage/modular/modform/space.py

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1610,20 +1610,21 @@ def is_eisenstein(self):
16101610

16111611
def new_submodule(self, p=None):
16121612
"""
1613-
Return the new submodule of self. If p is specified, return the
1614-
p-new submodule of self.
1613+
Return the new submodule of self.
1614+
1615+
If p is specified, return the p-new submodule of self.
16151616
16161617
.. note::
16171618
1618-
This function should be overridden by all derived classes.
1619+
This function should be overridden by all derived classes.
16191620
16201621
EXAMPLES::
16211622
1622-
sage: # needs sage.rings.number_field
1623-
sage: M = sage.modular.modform.space.ModularFormsSpace(Gamma0(11), 2, DirichletGroup(1)[0], base_ring=QQ); M.new_submodule()
1624-
Traceback (most recent call last):
1625-
...
1626-
NotImplementedError: computation of new submodule not yet implemented
1623+
sage: # needs sage.rings.number_field
1624+
sage: M = sage.modular.modform.space.ModularFormsSpace(Gamma0(11), 2, DirichletGroup(1)[0], base_ring=QQ); M.new_submodule()
1625+
Traceback (most recent call last):
1626+
...
1627+
NotImplementedError: computation of new submodule not yet implemented
16271628
"""
16281629
raise NotImplementedError("computation of new submodule not yet implemented")
16291630

0 commit comments

Comments
 (0)