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

Commit

Permalink
fixing two doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
Frédéric Chapoton authored and Ivo-Maffei committed Aug 1, 2020
1 parent 4c89f3c commit 2bcea23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/doc/it/developer/coding_in_cython.rst
Expand Up @@ -622,7 +622,7 @@ che tipicamente restituir\`a una tupla ``(f, args, ...)`` tale che ``f(*args)``

sage: n = 5
sage: t = n.__reduce__(); t
(<built-in function make_integer>, ('5',))
(<... make_integer...>, ('5',))
sage: t[0](*t[1])
5
sage: loads(dumps(n)) == n
Expand Down
2 changes: 1 addition & 1 deletion src/doc/it/faq/faq-usage.rst
Expand Up @@ -193,7 +193,7 @@ Sfortunamente il supporto che NumPy fornisce a questi tipi avanzati di Sage, qua
sage: RealNumber = float; Integer = int
sage: from scipy import stats
sage: stats.ttest_ind(list([1,2,3,4,5]),list([2,3,4,5,.6]))
Ttest_indResult(statistic=0.076752955645333687, pvalue=0.94070490247380478)
Ttest_indResult(statistic=0.076752955645333..., pvalue=0.94070490247380...)
sage: stats.uniform(0,15).ppf([0.5,0.7])
array([ 7.5, 10.5])

Expand Down

0 comments on commit 2bcea23

Please sign in to comment.