New GitHub issue #119176 from YvesDup:<br>

<hr>

<pre>
# Bug report

### Bug description:

```python
import multiprocessing as mp

if __name__ == '__main__':
    mp.freeze_support()
    m = mp.Manager()
    l = m.list([None, True, 2.9001])
    print(l)
 l.clear()
```
Result is:
```python
[None, True, 2.9001]
Traceback (most recent call last):
  File "/Users/yves/Desktop/Bugs/gh-xxxxxxx1.py", line 8, in <module>
    l.clear()
    ^^^^^^^
AttributeError: 'ListProxy' object has no attribute 'clear'
```

The `clear` method is missing.  Is there a particular reason for this, or is it just an oversight ?

PS: The `clear` method exists with the `dict` class of multiprocessing.Manager().

### CPython versions tested on:

CPython main branch

### Operating systems tested on:

macOS
</pre>

<hr>

<a href="https://github.com/python/cpython/issues/119176">View on GitHub</a>
<p>Labels: type-bug</p>
<p>Assignee: </p>