Skip to content

Commit 134751c

Browse files
committed
0.0.7
Signed-off-by: Chris Granger <[email protected]>
1 parent 2bca0e5 commit 134751c

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
##Changes
22

3+
###0.0.7
4+
5+
* FIX: bug introduced in UTF8 handling
6+
37
###0.0.6
48

59
* FIX: ensure that code and paths being compiled are encoded in utf8

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Python",
33
"author": "Kodowa",
4-
"version": "0.0.6",
4+
"version": "0.0.7",
55
"source": "https://github.com/LightTable/Python",
66
"desc": "Python language plugin for Light Table",
77
"dependencies": {

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
(defproject com.lighttable/python "0.0.6"
1+
(defproject com.lighttable/python "0.0.7"
22
:description "Python language plugin for Light Table"
33
:dependencies [[org.clojure/clojure "1.5.1"]])

py-src/ltmain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def handleEval(data):
202202

203203
try:
204204
if isEval:
205-
result = eval(ensureUtf(code), module.__dict__)
205+
result = eval(code, module.__dict__)
206206
send(data[0], "editor.eval.python.result", {"meta": loc, "result": asUnicode(result)})
207207
else:
208208
exec(code, module.__dict__)

0 commit comments

Comments
 (0)