【发布时间】:2011-08-10 17:14:21
【问题描述】:
我想知道这个 sn-p 到底是做什么的?
(在这里找到:http://code.google.com/p/google-app-engine-samples/source/browse/trunk/django_example/django_bootstrap.py)
# Make sure we can import Django. We may end up needing to do this
# little dance, courtesy of Google third-party versioning hacks. Note
# that this patches up sys.modules, so all other code can just use
# "from django import forms" etc.
try:
from django import v0_96 as django
except ImportError:
pass
【问题讨论】: