Staging
v0.8.1
Revision 0a674638a3de14dc86b5294a5db067e0c2177a51 authored by Miss Islington (bot) on 01 June 2020, 00:01:37 UTC, committed by GitHub on 01 June 2020, 00:01:37 UTC

The topological sort functionality that was introduced initially in the
functools module has been moved to a new graphlib module to
better accommodate the new tools and keep the original scope of the
functools module.
(cherry picked from commit 2f172d8f1525defe9bba4d49e967fdfc69151731)

Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
1 parent a176b31
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