Staging
v0.5.1
https://github.com/python/cpython
Revision 071bed842eeff9673bc5c4f64e3916a151132d2a authored by Miss Islington (bot) on 16 June 2020, 15:47:16 UTC, committed by GitHub on 16 June 2020, 15:47:16 UTC

C and Python coverage jobs of Travis CI are no longer run on pull
requests, only on branches like master.
(cherry picked from commit fc710ee266e9461fdba9933ec6004318db588820)

Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent e63cc2f
Raw File
Tip revision: 071bed842eeff9673bc5c4f64e3916a151132d2a authored by Miss Islington (bot) on 16 June 2020, 15:47:16 UTC
bpo-40993: Don't run Travis CI coverage on PRs (GH-20916)
Tip revision: 071bed8
decimal.py

try:
    from _decimal import *
    from _decimal import __doc__
    from _decimal import __version__
    from _decimal import __libmpdec_version__
except ImportError:
    from _pydecimal import *
    from _pydecimal import __doc__
    from _pydecimal import __version__
    from _pydecimal import __libmpdec_version__
back to top