commit | e042a4553efd0ceca2234f68a4f1878f2ca04973 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Mon Jun 10 13:35:52 2019 +0300 |
committer | GitHub <noreply@github.com> | Mon Jun 10 13:35:52 2019 +0300 |
tree | 11a8aea14674b736119106392734dcabc5322745 | |
parent | c879ff247ae1b67a790ff98d2d59145302cd4e4e [diff] [blame] |
Do not use explicit inheritance from object in the documentation. (GH-13936)
diff --git a/Doc/library/copyreg.rst b/Doc/library/copyreg.rst index 40fca56..4392021 100644 --- a/Doc/library/copyreg.rst +++ b/Doc/library/copyreg.rst
@@ -49,7 +49,7 @@ it will be used: >>> import copyreg, copy, pickle - >>> class C(object): + >>> class C: ... def __init__(self, a): ... self.a = a ...