diff options
| author | Éric Araujo <merwok@netwok.org> | 2010-11-22 03:09:19 +0000 |
|---|---|---|
| committer | Éric Araujo <merwok@netwok.org> | 2010-11-22 03:09:19 +0000 |
| commit | 28053fb174cd548629b8c94cba02ce837aeb9e5b (patch) | |
| tree | b5450a4b4e121f3a9b649aa4f6e00a4dcbde88bf /Doc/library/multiprocessing.rst | |
| parent | d4bbab278fc5021f5adbf4ae336e2754ca2037b3 (diff) | |
| download | cpython-git-28053fb174cd548629b8c94cba02ce837aeb9e5b.tar.gz | |
Remove unnecessary `object` base class in docs (#10366).
Also add a note about inheritance from `object` being default.
Diffstat (limited to 'Doc/library/multiprocessing.rst')
| -rw-r--r-- | Doc/library/multiprocessing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index d7a37c3f1a..a52824f24f 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -1334,7 +1334,7 @@ callables with the manager class. For example:: from multiprocessing.managers import BaseManager - class MathsClass(object): + class MathsClass: def add(self, x, y): return x + y def mul(self, x, y): |
