Possible Duplicate:
In Python, what does preceding a string literal with “r” mean?
I'm working through the Django tutorial on the DjangoProject.com website. I came to the part where I need to configure url routing by modifying the urls.py file.
Here's my question; what does the r
before the '^admin/'
in the first string argument in the line below mean?
urlpatterns = patterns('',
url(r'^admin/', include(admin.site.urls)),
)