New submission from Sebastian Ernst :
A c-function with the following signature ...
```C
int16_t __stdcall __declspec(dllimport) square_int(
int16_t a
);
```
... is being called with ctypes:
```python
def test_error_callargs_unconfigured_too_many_args():
dll
Sebastian Ernst added the comment:
Thanks a lot for the clarification, Eryk. I did not notice that it was
deprecated behavior.
For the "too many arguments" case I guess this is not an issue. However, just
for the symmetry of things, I also looked at calling a function wi
New submission from Sebastian Ernst:
I am investigating a bug in Wine:
https://bugs.winehq.org/show_bug.cgi?id=42474
The Python 3.6(.1) interpreter fails to start on Wine because of an
unimplemented function in Wine:
"api-ms-win-core-path-l1-1-0.dll.PathCchCombineEx".
While t
Sebastian Ernst added the comment:
Relaying this on behalf of Gijs Vermeulen from Wine: "In my patch I tried
returning E_NOTIMPL and I got the error: Fatal Python error: buffer overflow in
getpathp.c's join()"
--
___
Python