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年04月30日 18:55 by mark.dickinson, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| parser_raisefrom.patch | mark.dickinson, 2012年04月30日 18:58 | review | ||
| Messages (6) | |||
|---|---|---|---|
| msg159724 - (view) | Author: Mark Dickinson (mark.dickinson) * (Python committer) | Date: 2012年04月30日 18:55 | |
>>> import parser
>>> parser.tuple2st(parser.expr('raise exc from e'))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<string>", line 1
raise exc from e
|
|||
| msg159725 - (view) | Author: Mark Dickinson (mark.dickinson) * (Python committer) | Date: 2012年04月30日 18:58 | |
Patch attached. |
|||
| msg159956 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2012年05月04日 18:21 | |
Just curious, should "The parser module provides an interface to Python’s internal parser and byte-code compiler." say "CPython's"? |
|||
| msg159958 - (view) | Author: Mark Dickinson (mark.dickinson) * (Python committer) | Date: 2012年05月04日 18:25 | |
Hmm. Possibly, yes. At least, it should be clear somehow from the docs that the parser, symbol, token and ast modules are CPython specific. (And possibly tokenize, too.) |
|||
| msg160133 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年05月07日 11:03 | |
New changeset fc17f70292f6 by Mark Dickinson in branch '3.2': Issue #14701: Add missing support for 'raise ... from' in parser module. http://hg.python.org/cpython/rev/fc17f70292f6 New changeset 0dd0d56bdcc1 by Mark Dickinson in branch 'default': Issue #14701: Merge fix from 3.2. http://hg.python.org/cpython/rev/0dd0d56bdcc1 |
|||
| msg160135 - (view) | Author: Mark Dickinson (mark.dickinson) * (Python committer) | Date: 2012年05月07日 11:07 | |
Now fixed. Terry: I suggest opening a separate doc issue for the 'CPython-specific' issue |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:29 | admin | set | github: 58906 |
| 2012年05月07日 11:07:56 | mark.dickinson | set | status: open -> closed messages: + msg160135 assignee: mark.dickinson components: + Library (Lib) resolution: fixed |
| 2012年05月07日 11:03:24 | python-dev | set | nosy:
+ python-dev messages: + msg160133 |
| 2012年05月04日 18:25:56 | mark.dickinson | set | messages: + msg159958 |
| 2012年05月04日 18:21:57 | terry.reedy | set | nosy:
+ terry.reedy messages: + msg159956 |
| 2012年05月01日 04:32:23 | meador.inge | set | nosy:
+ meador.inge |
| 2012年04月30日 18:58:35 | mark.dickinson | set | files:
+ parser_raisefrom.patch keywords: + patch messages: + msg159725 stage: needs patch -> patch review |
| 2012年04月30日 18:55:23 | mark.dickinson | create | |