Tobias Pfeiffer

Results 27 comments of Tobias Pfeiffer

I think you'd need to use `numpy.typing.NDArray[X]` rather than `numpy.ndarray` and then you can return `X`, see https://stackoverflow.com/a/68817265/3663881 (although `array[i]` could be something else than `X` if `array` is a...

I see. I think in that case you are looking for [`typing.overload`](https://docs.python.org/3.8/library/typing.html#typing.overload), there you can have multiple annotations for the same function that specify further what goes in and out....

I am not sure that the coefficient would solve the problem. Say I have one user with a special low-latency constraint; that user's jobs should always be executed as soon...

Just wondering, because it's been a while, does this problem still exist?

I haven't tested OpenERP v7 yet, don't know about the changes they made to the XML-RPC interface. In general, restful-openerp is independent of the particular object model in the database,...

That would be great! Please note that this project is developed in a "feature added when needed" way, so in particular a number of things (such as DELETE or more...

@shomy4 What you see is a validation error because (according to the schema of pio.address), the element `` should not contain any links to other objects. Are you sure that...

I see. So, in the GET response, you see `` without a prefix, but actually it is in the `http://www.w3.org/2005/Atom` namespace (see the `xmlns` declaration in the `` element). It...

I had a looked at the code (specifically https://github.com/tgpfeiffer/restful-openerp/blob/master/restfulOpenErpProxy.py#L578) and I think the `href` must contain the full link, not just the path. Try ``` ```

Can you explain why that should be so?