[google-appengine] Re: Unit testing with webtest problem

2012-09-11 Thread Guido van Rossum
You'll probably get more help from StackOverflow.com. You'll need to provide more info, nobody can help you debug this with just that traceback information unless they're psychic. On Sunday, September 9, 2012 10:06:33 AM UTC-7, Richard Arrano wrote: > > Hello, > I've been using webtest to unit t

[google-appengine] Re: Unit testing with webtest problem

2012-09-11 Thread Richard Arrano
What I'm asking more specifically is what does App Engine do, if anything, to os.putenv? Because using the App Engine console, I can do things like: os.environ["x"] = ndb.Model() and access it with os.environ["x"] without a problem. However, when I pull up the interpreter outside of Python an

Re: [google-appengine] Re: Unit testing with webtest problem

2012-09-11 Thread Brian Quinlan
On Tue, Sep 11, 2012 at 4:00 PM, Richard Arrano wrote: > What I'm asking more specifically is what does App Engine do, if anything, > to os.putenv? Because using the App Engine console, I can do things like: > > os.environ["x"] = ndb.Model() > > and access it with os.environ["x"] without a problem