I have a small Django application where I use the reportlab PDF python module.
When I start dev_appserver when there are no .pyc files in the application directories the reportlab module gets loaded fine and PDF's are served on request. When I shut the server down and restart, there are a few .pyc files in the reportlab module, it complains that it ignores Blocking access to skipped file "appname/src/reportlab/lib/utils.pyc" ============= ==== from an earlier mail that did not got to the python-group I want to use the reportlab-pdf python library in a Django 0.9.6 on GAE with http://google-app-engine-django.googlecode.com/ To get the error I do the following steps: I copy the reportlab package in the GAE application. I delete all the pyc files I start the server: python manage.py runserver I use the browser to load http://localhost:8080/testpdf/ I get a Save As dialog for a pdf file that is correct. Shutdown the dev-server Start the server again (now there are some pyc files in the reportlab package) I use the browser to load http://localhost:8080/testpdf/ I get a 500-error page and the following warning in the devserver console Blocking access to skipped file "appname/src/reportlab/lib/utils.pyc" I have added a few more logging statements and a few files before it tries to load utils.pyc it also tries utils.py. 2009/9/28 Nick Johnson (Google) <[email protected]>: > On Mon, Sep 28, 2009 at 11:11 AM, djidjadji <[email protected]> wrote: >> Is it possible to let dev_appserver delete all the .pyc files at >> startup that are in the application directory tree? > > It would be possible - but to what end? The dev_appserver already ignores > them, and appcfg doesn't upload them. > -Nick Johnson > >> >> 2009/9/28 Nick Johnson (Google) <[email protected]>: >> > Hi Allen, >> > No, you must use .py files to serve your app. The dev_appserver is >> > designed >> > to replicate the production environment, and the production environment >> > ignores .pyc files. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
