This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
标题: IDLE: add current directory to open_module
类型: behavior Stage: test needed
Components: IDLE Versions: Python 3.10
process
状态: open Resolution:
Dependencies: 18055 后续:
分配给: terry.reedy 抄送列表: markroseman, roger.serwy, terry.reedy
优先级: normal 关键字:

terry.reedy2013-05-25 21:36 创建。最近一次由 admin2022-04-11 14:57 修改。

Messages (3)
msg190012 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) 日期: 2013-05-25 21:36
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 prepended to sys.module.
The problem was already noted in the source, line 675.
 # XXX Ought to insert current file's directory in front of path

The augmentation of sys.path and subsequent restoration of the original could be done in a context manager that might be useful elsewhere. For 3.3,3.4, I think the change should be done after the patch in #18055, to not invalidate that patch. It would need to located in a slightly different place in 2.7, which will not be changed by that issue.
msg190057 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) 日期: 2013-05-26 03:48
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 sys.path in an editor window. The default name is the currently selected text, if any."

Tests should be added with this issue. This is the smallest dialog, and the structure of the revised code (#18055) gives a skeleton for a testcase: test_python_module (window open), test_builtin_module (Exception), test_bad_path (different Exception), and maybe even test_bad loader. We should look at tkinter tests for simulating name entry and click.
msg296372 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) 日期: 2017-06-19 20:38
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.
历史
日期 用户 动作 参数
2022-04-11 14:57:46admin修改github: 62264
2020-06-06 22:20:53terry.reedy修改versions: + Python 3.10, - Python 3.6, Python 3.7
2017-06-19 20:38:43terry.reedy修改assignee: terry.reedy
components: + IDLE
versions: + Python 3.6, Python 3.7, - Python 2.7, Python 3.3, Python 3.4
2017-06-19 20:38:22terry.reedy修改消息: + msg296372
2015-09-18 16:31:15markroseman修改抄送: + markroseman
2013-05-26 03:48:37terry.reedy修改消息: + msg190057
2013-05-25 21:36:38terry.reedy修改dependencies: + Stop using imp in IDLE
2013-05-25 21:36:20terry.reedy创建