LightTable / Python

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

Minor bugs: Eval on strings #7

Open toqueteos opened 10 years ago

toqueteos commented 10 years ago

With newline character

Eval of "Hello\nWorld" reports Hello.

Nothing on console.

http://i.imgur.com/toR5aKh.png

With tabs or multiple spaces

Eval of "Hello\tWorld" reports Hello World (single space). Eval of "Hello\t World" (one or more spaces between Hello and World) reports Hello World (single space).

With comments

"""Hello World!""" reports Hello World!. It should report nothing.