# 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") This is OOP. Will this make changes to "request", and will the session be set? (request is passed as a pointer)