File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -176,10 +176,10 @@ cdef class dirichlet_char(object):
176
176
177
177
>>> from flint import showgood
178
178
>>> chi = dirichlet_char(1, 1)
179
- >>> showgood(lambda: chi.l (2), dps=25)
179
+ >>> showgood(lambda: chi.l_function (2), dps=25)
180
180
1.644934066848226436472415
181
181
>>> chi = dirichlet_char(7, 3)
182
- >>> showgood(lambda: chi.l (2+3j), dps=25)
182
+ >>> showgood(lambda: chi.l_function (2+3j), dps=25)
183
183
1.273313649440490751755284 - 0.07432329442559421607102118j
184
184
185
185
"""
@@ -190,7 +190,11 @@ cdef class dirichlet_char(object):
190
190
return v
191
191
192
192
# For backwards compatibility we allow self.l(s) see Issue #210
193
- l = l_function # no-cython-lint
193
+ def l (self , s ): # no-cython-lint
194
+ """
195
+ Alias for :meth:`l_function`
196
+ """
197
+ return self .l_function(s)
194
198
195
199
def hardy_z (self , s ):
196
200
"""
You can’t perform that action at this time.
0 commit comments