summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/random.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/random.py b/Lib/random.py
index 4259973..f502d1d 100644
--- a/Lib/random.py
+++ b/Lib/random.py
@@ -315,8 +315,6 @@ class Random:
def randint(self, a, b):
"""Return random integer in range [a, b], including both end points.
-
- (Deprecated; use randrange(a, b+1).)
"""
return self.randrange(a, b+1)