This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2011年07月13日 08:13 by july, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| whatsnew.3.3.nntplib.example.diff | july, 2011年07月13日 08:13 | review | ||
| library.nntplib.rst.diff | july, 2011年07月25日 19:53 | review | ||
| Messages (6) | |||
|---|---|---|---|
| msg140228 - (view) | Author: July Tikhonov (july) * | Date: 2011年07月13日 08:13 | |
>>> from nntplib import NNTP
>>> with nntplib.NNTP('news.gmane.org') as n:
will not work. It should be
>>> import nntplib
>>> with nntplib.NNTP('news.gmane.org') as n:
or
>>> from nntplib import NNTP
>>> with NNTP('news.gmane.org') as n:
|
|||
| msg140236 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年07月13日 08:44 | |
New changeset e0cd35660ae9 by Ezio Melotti in branch 'default': #12547: Fix import and output in nntplib example. Initial patch by July Tikhonov. http://hg.python.org/cpython/rev/e0cd35660ae9 |
|||
| msg140237 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2011年07月13日 08:48 | |
Fixed, thanks for the report and the patch! |
|||
| msg141119 - (view) | Author: July Tikhonov (july) * | Date: 2011年07月25日 19:53 | |
The very same example (with the same error) can be found in Doc/library/nntplib.rst |
|||
| msg141136 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年07月26日 06:38 | |
New changeset 95c34bce986c by Ezio Melotti in branch 'default': #12547: Fix example in nntplib doc. Patch by July Tikhonov. http://hg.python.org/cpython/rev/95c34bce986c |
|||
| msg141137 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2011年07月26日 06:38 | |
Fixed, thanks again for the patch! |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:19 | admin | set | github: 56756 |
| 2011年07月26日 06:38:58 | ezio.melotti | set | status: open -> closed resolution: fixed messages: + msg141137 |
| 2011年07月26日 06:38:12 | python-dev | set | messages: + msg141136 |
| 2011年07月25日 19:53:25 | july | set | status: closed -> open files: + library.nntplib.rst.diff resolution: fixed -> (no value) messages: + msg141119 |
| 2011年07月13日 08:48:34 | ezio.melotti | set | status: open -> closed nosy: + ezio.melotti messages: + msg140237 resolution: fixed stage: resolved |
| 2011年07月13日 08:45:00 | python-dev | set | nosy:
+ python-dev messages: + msg140236 |
| 2011年07月13日 08:13:30 | july | create | |