Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Lib/multiprocessing/managers.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
# Licensed to PSF under a Contributor Agreement.
#

__all__ = [ 'BaseManager', 'SyncManager', 'BaseProxy', 'Token',
'SharedMemoryManager' ]
__all__ = [ 'BaseManager', 'SyncManager', 'BaseProxy', 'Token' ]

#
# Imports
Expand All @@ -35,6 +34,7 @@
try:
from . import shared_memory
HAS_SHMEM = True
__all__.append('SharedMemoryManager')
except ImportError:
HAS_SHMEM = False

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix test___all__ on platforms lacking a shared memory implementation