Changeset 7505:2a3f3513a11b


Ignore:
Timestamp:
12/02/07 02:54:32 (5 years ago)
Author:
Craig Citro <craigcitro@…>
Branch:
default
Message:

Fix trac ticket #1231.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sage/modular/modsym/ambient.py

    r7258 r7505  
    11571157        OUTPUT: 
    11581158            subspace of modular symbols 
    1159         """ 
    1160         S = self.star_involution().matrix() - sign 
     1159 
     1160        EXAMPLES: 
     1161            sage: ModularSymbols(1,12,0,GF(5)).minus_submodule() ## indirect doctest 
     1162            Modular Symbols subspace of dimension 1 of Modular Symbols space of dimension 3 for Gamma_0(1) of weight 12 with sign 0 over Finite Field of size 5 
     1163        """ 
     1164        S = self.star_involution().matrix() - self.base_ring()(sign) 
    11611165        V = S.kernel() 
    11621166        if compute_dual: 
Note: See TracChangeset for help on using the changeset viewer.