BDFL agreed with Tim: rehabilitate randint().

This commit is contained in:
Neal Norwitz 2002-04-13 14:41:19 +00:00
parent 5961042061
commit f42d32cb27
1 changed files with 0 additions and 2 deletions

View File

@ -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)