auth.models.User.get_all_permissions()

get_all_permissions(obj=None) Returns a set of permission strings that the user has, both through group and user permissions. If obj is passed in, only returns the permissions for this specific object.

views.generic.dates.YearMixin.year_format

year_format The strftime() format to use when parsing the year. By default, this is '%Y'.

db.models.fields.related.RelatedManager.clear()

clear() Removes all objects from the related object set: >>> b = Blog.objects.get(id=1) >>> b.entry_set.clear() Note this doesn’t delete the related objects – it just disassociates them. Just like remove(), clear() is only available on ForeignKeys where null=True and it also accepts the bulk keyword argument.

postgres.fields.ArrayField

class ArrayField(base_field, size=None, **options) [source] A field for storing lists of data. Most field types can be used, you simply pass another field instance as the base_field. You may also specify a size. ArrayField can be nested to store multi-dimensional arrays. If you give the field a default, ensure it’s a callable such as list (for an empty default) or a callable that returns a list (such as a function). Incorrectly using default=[] creates a mutable default that is shared betwee

db.models.CommaSeparatedIntegerField

class CommaSeparatedIntegerField(max_length=None, **options) [source] Deprecated since version 1.9: This field is deprecated in favor of CharField with validators=[validate_comma_separated_integer_list]. A field of integers separated by commas. As in CharField, the max_length argument is required and the note about database portability mentioned there should be heeded.

views.generic.list.MultipleObjectMixin.paginator_class

paginator_class The paginator class to be used for pagination. By default, django.core.paginator.Paginator is used. If the custom paginator class doesn’t have the same constructor interface as django.core.paginator.Paginator, you will also need to provide an implementation for get_paginator().

views.generic.dates.WeekMixin.get_week_format()

get_week_format() [source] Returns the strftime() format to use when parsing the week. Returns week_format by default.

db.transaction.get_autocommit()

get_autocommit(using=None) [source]

utils.translation.ugettext_noop()

ugettext_noop(message) Marks strings for translation but doesn’t translate them now. This can be used to store strings in global variables that should stay in the base language (because they might be used externally) and will be translated later.

gis.geos.GEOSGeometry.relate()

GEOSGeometry.relate(other) Returns the DE-9IM intersection matrix (a string) representing the topological relationship between this geometry and the other.