Considering removing support for ("iLmsu") regex groups in URLpatterns. Do you use them?

2016-12-16 Thread Tim Graham
Python deprecated usage of flags not at the start of a regular expression [0], e.g. 'CaseInsensitive(?i)' instead of '(?i)CaseInsensitive'. Deprecation warnings shows up in a few URL tests that are using (?i) to get case-insensitive matching of URLpatterns. However, because the URL resolver pre

Re: Need help with MySQL 5.7 crashing on Django's Jenkins

2016-12-16 Thread Tim Graham
The issue still happens. I may have found the cause. The MySQL data dir is stored on a tmpfs to speed things up and the disk usage there grows over time. It's possible that a 3GB tmpfs (it's 2GB on Ubuntu 14.04 machines) is too small and that if enough MySQL builds are running concurrently, it

Re: CSRF_COOKIE_HTTPONLY is misleading and not useful

2016-12-16 Thread Tim Graham
I've created a pull request to remove the check and update the docs: https://github.com/django/django/pull/7700 On Tuesday, November 29, 2016 at 5:15:24 AM UTC-5, Alasdair Nicol wrote: > > On Monday, 28 November 2016 21:38:14 UTC, Tim Graham wrote: >> >> Meanwhile, there's a ticket [0] asking to