|
Disclaimer: I'm a total noob to Python, Django and Eclipse. I'm trying to run OSQA on my localhost, in the hopes of maybe eventually contributing some code. Right now, following this question on Stack Overflow and my love of strong IDEs, I'm trying to get it to work inside Eclipse + PyDev. I checked out HEAD (r769), created a new PyDev project from the source. Eclipse is telling me there's a slew of errors. The first one is "duplicate signature of get_absolute_url()". The user.py, and specifically the User class, does seem to contain to identical methods by the name of get_absolute_url, with the same exact signature and body. Is this a real problem? Why is this so? Shouldn't one of the copies be removed? |
|
Its not a real problem since it will not affect anything, but it was a distraction (probably mine). Will be removed. As for other errors, most of them you can ignore, due to the dynamic nature of python some variables seem to "auto magically" appear out of nowhere, so the IDE complains. Same happens with Intellij, the IDE I use, although it never complained about the duplicate method. Thanks for noticing. Ah, I love IntelliJ. What are you using for python/django integration? Will it work with the community edition of IntelliJ?
(23 Feb '11, 07:04)
ripper234 ♦
|