[google-appengine] Re: Does AppEngine prevent you from importing a module added to sys.path?

2009-04-18 Thread 风笑雪
I think there is no such limit in GAE. http://code.google.com/intl/zh-CN/appengine/articles/django10_zipimport.html import sys sys.path.insert(0, 'django.zip') import django.forms.fields 2009/4/19 Lee Olayvar > I am trying to import a module, found in a subdirectory of my app. This app > dir

[google-appengine] Re: Does AppEngine prevent you from importing a module added to sys.path?

2009-04-18 Thread Lee Olayvar
Yup, disregard this whole post. :) (Why is it that i spent hours on this, then i find the answer after posting? :o) On Sat, Apr 18, 2009 at 7:29 PM, Lee Olayvar wrote: > Hmm, i'm starting to suspect it may be with how AE is caching main().. > > On Sat, Apr 18, 2009 at 7:15 PM, Lee Olayvar wrot

[google-appengine] Re: Does AppEngine prevent you from importing a module added to sys.path?

2009-04-18 Thread Lee Olayvar
Hmm, i'm starting to suspect it may be with how AE is caching main().. On Sat, Apr 18, 2009 at 7:15 PM, Lee Olayvar wrote: > I am trying to import a module, found in a subdirectory of my app. This app > directory is added to the sys.path list, but it fails if i try to import > it.. does AppEngin