Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
spelling
/
plainTextSplitter.py
blob: 4f8d79cde5d1fdf6efba7a25b0c18c74b1cbec6e [
file
] [
log
] [
blame
]
from
django
.
conf
.
urls
.
defaults
import
*
urlpatterns
=
patterns
(
'polls.views'
,
(
r
'^$'
,
'index'
),
(
r
'^(?P<poll_id>\d+)/$'
,
'detail'
),
(
r
'^(?P<poll_id>\d+)/results/$'
,
'results'
),
(
r
'^(?P<poll_id>\d+)/vote/$'
,
'vote'
),
)