Vlastimil Zíma

Results 67 comments of Vlastimil Zíma

OK, I'm currently swamped by fixing the production, but I will definitely have to get back to this. Thanks for now.

I got back to the issue, but I wasn't able to reproduce the erroneous behavior. I suspect I probably forgot to add `create_constraint=True` to some of the migrations on the...

Yes, but it seems to me, it would be useful for Django projects in general.

@antonpirker Glad to hear that. :+1:

I have following XRDS: ``` http://openid.net/server/1.1 http://specs.openid.net/extensions/pape/1.0 https://test.provider/endpoint/ http://specs.openid.net/auth/2.0/server http://specs.openid.net/extensions/pape/1.0 https://test.provider/endpoint/ ``` In specification of YADIS and XRD I found no notes about this. It says that element with highest...

+1 for @pelme 's request. It is quite common for Python libraries to provide custom exceptions and helps error handling of errors from those applications.

Looks like there is new library for that: https://github.com/olucurious/PyFCM

This should affect any database with deferred constraints. Brief test case: ``` python class Parent(models.Model): pass class Child(models.Model): parent = models.OneToOneField(Parent, primary_key=True) class TestCostraints(DatabaseTestCase): def test01(self): p = Parent(pk=1) c...

According to tox documentation: ``Parts of an environment name delimited by hyphens are called factors ...``, we meant factors (I hope so). But the way we want to use them...

@OdinTech3 Nice, I looking forward for the change. I have the `entry_points` set up, but they're hard to use in development or ad hoc scripts :shrug: