summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing
diff options
context:
space:
mode:
authorElisha Hollander <just4now666666@gmail.com>2021-07-13 13:02:30 (GMT)
committerGitHub <noreply@github.com>2021-07-13 13:02:30 (GMT)
commit62d55a4d11fe25e8981e27e68ba080ab47c3f590 (patch)
treec7479a58d4d82717371d474580637f98b2a741af /Lib/multiprocessing
parent9c3eaf88dc5d5bed80cc45936de06b7b3162bc6d (diff)
downloadcpython-62d55a4d11fe25e8981e27e68ba080ab47c3f590.zip
cpython-62d55a4d11fe25e8981e27e68ba080ab47c3f590.tar.gz
cpython-62d55a4d11fe25e8981e27e68ba080ab47c3f590.tar.bz2
Remove unnecessary pass statements (GH-27103)
Diffstat (limited to 'Lib/multiprocessing')
-rw-r--r--Lib/multiprocessing/managers.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py
index b981b0e..9c7e92f 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'