summaryrefslogtreecommitdiffstats
path: root/Lib/random.py
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-12-05 20:28:34 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-12-05 20:28:34 (GMT)
commit5c2db37c20ad62097ffaaea32c7e332484c200e0 (patch)
tree9f88385ce641ffaa2587693bd38bc1d0f2cfb674 /Lib/random.py
parentc39aad7c278135e599489914e74cf939e39953e9 (diff)
downloadcpython-5c2db37c20ad62097ffaaea32c7e332484c200e0.zip
cpython-5c2db37c20ad62097ffaaea32c7e332484c200e0.tar.gz
cpython-5c2db37c20ad62097ffaaea32c7e332484c200e0.tar.bz2
Issue #7435: Remove duplicate int/long tests, and other
references to long in py3k. Patch provided by flox.
Diffstat (limited to 'Lib/random.py')
-rw-r--r--Lib/random.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/random.py b/Lib/random.py
index 12b4e1b..592e4b8 100644
--- a/Lib/random.py
+++ b/Lib/random.py
@@ -97,7 +97,7 @@ class Random(_random.Random):
None or no argument seeds from current time or from an operating
system specific randomness source if available.
- If a is not None or an int or long, hash(a) is used instead.
+ If a is not None or an int, hash(a) is used instead.
"""
if a is None: