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 2012年10月16日 12:31 by ncoghlan, last changed 2022年04月11日 14:57 by admin.
| Messages (5) | |||
|---|---|---|---|
| msg173035 - (view) | Author: Alyssa Coghlan (ncoghlan) * (Python committer) | Date: 2012年10月16日 12:31 | |
Trying to streamline the URL retrieval example in the concurrent.futures docs were severely hampered by the fact the URLError thrown by urlopen doesn't tell you *what URL* it was trying to retrieve when it failed. This is OK in synchronous code (where you probably still have the URL around), but quite a pain in asynchronous code (such as that using concurrent.futures) where the original context may have been lost by the time the future is signalled. |
|||
| msg173036 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2012年10月16日 12:33 | |
See also #10836 and msg172988. |
|||
| msg173494 - (view) | Author: Senthil Kumaran (orsenthil) * (Python committer) | Date: 2012年10月22日 00:57 | |
The URLError changes gone in as part of fix for issue10836 should give e.filename and e.reason. |
|||
| msg407759 - (view) | Author: Irit Katriel (iritkatriel) * (Python committer) | Date: 2021年12月05日 23:38 | |
Senthil, can this issue be closed now or is there something left to do? |
|||
| msg408419 - (view) | Author: Senthil Kumaran (orsenthil) * (Python committer) | Date: 2021年12月13日 02:07 | |
It is going to take a few weeks for me to get to my alerts, I will address this as soon as I get to it . Thanks for the triage, Irit. On Mon, Dec 13, 2021, 12:31 AM Irit Katriel <report@bugs.python.org> wrote: > > Change by Irit Katriel <iritkatriel@gmail.com>: > > > ---------- > status: open -> pending > > _______________________________________ > Python tracker <report@bugs.python.org> > <https://bugs.python.org/issue16247> > _______________________________________ > |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:37 | admin | set | github: 60451 |
| 2021年12月13日 02:07:40 | orsenthil | set | status: pending -> open messages: + msg408419 |
| 2021年12月12日 19:01:00 | iritkatriel | set | status: open -> pending |
| 2021年12月05日 23:38:16 | iritkatriel | set | nosy:
+ iritkatriel messages: + msg407759 |
| 2012年10月22日 00:57:25 | orsenthil | set | nosy:
+ orsenthil messages: + msg173494 |
| 2012年10月16日 12:33:19 | ezio.melotti | set | type: behavior components: + Library (Lib) versions: + Python 3.3, Python 3.4 nosy: + ezio.melotti messages: + msg173036 stage: needs patch |
| 2012年10月16日 12:31:20 | ncoghlan | create | |