Porting to Python 3

Django 1.5 is the first version of Django to support Python 3. The same code runs both on Python 2 (≥ 2.6.5) and Python 3 (≥ 3.2), thanks to the

2016-10-09 18:39:13
sessions.backends.base.SessionBase.clear_expired()

clear_expired() Removes expired sessions from the session store. This class method is called by clearsessions.

2016-10-09 18:39:28
dispatch.Signal.send_robust()

Signal.send_robust(sender, **kwargs) [source] To send a signal, call either Signal

2016-10-09 18:36:30
Using Django

Introductions to all the key parts of Django you’ll need to know: How to install Django Models

2016-10-09 18:40:18
auth.models.PermissionsMixin.get_group_permissions()

get_group_permissions(obj=None) Returns a set of permission strings that the user has, through their groups.

2016-10-09 18:34:21
auth.forms.PasswordChangeForm

class PasswordChangeForm A form for allowing a user to change their password.

2016-10-09 18:34:09
db.transaction.commit()

commit(using=None) [source]

2016-10-09 18:36:27
test.runner.DiscoverRunner

class DiscoverRunner(pattern='test*.py', top_level=None, verbosity=1, interactive=True, failfast=False, keepdb=False, reverse=False, debug_sql=False, **kwargs)

2016-10-09 18:40:01
sessions.base_session.AbstractBaseSession.expire_date

expire_date A datetime designating when the session expires. Expired sessions are not available

2016-10-09 18:39:32
test.TransactionTestCase.assertQuerysetEqual()

TransactionTestCase.assertQuerysetEqual(qs, values, transform=repr, ordered=True, msg=None) [source]

2016-10-09 18:40:09