# in views.py
def start(request):
initial_dictionary = {"abc":"abc"}
request.session['123'] = "xyz"
return initial_dictionary
def post(request):
dictionary = start(request)
return render_to_response("blah")
这是OOP。这会改变“请求”,会话会被设置吗? (请求作为指针传递)