一般的に使用する方が良いですか?
https://docs.djangoproject.com/en/dev/topics/http/shortcuts/#redirect
https://docs.djangoproject.com/en/dev/ref/request-response/#django.http.HttpResponseRedirect
書くことに何か利点はありますか:
return redirect(my_url)
以上:
return HttpResponseRedirect(my_url)
それとも直接のエイリアスですか?違いはありますか?どちらがよりpythonic/django-nicですか?