MCPcopy
hub / github.com/django/django / resolve

Function resolve

django/urls/base.py:22–25  ·  view source on GitHub ↗
(path, urlconf=None)

Source from the content-addressed store, hash-verified

20
21
22def resolve(path, urlconf=None):
23 if urlconf is None:
24 urlconf = get_urlconf()
25 return get_resolver(urlconf).resolve(path)
26
27
28def reverse(

Calls 3

get_urlconfFunction · 0.85
get_resolverFunction · 0.85
resolveMethod · 0.45