[issue18064] IDLE: add current directory to open_module

2020-06-06 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: +Python 3.10 -Python 3.6, Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue18064] IDLE: add current directory to open_module

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.3, Python 3.4 ___ Python tracker

[issue18064] IDLE: add current directory to open_module

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: For IDLE development, I would love to have idlelib and idlelib.idle_test on the open line. Perhaps this should be user configurable: Favorite directories for opening files. -- ___ Python tracker

[issue18064] IDLE: add current directory to open_module

2015-09-18 Thread Mark Roseman
Changes by Mark Roseman : -- nosy: +markroseman ___ Python tracker ___ ___

[issue18064] IDLE: add current directory to open_module

2013-05-25 Thread Terry J. Reedy
New submission from Terry J. Reedy: The point of File / Open Module is to look at the source for a module that has been, could be, or will be imported. The problem is that open_module is executed in the idle process while imports are executed in the user process, with the current directory

[issue18064] IDLE: add current directory to open_module

2013-05-25 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- dependencies: +Stop using imp in IDLE ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18064 ___ ___

[issue18064] IDLE: add current directory to open_module

2013-05-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: Code also suggests that this function should be elsewhere, such as in iobinding. This should be in the same place as regular open, wherever that is, since it is an alternative open. Document should be upgraded a bit: Load module opens Python-coded modules on