I hope that someone at GOOG submits Ad Fly to the Search team for delisting. That'd be awesome.
From: [email protected] [mailto:[email protected]] On Behalf Of gharip gadalla Sent: Sunday, October 16, 2011 2:29 AM To: [email protected] Subject: Re: [google-appengine] How to store bytecode in Python 2.7? Earn a monthly income of $ 7000 by Google Groups Increase income through Google Groups Get $ 20 a day Earn more than $4.00 / 1000 visitors to your links. Get tiny URLs, great for when text space is limited. All advertising is strictly family-safe with no popups. Frequent statistics with revenue breakdown. Refer users and get a massive 20% commission. Many tools - Mass Shrinker, Easy Link, API Easy-to-reach $5.00 minimum payout. Add the site to shorten links Shortcut links sent to members and get $ 10 minimum And increase income, even $ 7000 per month To register http://adf.ly/?id=181834 2011/10/16 Sun Jing <[email protected]> Hi all, As the document <http://code.google.com/intl/en/appengine/docs/python/python27/newin27.html# Bytecode_Modification> says, in Python 2.7, no longer restricts access to Python bytecode. But I tried to compile a source code file, it raised an IOError: [Errno 13] Permission denied: import os import os.path import py_compile path = os.path.join(os.getcwd(), 'model.py') py_compile.compile(path) marshal is not working either: import os import os.path import marshal code = compile('1+1', '<string>', 'eval') file = open(os.path.join(os.getcwd(), 'test.pyc'), 'wb') marshal.dump(code, file) file.close() I'm not sure whether jinja2's template caching works fine, it seems it just opens a file and writes into it. ---------- keakon My blog(Chinese): www.keakon.net Blog source code: https://bitbucket.org/keakon/doodle/ -- 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] <mailto:google-appengine%[email protected]> . For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en. -- 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. -- 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.
