Message218507
| Author |
mattip |
| Recipients |
larry, mark.dickinson, mattip, meador.inge |
| Date |
2014年05月14日.08:30:12 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1400056214.87.0.259070172388.issue20160@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Here is a fix for arguments and return values, based on the support in cffi, for python2.7
I added a test in test_win32, removed the too-early attempt to fix in callproc.c, and merged in most of the changes in lib_msvc from cffi's code base.
These changes handle the following (in addition to callproc change):
- fix rtype handling by converting a return-by-value struct to a pointer-sized int
- fix stack byte-size calculation by checking for large pass-by-value structs, incrementing bytes by sizeof(void*) in this case
- fix avalue copying by checking for large pass-by-value structs and copying the pointer not the value
- fix bogus check for stack buffer < 40 bytes
A similar patch for 3.4 will be posted soon.
Other related issues: http://bugs.python.org/issue11835 |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2014年05月14日 08:30:14 | mattip | set | recipients:
+ mattip, mark.dickinson, larry, meador.inge |
| 2014年05月14日 08:30:14 | mattip | set | messageid: <1400056214.87.0.259070172388.issue20160@psf.upfronthosting.co.za> |
| 2014年05月14日 08:30:14 | mattip | link | issue20160 messages |
| 2014年05月14日 08:30:14 | mattip | create |
|