mirror of
https://github.com/django/django.git
synced 2025-11-25 21:22:14 +00:00
Refs #33476 -- Reformatted code with Black.
This commit is contained in:
parent
f68fa8b45d
commit
9c19aff7c7
1992 changed files with 139577 additions and 96284 deletions
|
|
@ -3,12 +3,12 @@ from django.urls import path, re_path
|
|||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path('noslash', views.empty_view),
|
||||
path('slash/', views.empty_view),
|
||||
path('needsquoting#/', views.empty_view),
|
||||
path("noslash", views.empty_view),
|
||||
path("slash/", views.empty_view),
|
||||
path("needsquoting#/", views.empty_view),
|
||||
# Accepts paths with two leading slashes.
|
||||
re_path(r'^(.+)/security/$', views.empty_view),
|
||||
re_path(r"^(.+)/security/$", views.empty_view),
|
||||
# Should not append slash.
|
||||
path('sensitive_fbv/', views.sensitive_fbv),
|
||||
path('sensitive_cbv/', views.SensitiveCBV.as_view()),
|
||||
path("sensitive_fbv/", views.sensitive_fbv),
|
||||
path("sensitive_cbv/", views.SensitiveCBV.as_view()),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue