django.contrib.databrowse.datastructures: These classes are light wrappers around Django's database API that
provide convenience functionality and permalink functions for the
databrowse app.
django.contrib.formtools.wizard: FormWizard class -- implements a multi-page form, validating
between each step and storing the form's state as HTML hidden
fields so that no state is stored on the server side.
django.contrib.localflavor.ca.ca_provinces: An alphabetical list of provinces and territories for use as
`choices` in a formfield., and a mapping of province
misspellings/abbreviations to normalized abbreviations
django.contrib.localflavor.in_.in_states: A mapping of state misspellings/abbreviations to normalized
abbreviations, and an alphabetical list of states for use as
`choices` in a formfield.
django.contrib.localflavor.us.us_states: A mapping of state misspellings/abbreviations to normalized
abbreviations, and an alphabetical list of states for use as
`choices` in a formfield.
django.contrib.sessions.tests: >>> from django.conf import settings
>>> from django.contrib.sessions.backends.db import SessionStore as DatabaseSession
>>> from django.contrib.sessions.backends.cache import SessionStore as CacheSession
>>> from django.contrib.sessions.backends.file import SessionStore as FileSession
>>> from django.contrib.sessions.backends.base import SessionBase