Skip to content

Instantly share code, notes, and snippets.

@jashsu
Created January 22, 2013 22:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jashsu/a6e3b04fb5cfcfd6f612 to your computer and use it in GitHub Desktop.
Save jashsu/a6e3b04fb5cfcfd6f612 to your computer and use it in GitHub Desktop.
/usr/bin/python2.7 /home/jason/.IntelliJIdea12/config/plugins/python/helpers/pydev/pydevd.py --multiproc --client 127.0.0.1 --port 43356 --file /home/jason/git/kskit/requests_test.py
PyDev console: using IPython 0.12.1
Connected to pydev debugger (build 123.123)
pydev debugger: process 10185 is connecting
>>> print 'Test'
Test
>>> import lxml
>>> dir(lxml)
Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/IPython/core/interactiveshell.py", line 2538, in run_code
exec code_obj in self.user_global_ns, self.user_ns
File "<ipython-input-3-a0ef68113b31>", line 1, in <module>
dir(lxml)
File "/usr/lib/python2.7/dist-packages/IPython/core/displayhook.py", line 239, in __call__
self.write_format_data(format_dict)
File "/usr/lib/python2.7/dist-packages/IPython/core/displayhook.py", line 182, in write_format_data
print >>io.stdout, result_repr
IOError: [Errno 32] Broken pipe
>>> print 'Test 2'
Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/IPython/core/interactiveshell.py", line 2538, in run_code
exec code_obj in self.user_global_ns, self.user_ns
File "<ipython-input-4-faaebce6d7ec>", line 1, in <module>
print 'Test 2'
IOError: [Errno 32] Broken pipe
/usr/bin/python2.7 /home/jason/.IntelliJIdea12/config/plugins/python/helpers/pydev/pydevd.py --multiproc --client 127.0.0.1 --port 53910 --file /home/jason/git/kskit/requests_test.py
pydev debugger: process 2976 is connecting
Connected to pydev debugger (build 123.123)
>>> print 'Hello'
Hello
>>> import lxml
>>> dir(lxml)
['__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__', '_elementpath', 'etree', 'get_include', 'os']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment