Fabio Zadrozny

Results 70 comments of Fabio Zadrozny

As a note for potential implementors, Ideally we'd be able to create a pure python version which does the xml escaping and urllib quote/quote_plus in a single pass, so that...

The client/server protocol currently requires the urllib escaping (each command is a single line which is url-escaped -- i.e.: can't have new lines). Now, the contents of each command is...

No (clients are currently required to undo the url escape).

Agreed, if new lines are escaped and the user doesn't have any variables which would break the url unescaping it should also work.

I was able to reproduce this calling that code more than 1 time. Calling it the first time fails with: ``` Could not connect to 127.0.0.1: 5678 Traceback (most recent...

Note that I have to fix this is the debugger itself. As a workaround you could do something as: ``` try: breakpoint() except: import sys def skip_breakpointhook(): print("Breakpoint not activated...

Strange (it does work for me). This is done at: https://github.com/fabioz/LiClipseText/blob/master/plugins/org.brainwy.liclipsetext.editor/src/org/brainwy/liclipsetext/editor/preferences/RootPreferencesPage.java#L128 Do you have some error in your error log? Which Eclipse version are you using?

Yeap, I think that the API it's using is Eclipse 4.6 only.

Ideally, I'd also like to have a way to work offline for pip. i.e.: I have something as: ``` for resource in exe.pip_install([...]): resource.add_location = "in-memory" exe.add_python_resource(resource) exe.add_python_resources(exe.read_package_root( path=r'local/folder', packages=["local.dep.package"],...