Issue 1441397: compiler module loses docstrings (original) (raw)

Issue1441397

Created on 2006-03-02 00:52 by mwh, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg27639 - (view) Author: Michael Hudson (mwh) (Python committer) Date: 2006-03-02 00:52
this is svn head: >>> import compiler >>> compiler.transformer.parse("'doc'") Module(None, Stmt([Discard(Const('doc'))])) this is 2.4: >>> import compiler >>> compiler.transformer.parse("'doc'") Module('doc', Stmt([])) I think the problem may be rooted in the parser module rather than the compiler module itself.
msg27640 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-07-29 09:34
Logged In: YES user_id=849994 The bug was transformer._doc_nodes missing or_test. Fixed in rev. 50924, including test.
History
Date User Action Args
2022-04-11 14:56:15 admin set github: 42962
2006-03-02 00:52:49 mwh create