[issue16493] Document the 'optimize' argument to compile()

2012-11-26 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue16493] Document the 'optimize' argument to compile()

2012-11-19 Thread Ezio Melotti
Ezio Melotti added the comment: Looks like Georg did: 713c6b6ca5ce. The documentation is missing on 2.7, but AFAICT that's because the arg is only in 3.2+. Brett, if you meant that this should be documented somewhere else, feel free to reopen the issue. -- resolution: -> out of date s

[issue16493] Document the 'optimize' argument to compile()

2012-11-19 Thread Kushal Das
Kushal Das added the comment: I guess somebody already did the work http://docs.python.org/3.4/library/functions.html?highlight=compile#compile ? -- ___ Python tracker ___ _

[issue16493] Document the 'optimize' argument to compile()

2012-11-18 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue16493] Document the 'optimize' argument to compile()

2012-11-18 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue16493] Document the 'optimize' argument to compile()

2012-11-18 Thread Brett Cannon
Brett Cannon added the comment: No one else is working on it. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16493] Document the 'optimize' argument to compile()

2012-11-17 Thread Kushal Das
Kushal Das added the comment: I will submit a patch if no one is working on it. -- nosy: +kushaldas ___ Python tracker ___ ___ Python-

[issue16493] Document the 'optimize' argument to compile()

2012-11-17 Thread Brett Cannon
New submission from Brett Cannon: Looks like Georg added the flag in 2010 after Python 2.7 was already out, so this doesn't need to be backported. The possible values are: -1 : optimization level the interpreter is already executing with 0 : no optimization 1 : -O 2 : -OO -- assignee: