Skip to content

Commit

Permalink
Merge _random into 2and3 (#1134)
Browse files Browse the repository at this point in the history
* Merge random module

* Move _random into 2and3
  • Loading branch information
euresti authored and matthiaskramm committed Apr 5, 2017
1 parent bc2234d commit 47c325c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
6 changes: 5 additions & 1 deletion stdlib/2/_random.pyi → stdlib/2and3/_random.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Stubs for _random

import sys
from typing import Tuple

# Actually Tuple[(int,) * 625]
Expand All @@ -10,4 +13,5 @@ class Random(object):
def setstate(self, state: _State) -> None: ...
def random(self) -> float: ...
def getrandbits(self, k: int) -> int: ...
def jumpahead(self, i: int) -> None: ...
if sys.version_info < (3,):
def jumpahead(self, i: int) -> None: ...
12 changes: 0 additions & 12 deletions stdlib/3/_random.pyi

This file was deleted.

0 comments on commit 47c325c

Please sign in to comment.