Kaydet (Commit) 6e99704f authored tarafından Fred Drake's avatar Fred Drake

Add a deprecation warning to reflect the documented deprecation of the

whrandom module.  (The deprecation was effective in Python 2.1.)
üst 4d61775a
......@@ -36,6 +36,11 @@ down in the serial case by using a lock here.)
# Translated by Guido van Rossum from C source provided by
# Adrian Baddeley.
import warnings
warnings.warn("the whrandom module is deprecated; please use random",
DeprecationWarning)
del warnings
class whrandom:
def __init__(self, x = 0, y = 0, z = 0):
......
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