https://github.com/python/cpython
Raw File
Tip revision: 2ae378ec7da4589512f623d474b8db4b12a62916 authored by Andrés Delfino on 26 October 2018, 13:12:02 UTC
[3.7] bpo-34789: xml.sax.make_parser expects a list not just any sequence (GH-9542)
Tip revision: 2ae378e
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