Staging
v0.5.1
https://github.com/python/cpython
Revision e2e178e081a621d2c1fd8ceb65ce7735b3036def authored by Alexander Belopolsky on 01 March 2015, 19:52:07 UTC, committed by Alexander Belopolsky on 01 March 2015, 19:52:07 UTC
1 parent 3de4aae
Raw File
Tip revision: e2e178e081a621d2c1fd8ceb65ce7735b3036def authored by Alexander Belopolsky on 01 March 2015, 19:52:07 UTC
Closes issue #22791: Improved datetime from timestamp methods documentation.
Tip revision: e2e178e
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