You could create a git repo with just nntplib and generate a package on
PyPI, then use that when running a version of Python which lacks nntplib.
Skip
On Wed, Apr 26, 2023, 8:42 PM Retrograde wrote:
> I used to use a script that relied on nntplib, which is currently still
> available in Python3
I used to use a script that relied on nntplib, which is currently still
available in Python3 but scheduled for deprecation in the near future.
What would be a suitable replacement?
--
Retrograde
--
https://mail.python.org/mailman/listinfo/python-list
Lorenzo Catoni wrote:
Dear Python Mailing List members,
I am writing to seek your assistance in understanding an unexpected
behavior that I encountered while using the __enter__ method. I have
provided a code snippet below to illustrate the problem:
```
class X:
... __enter__ = int
...