Python
Python copied to clipboard
Python language plugin for Light Table
The core team doesn't use Python or iPython at work and doesn't have the bandwidth to look into this. Happy to take contributions from anyone interested digging into this. We're...
Accumulate and add compiler flags to calls to the compile function for eval/exec code in handleEval when features that alter syntax are imported from the **future** module. The problem was...
Issue #23 shows that evaluating the print function imported from `__future__` breaks with a syntax error: ``` python from __future__ import print_function print('spam', file=sys.stderr) ``` ``` Traceback (most recent call...
When printing to stderr, nothing shows up in the console. ``` python import sys print >> sys.stderr, "test" ``` ``` python import sys sys.stderr.write("test2") ``` Both of these ways work...
Hello - Is there any way that I could configure LT to connect to a remote python session? Working with LT (0.7.2) on Windows 7, but developing over ssh to...
I've been struggling with iPython 3.2 compatibility and have tracked it down to the changed difference: `execute` isn't an attribute of the `shell_channel`. Seems that since the Jupyter/IPython division `ipykernel`...
It currently can't find my dependencies. Nobody that uses Python professionally works outside of virtualenv.
First pull request ever, sorry if I'm not doing something right! See virtualenv docs at https://virtualenv.pypa.io/en/latest/userguide.html#windows-notes for reference.
Added try-except because python3 has no unicode class.
At the moment it only works for Clojure Previously discussed here: https://github.com/LightTable/LightTable/issues/482