0
votes
1answer
43 views
Closed projects hidden in pydev package explorer
I'm using eclipse for java and python. In the pydev package explorer, I have it set to show closed projects, but hide non-pydev projects. The problem I'm having is that after I clo …
4
votes
5answers
2k views
Django + Pydev/Eclipse + Google App Engine - possible?
Has anyone been able to get Google App Engine/Django working in Pydev/Eclipse? I tried this but had difficulty getting Pydev to recognize all of the externally linked folders (djan …
2
votes
1answer
69 views
Eclipse smart quotes - like in Textmate
Hey all,
Happy Friday — Does anyone know if eclipse has the notion of smart quotes like Textmate. The way it works is to select some words and quote them by simply hitting the " …
3
votes
3answers
499 views
How to configure code completion for Django based projects in PyDev?
I am playing with a simple project based on Django framework. My IDE is PyDev/Eclipse.
I cannot make code completion work for Django code, but it works fine for standard Python li …
0
votes
5answers
75 views
How to create program startup parameters in python
I'm just beginning to learn python and the program I'm writing requires parameters for it to run with a specific task. For example (programs name is Samtho)
samtho -i Mozilla_Fire …
0
votes
2answers
50 views
django unit-testing - Why can’t I just run ./tests.py on myApp?
Hi all,
So I'm very familiar with manage.py test myapp. But I can't figure out how to make my tests.py work as an stand-alone executable. You may be wondering why I would want t …
0
votes
2answers
94 views
Something disturbing about PyDev content assist
I created a simple class in Python as follows,
from UserDict import UserDict
class Person(UserDict):
def __init__(self,personName=None):
UserDict.__init__(self)
self["na …
4
votes
2answers
75 views
How can I make the PyDev editor selectively ignore errors?
I'm using PyDev under Eclipse to write some Jython code. I've got numerous instances where I need to do something like this:
import com.work.project.component.client.Interface.IS …
2
votes
1answer
62 views
Is there a way to debug a subprocess using pydev?
Hi all
I'm using Eclipse / PyDev trying to find a way to debug code that uses subprocess.Popen to create a child process: I want to be able to debug the child process that is crea …
0
votes
2answers
95 views
How import Pydev project into interactive console?
Newbie question (I'm just getting started with Python and Pydev):
I've created a project "Playground" with (standard?) src/root sub-folder. In there I've created example.py.
How …
2
votes
2answers
131 views
Function parameters hint Eclipse with PyDev
Seems like newbie's question, but I just can't find the answer. Can I somehow see function parameters hint like in Visual Studio by pressing Ctrl+Shift+Space when cursor is in func …
0
votes
1answer
205 views
.class file from jython with pydev
My first attempt at jython is a java/jython project I'm writing in eclipse with pydev.
I created a java project and then made it a pydev project by the RightClick project >> pydev …
0
votes
1answer
145 views
Debugging with Pydev 1.5
I am trying to debug my application with Pydev 1.5
I have done almost everything that's mentioned in the docs to start the debugger.
I get this error when I try to start the debu …
1
vote
1answer
147 views
Eclipse+PyDev+GAE memcache error
I've started using Eclipe+PyDev as an environment for developing my first app for Google App Engine. Eclipse is configured according to this tutorial.
Everything was working until …
1
vote
0answers
63 views
How do i make Pydev + jython to startup faster when running a script?
Hi,
i'm working with pydev + jython.great ide , but quite slow when i try to run a jython program.
this is probably something due to libraries load time.
What can i do to speed i …
