Dimiter Naydenov

Results 5 comments of Dimiter Naydenov

Yes, this is also true for form inputs, which make it virtually unusable to scrape messy html form inputs, like: ``` ```

@BeOleg I had good experience with `psqlextra`'s `ConditionalUniqueIndex` in such cases, you might want to look into https://django-postgres-extra.readthedocs.io/indexes/

@akshowhini Camelot already is open source and MIT licensed. It looks like your CamelotPro uses some of the sources from Camelot (I guess to make it compatible), and is GPL...

A minor typo I found here: https://www.python.org/dev/peps/pep-0554/#passing-objects-via-marshal Not sure a comment is the proper way to report this - it's minor anyway. ```python interp = interpreters.create() r, s = interpreters.create_fifo()...

auto_now/auto_now_add are documented as "updated only on Model.save()" IIRC, e.g. Model.objects.filter(...).update(...) won't trigger Model.save(), so those fields will remain unchanged, unlike (AIUI) AutoCreatedField/AutoLastModifiedField.