Change by Elijah Rippeth :
--
versions: +Python 3.10, Python 3.11, Python 3.7, Python 3.8, Python 3.9
___
Python tracker
<https://bugs.python.org/issue44
New submission from Elijah Rippeth :
I have a directory with hundreds of thousands of text files. I wanted to
explore one file, so I wrote the following code expecting it to happen
basically instantaneously because of how generators work:
```python
from pathlib import Path
base_dir = Path
New submission from Elijah Rippeth :
Sometimes it's desirable to couple classes together by nesting. Currently
there's no way to signal to an interface implementer that an inner class is a
required attribute to be implemented.
I propose a decorator for `abstractnestedclass` to fil