Tyson Clugg
Tyson Clugg
**Is your feature request related to a problem? Please describe.** It's easy to increase coverage using some testing strategies (eg: [SnapshotTest](https://github.com/syrusakbary/snapshottest)), but coverage stats are skewed for other strategies (eg:...
Issue Type: Bug 1. Create a file named `example_parenth_forms.py` with the following content: ```python parenth_form_without_comma = ( "This is an expression list parenth_form without comma " "yielding a single expression...
@paltman @blueyed I'm working on a PR for #523 which necessitates updating the docs. I haven't figuring out how to preview my doc changes, particularly given I need to link...
The default serializer fails to return a value for the `foo` field of the `Bar` model in following: ``` python from django.db import models class Foo(models.Model): name = models.CharField(max_length=10) class...
(From https://gitter.im/commoncode/django-ddp?at=56551f41bcd12a10513a0be3) Given the Assessment model: ``` class Assessment(models.Model): invited = models.ManyToManyField('auth.user') ``` Then the following collection will only send Assessments to each user in `invited`: ``` class Assessment(Collection): """Assessment...
There's been a surge of interest recently with lots of discussions both online and offline - but none in any central location. Create an online presence for Django DDP developers...
Support for using PyPy would be nice.
The Meteor docs section on [`Passwords`](http://docs.meteor.com/#/full/accounts_passwords) includes some methods that Django DDP doesn't support. Figure out which methods should be supported and implement them.
[`Accounts.logoutOtherClients`](http://docs.meteor.com/#/full/meteor_logoutotherclients) is not implemented. Suggest that we simple delete other dddp.models.Connection instances for the same user, dispatch async notifications for the PostgresWorker threads to kill the relevant WebSocket client threads.
When using `DJANGO_FSM_LOG_STORAGE_METHOD = 'django_fsm_log.backends.CachedBackend'`, a cache is used to stash unsaved log instances created during the [pre transition callback](https://github.com/gizmag/django-fsm-log/blob/v1.5.0/django_fsm_log/backends.py#L38). These unsaved StateLog instances are then retrieved and saved as...