From 9594942716a8f9c557b85d31751753d89cd7cebf Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Tue, 27 Aug 2013 19:40:23 +0300 Subject: Issue #18783: Removed existing mentions of Python long type in docstrings, error messages and comments. --- Lib/random.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/random.py') diff --git a/Lib/random.py b/Lib/random.py index 7d8d4f3a40..cf83114b89 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -633,7 +633,7 @@ class SystemRandom(Random): return (int.from_bytes(_urandom(7), 'big') >> 3) * RECIP_BPF def getrandbits(self, k): - """getrandbits(k) -> x. Generates a long int with k random bits.""" + """getrandbits(k) -> x. Generates an int with k random bits.""" if k <= 0: raise ValueError('number of bits must be greater than zero') if k != int(k): -- cgit v1.2.1