Feature or enhancement
Standard lists accept clear as a shortcut for del xs[:]
However, multiprocessing.ListProxy omitted support for clear().
from multiprocessing import Manager
with Manager() as manager:
xs = manager.list()
xs.clear()
raises the following exception
AttributeError: 'ListProxy' object has no attribute 'clear'
Pitch
If clear is supported in a standard list, it should be supported in a multiprocessing list!
Previous discussion
This issue was not previously discussed.
Linked PRs
Feature or enhancement
Standard lists accept
clearas a shortcut fordel xs[:]However,
multiprocessing.ListProxyomitted support forclear().raises the following exception
Pitch
If
clearis supported in a standard list, it should be supported in a multiprocessing list!Previous discussion
This issue was not previously discussed.
Linked PRs