Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
Closed
Description
Feature or enhancement
Standard lists acceptclear as a shortcut fordel xs[:]
xs = ['a']xs.clear()However,multiprocessing.ListProxy omitted support forclear().
from multiprocessing import Managerwith Manager() as manager: xs = manager.list() xs.clear()raises the following exception
AttributeError: 'ListProxy' object has no attribute 'clear'Pitch
Ifclear is supported in a standard list, it should be supported in a multiprocessing list!
Previous discussion
This issue was not previously discussed.
Linked PRs
Metadata
Metadata
Assignees
Projects
Status
Done