The smart indent happens when you've provided the closing parenthesis, i.e.
urlpatterns = patterns('some_model.views',
)
# if you press 'enter' after the comma, the newline will be indented.
That being said, if you're using autocomplete normally you should get patterns() with the both parenthesis automatically. The caret will be inside the parenthesis thus giving you the "smart indent" by default when you press enter.
Note that this is also the case when you work with dictionaries or lists in python. The auto-indent will not activate unless you also have the closing } or ] for your dictionary/list respectively.