Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
fix doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
fchapoton committed Dec 25, 2020
1 parent ba32878 commit d02b275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/misc/sageinspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -2242,7 +2242,7 @@ def sage_getsourcelines(obj):
sage: cachedfib = cached_function(fibonacci)
sage: sage_getsourcelines(cachedfib)[0][0]
'def fibonacci(n, algorithm="pari"):\n'
'def fibonacci(n, algorithm="pari") -> Integral:\n'
sage: sage_getsourcelines(type(cachedfib))[0][0]
'cdef class CachedFunction(object):\n'
Expand Down

0 comments on commit d02b275

Please sign in to comment.