Kaydet (Commit) d9ebf4dc authored tarafından R David Murray's avatar R David Murray

#17489: Add explanatory comment that __getstate__ is not called.

We don't put coverage directives in the stdlib, but anyone looking at a
coverage report for Random should see the comment and understand why the lines
aren't covered.
üst e3e1c17e
...@@ -151,6 +151,9 @@ class Random(_random.Random): ...@@ -151,6 +151,9 @@ class Random(_random.Random):
## -------------------- pickle support ------------------- ## -------------------- pickle support -------------------
# Issue 17489: Since __reduce__ was defined to fix #759889 this is no
# longer called; we leave it here because it has been here since random was
# rewritten back in 2001 and why risk breaking something.
def __getstate__(self): # for pickle def __getstate__(self): # for pickle
return self.getstate() return self.getstate()
......
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