diff options
author | Elisha Hollander <just4now666666@gmail.com> | 2021-07-13 16:02:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-13 15:02:30 +0200 |
commit | 62d55a4d11fe25e8981e27e68ba080ab47c3f590 (patch) | |
tree | c7479a58d4d82717371d474580637f98b2a741af /Lib/multiprocessing/managers.py | |
parent | 9c3eaf88dc5d5bed80cc45936de06b7b3162bc6d (diff) | |
download | cpython-git-62d55a4d11fe25e8981e27e68ba080ab47c3f590.tar.gz |
Remove unnecessary pass statements (GH-27103)
Diffstat (limited to 'Lib/multiprocessing/managers.py')
-rw-r--r-- | Lib/multiprocessing/managers.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py index b981b0e1cb..9c7e92faec 100644 --- a/Lib/multiprocessing/managers.py +++ b/Lib/multiprocessing/managers.py @@ -1337,7 +1337,6 @@ if HAS_SHMEM: def __del__(self): util.debug(f"{self.__class__.__name__}.__del__ by pid {getpid()}") - pass def get_server(self): 'Better than monkeypatching for now; merge into Server ultimately' |