[issue22893] IDLE: __future__ does not work in startup code.

2020-08-11 Thread wyz23x2
Change by wyz23x2 : -- title: Idle: __future__ does not work in startup code. -> IDLE: __future__ does not work in startup code. ___ Python tracker ___ ___

[issue22893] Idle: __future__ does not work in startup code.

2020-06-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: +Python 3.10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue22893] Idle: __future__ does not work in startup code.

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue22893] Idle: __future__ does not work in startup code.

2016-05-07 Thread Eric Fahlgren
Changes by Eric Fahlgren : -- nosy: +eric.fahlgren ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue22893] Idle: __future__ does not work in startup code.

2015-05-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: Easy test case using -c: \python_d.exe -m idlelib.idle -c "from __future__ import division; print(1/2)" >>> 0.5 >>> 1/2 0 >>> division _Feature((2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 8192) Replace "-m idlelib.idle" with "-i" to get interactive interprete

[issue22893] Idle: __future__ does not work in startup code.

2014-11-17 Thread Terry J. Reedy
New submission from Terry J. Reedy: https://stackoverflow.com/questions/26977236/how-can-i-use-future-division-in-the-idle-startup-file report what seems like possibly fixable perhaps buggy behavior with respect to __future__ imports. More investigation is needed. Any change here might intera