The debugger edit command opened more than just the active Python file.
In the description, it says that the edit command is supposed to open the active file and put the cursor at the currently-active line, but instead, it opened the active file to the first line, and opened a new file that was named with the line number expected for the active file. It could be that some text editors supported the format of opening a file directly to a specific line, but since not all of them do, the edit command should just open the active file, and then then user can manually go to the line number desired.
The debugger
edit
command opened more than just the active Python file.In the description, it says that the
edit
command is supposed to open the active file and put the cursor at the currently-active line, but instead, it opened the active file to the first line, and opened a new file that was named with the line number expected for the active file. It could be that some text editors supported the format of opening a file directly to a specific line, but since not all of them do, theedit
command should just open the active file, and then then user can manually go to the line number desired.