Staging
v0.8.1
Revision 077887059a5b3d38161dfd74b160c701445a1ef0 authored by Miss Islington (bot) on 26 August 2019, 06:52:45 UTC, committed by Terry Jan Reedy on 26 August 2019, 06:52:45 UTC
Cease turning SyntaxWarnings into SyntaxErrors.
(cherry picked from commit 1039f39c9c6edb4c185856c19316d3a4eb561c38)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
1 parent 352a123
Raw File
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