diff options
author | Antoine Pitrou <pitrou@free.fr> | 2017-09-18 21:50:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-18 21:50:44 (GMT) |
commit | 88c60c9668f0aa732693517a60b851cc1dfce0cb (patch) | |
tree | 60a30eb883118025b6416f566e64598dac8b8a58 /Lib/_pydecimal.py | |
parent | b43c4caf81b10e5c7ebaeb3a712c6db584f60bbd (diff) | |
download | cpython-88c60c9668f0aa732693517a60b851cc1dfce0cb.zip cpython-88c60c9668f0aa732693517a60b851cc1dfce0cb.tar.gz cpython-88c60c9668f0aa732693517a60b851cc1dfce0cb.tar.bz2 |
Trivial cleanups following bpo-31370 (#3649)
* Trivial cleanups following bpo-31370
* Also cleanup the "importlib._bootstrap_external" module
Diffstat (limited to 'Lib/_pydecimal.py')
-rw-r--r-- | Lib/_pydecimal.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/_pydecimal.py b/Lib/_pydecimal.py index a43c75f..a1662bb 100644 --- a/Lib/_pydecimal.py +++ b/Lib/_pydecimal.py @@ -431,10 +431,7 @@ _rounding_modes = (ROUND_DOWN, ROUND_HALF_UP, ROUND_HALF_EVEN, ROUND_CEILING, ##### Context Functions ################################################## # The getcontext() and setcontext() function manage access to a thread-local -# current context. Py2.4 offers direct support for thread locals. If that -# is not available, use threading.current_thread() which is slower but will -# work for older Pythons. If threads are not part of the build, create a -# mock threading object with threading.local() returning the module namespace. +# current context. import threading |