Commit 562d728d authored by Andreas Jung's avatar Andreas Jung

whrandom->random

parent 7befd6ef
...@@ -11,9 +11,9 @@ ...@@ -11,9 +11,9 @@
# #
############################################################################# #############################################################################
import whrandom import random
def randid(randint=whrandom.randint, choice=whrandom.choice, signs=(-1,1)): def randid(randint=random.randint, choice=random.choice, signs=(-1,1)):
return choice(signs)*randint(1,2000000000) return choice(signs)*randint(1,2000000000)
del whrandom del random
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment