I'm pretty sure the following error is related to the fact that I'm sharing code via SVN with a colleague that is using a Windows system.
Myself, I use Python on Mac, editing with TextMate.
#!/usr/bin/python
import os
from google.appengine.api import users
from google.appengine.ext import webapp
...
When running that code, I get a syntax error:
events.py:2 invalid syntax
Is there an end-of-line issue when using SVN?
Thankful for every hint.
edit
The problem seems not to be caused by SVN.
Interestingly, executing directly at the Shell, there's no Syntax Error. But both validating with Textmate (using PyCheckMate) and trying to launch with GoogleAppEngineLauncher return the error.