Results 10 comments of Gary Wilson Jr.

Sounds like it would be a nice addition, and exactly the kind of annoyance that this library tries to make more simple.

@rosshamish If you have interest in the feature, then by all means have a go at it and submit a pull request.

Python 3 compatibility won't be possible until the underlying python-ldap library becomes Python 3 compatible. That said, there does appear to be another, pure-Python ldap library that **is** Python 3...

A similar case I ran across today was that grabbing only date-related items from a string, e.g.: ```python from datetime import datetime datetime.strptime("2022-01-01", "%Y-%m-%d").date() ``` ...also results in a `DTZ007`...

I think we'd want to keep all Python versions supported by all versions of Django that are still under support. With Django versions 1.4+, that would be what, Python 2.5,...

Created a branch at https://github.com/gdub/johnny-cache/tree/django-1.6 that has start of some tests for the new Atomic class. With a patched django 1.6 (https://github.com/gdub/django/tree/1.6.x-atomic-patch): - Python 3.4: All tests pass except for...

The Django ticket, and linked pull request, is here: https://code.djangoproject.com/ticket/22802 @aaugustin, Not sure on the comment about johnny using savepoints and relies on the fact of Django not using them....

Note that the commit 58c3832d4b99cc33218c2d7af04a54272602b511 has the same bug as before, effectively doing this: ``` python >>> timeout = 0 >>> timeout = timeout is not None and timeout or...

Note: this is a change I've included in #10

Stumbled across this issue while dealing with v1 -> v2 upgrades. Would love to see option to allow direct serialization/deserialization between Python Decimal type and JSON number type. I have...