commit | 2085bd0877e17ad4d98a4586d5eabb6faecbb190 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Sat Jun 01 11:00:15 2019 +0300 |
committer | GitHub <noreply@github.com> | Sat Jun 01 11:00:15 2019 +0300 |
tree | c25b20d33ebf4d64a28abb8591f4ff7acf90614c | |
parent | 4a686504eb2bbf69adf78077458508a7ba131667 [diff] [blame] |
bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)
diff --git a/Lib/random.py b/Lib/random.py index 53981f3..365a019 100644 --- a/Lib/random.py +++ b/Lib/random.py
@@ -100,7 +100,7 @@ self.seed(x) self.gauss_next = None - def __init_subclass__(cls, **kwargs): + def __init_subclass__(cls, /, **kwargs): """Control how subclasses generate random integers. The algorithm a subclass can use depends on the random() and/or