diff options
author | Andrew Kuchling <amk@amk.ca> | 2014-03-19 20:23:01 (GMT) |
---|---|---|
committer | Andrew Kuchling <amk@amk.ca> | 2014-03-19 20:23:01 (GMT) |
commit | 2e3743cd30090090073600cb05050a0e85327254 (patch) | |
tree | c7aa1d6beafacfdef35818bc69b55a7f841ebcd0 /Doc/library/decimal.rst | |
parent | 26e417b1821c2f5d27a81d9733273522b5d21c31 (diff) | |
download | cpython-2e3743cd30090090073600cb05050a0e85327254.zip cpython-2e3743cd30090090073600cb05050a0e85327254.tar.gz cpython-2e3743cd30090090073600cb05050a0e85327254.tar.bz2 |
#13437: link to the source code for a few more modules
Diffstat (limited to 'Doc/library/decimal.rst')
-rw-r--r-- | Doc/library/decimal.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 059ae7c..aa526db 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -12,6 +12,8 @@ .. moduleauthor:: Stefan Krah <skrah at bytereef.org> .. sectionauthor:: Raymond D. Hettinger <python at rcn.com> +**Source code:** :source:`Lib/decimal.py` + .. import modules for testing inline doctests with the Sphinx doctest builder .. testsetup:: * @@ -2092,4 +2094,3 @@ Alternatively, inputs can be rounded upon creation using the >>> Context(prec=5, rounding=ROUND_DOWN).create_decimal('1.2345678') Decimal('1.2345') - |