Victor Varvaryuk
Victor Varvaryuk
Description of what each argument does, without having to go online looking for the docs.
Do I understand correctly that `license_finder` install all dependencies from `requirements.txt` to check the licenses of those? If so, it's a lot of dependencies sometimes to install, and they might...
Also, `modify` does not fill default values -- I have to this by myself... Looks there is no alternative.
@BeardedSteve thanks for the info. Should I close this issue then?
Actually, i think these ``` elif a.max_occurs > 1 or issubclass(v, Array): try: setattr(self, k, None) except TypeError: # SQLAlchemy does this setattr(self, k, []) ``` should also be removed...
Hi, i see this code: ``` def __init__(self, *args, **kwargs): cls = self.__class__ fti = cls.get_flat_type_info(cls) xtba_key, xtba_type = cls.Attributes._xml_tag_body_as if xtba_key is not None and len(args) == 1: self._safe_set(xtba_key,...
Yes, that was my point: > I removed in our project lines (actually i replaced `TableModel.__init__`):
I've been thinking that it's not very good that in `ComplexModel` (not `TableModel`) all fields are set to `None` if there are no default values for them, too. Because you...
I am not wondering, i know it's a complicated issue. I would like to share what i did in our project. In `ComplexModel`s i introduced support for a new attribute...
I looked in the tests, but where can i find tests that test Spyne+SQLAlchemy+Postgres?