Just a collection of some random cool stuff.
PS. Almost 99% of the contents here are not mine and I don't take credit for them, I reference and copy part of the interesting sections.
Sunday, April 29, 2012
Python 2.5
try:
...
catch Exception, e: # 2.6+ uses catch Exception as e
...
try:
import json # only in Python 2.6+
except ImportError:
import simplejson as json # but appengine only has Python 2.5
No comments:
Post a Comment