atg / chocolat-public

Public bug tracker for the private chocolat project
http://chocolatapp.com
180 stars 4 forks source link

How abouts something simple like say, setting your python path ? #1644

Closed minskmaz closed 9 years ago

minskmaz commented 9 years ago

That way code completion will work with the libs you've written or installed. It's what your competitors do.

atg commented 9 years ago

Basically the problem was that the only way to properly index Python code is to evaluate it, and this can be unsafe. Python scripts may and do delete files when they are evaluated! So what I did was index a ton of libraries on my computer and then upload the result as sqlite database. So changing the python path wouldn't help because the all the indexing has already happened

Eventually we will switch to jedi, I think there's an issue for that already.