diff options
Diffstat (limited to 'Doc/library/copyreg.rst')
-rw-r--r-- | Doc/library/copyreg.rst | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ The example below would like to show how to register a pickle function and how it will be used: >>> import copyreg, copy, pickle - >>> class C(object): + >>> class C: ... def __init__(self, a): ... self.a = a ... |