LightTable / Python

Python language plugin for Light Table
MIT License
98 stars 51 forks source link

Eval runs all code instead of just current line #43

Open kenny-evitt opened 8 years ago

kenny-evitt commented 8 years ago

Copied [and formatted] from several comments on LightTable/LightTable#1673:

it's often execute all codes even if I press ctrl+enter at the first line.

Example code:

import win32com.client #press ctrl+enter at this line,an IE instance is generated.
ieapp=win32com.client.Dispatch("InternetExplorer.Application")
ieapp.Visible=True

as above code, when I eval current line by press ctrl+enter at line 1,the second line is also evaled,and an IE applicathion is showed,thus line 2 and line 3 are also executed.