diff options
author | Christian Heimes <christian@cheimes.de> | 2013-10-13 02:04:20 +0200 |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-10-13 02:04:20 +0200 |
commit | f1dc3ee16dbc81d7f91fd844c5dfcb0fd1a06500 (patch) | |
tree | f29fbbb86d3b40e738c2ab220d0a27cacf66d383 /Lib/random.py | |
parent | ad9c9bb5a93fe922dd5768ab4e84eed96d72083c (diff) | |
download | cpython-git-f1dc3ee16dbc81d7f91fd844c5dfcb0fd1a06500.tar.gz |
Issue #19218: Rename collections.abc to _collections_abc in order to speed up interpreter start
Diffstat (limited to 'Lib/random.py')
-rw-r--r-- | Lib/random.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/random.py b/Lib/random.py index 4a9fbd1059..808175ab4a 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -41,7 +41,7 @@ from types import MethodType as _MethodType, BuiltinMethodType as _BuiltinMethod from math import log as _log, exp as _exp, pi as _pi, e as _e, ceil as _ceil from math import sqrt as _sqrt, acos as _acos, cos as _cos, sin as _sin from os import urandom as _urandom -from collections.abc import Set as _Set, Sequence as _Sequence +from _collections_abc import Set as _Set, Sequence as _Sequence from hashlib import sha512 as _sha512 __all__ = ["Random","seed","random","uniform","randint","choice","sample", |