Issue 1612012: builtin compile() doc needs PyCF_DONT_IMPLY_DEDENT (original) (raw)

Issue1612012

Created on 2006-12-09 05:45 by anthonybaxter, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg61047 - (view) Author: Anthony Baxter (anthonybaxter) (Python triager) Date: 2006-12-09 05:45
http://docs.python.org/lib/built-in-funcs.html doesn't mention the flag PyCF_DONT_IMPLY_DEDENT, as used by codeop.py in the stdlib. (I note that codeop.py has that flag as a literal, copied out of pythonrun.h - it should probably be exposed in some way).
msg138343 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2011-06-14 16:28
Is this something that would actually be useful to someone using compile()? See #12207 also
msg263753 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2016-04-19 17:09
A similar request (issue 12207 - "Document ast.PyCF_ONLY_AST") was rejected in 2012.
History
Date User Action Args
2022-04-11 14:56:21 admin set github: 44319
2016-04-19 17:09:24 berker.peksag set status: open -> closednosy: + berker.peksagmessages: + resolution: rejectedstage: resolved
2012-01-09 16:13:43 eric.araujo set nosy: + eric.araujo
2011-06-14 16:28:22 terry.reedy set nosy: + terry.reedymessages: + versions: + Python 3.3, - Python 3.1
2010-07-10 15:44:38 BreamoreBoy set assignee: docs@pythonnosy: + docs@pythonversions: + Python 3.1, Python 2.7, Python 3.2, - Python 2.6, Python 3.0
2009-03-30 17:39:45 ajaksu2 set type: behaviorversions: + Python 2.6, Python 3.0
2006-12-09 05:45:57 anthonybaxter create