Adrian Dankiv

Results 18 issues of Adrian Dankiv

Hi! I would like to have `raise_exception` parameter in `Schema.validate()` like it is in Django REST Framework: https://www.django-rest-framework.org/api-guide/exceptions/#validationerror Because now I have to call `load` to have the error. Thanks!

### Versions * Python: 3.7.1 * OS: Ubuntu 18.04.2 * Kivy: 1.11 * Cython: 0.29.9 * Android: 9 Pie (EMUI 9.1, Huawei P30 Pro) * Buildozer: 0.40.dev0 ### Description 1....

Issue: Wrong order of new inline elements. Steps to reproduce: 1. Create a model with polymorphic inline in admin 2. Add item with type B 3. Add item with type...

Hi! First of all, I have to say that I am really happy I found this plugin! I used a polymorphic model that related to another polymorphic model. I total...

Hi! I'm happy to use the library but looks like I found a bug: ``` >>>@funcy.autocurry ...def a(b, c): return b + c >>>a(c=1)(2) 3 >>>@funcy.autocurry ...def aa(b, *, c):...

I propose to add a decorator which will unpack argument: ``` def process(foo, bar): ... map(unpack(process), product(['foo1', 'foo2'], ['bar1', 'bar2'])) ``` Is it a funcy way?

looking for more interest

I propose to add decorator which will unpack argument: ``` def process(foo, bar): ... map(unpack(process), product(['foo1', 'foo2'], ['bar1', 'bar2'])) ``` This decorator already is in [ddt](http://ddt.readthedocs.io/en/latest/example.html) library, but it will...

looking for more interest

`urlparse` took most of the time in my tests. So, those simple changes speed up tests several times in my case.

Add a new parameter to ensure that the people cannot be both "reviewer" and "assignee" at the same time. ```yaml # Set to true to enforce that reviewers and assignees...

Add supporting for [FireO](https://github.com/octabytes/FireO) (ORM for Firestore) Example: ```python3 from fireo import Model from factory_boy.fireo import FireoAutoFactory, nullable class Comment(Model): text = fields.TextField() class User(Model): name = fields.TextField() email =...