gis.gdal.OGRGeometry.disjoint()

disjoint(other) Returns True if this geometry is spatially disjoint to (i.e. does not intersect) the other, otherwise returns False.

views.generic.edit.FormMixin.get_success_url()

get_success_url() Determine the URL to redirect to when the form is successfully validated. Returns success_url by default.

utils.decorators.decorator_from_middleware()

decorator_from_middleware(middleware_class) [source] Given a middleware class, returns a view decorator. This lets you use middleware functionality on a per-view basis. The middleware is created with no params passed. It assumes middleware that’s compatible with the old style of Django 1.9 and earlier (having methods like process_request(), process_exception(), and process_response()).

gis.gdal.OGRGeometry.transform()

transform(coord_trans, clone=False) Transforms this geometry to a different spatial reference system. May take a CoordTransform object, a SpatialReference object, or any other input accepted by SpatialReference (including spatial reference WKT and PROJ.4 strings, or an integer SRID). By default nothing is returned and the geometry is transformed in-place. However, if the clone keyword is set to True then a transformed clone of this geometry is returned instead.

test.runner.DiscoverRunner.setup_test_environment()

DiscoverRunner.setup_test_environment(**kwargs) Sets up the test environment by calling setup_test_environment() and setting DEBUG to False.

gis.gdal.OGRGeometry.convex_hull

convex_hull The smallest convex polygon that contains this geometry, as a new OGRGeometry object.

db.migrations.operations.AlterModelManagers

class AlterModelManagers(name, managers) [source] Alters the managers that are available during migrations.

db.models.Model._base_manager

Model._base_manager

auth.validators.ASCIIUsernameValidator

class validators.ASCIIUsernameValidator New in Django 1.10. A field validator allowing only ASCII letters, in addition to @, ., +, -, and _. The default validator for User.username on Python 2.

sessions.backends.cached_db.SessionStore.cache_key_prefix

cache_key_prefix New in Django 1.9. A prefix added to a session key to build a cache key string.