| Commit message (Expand) | Author | Age | Files | Lines |
* | move file to correct place | Matti Picus | 2021-02-05 | 1 | -0/+22 |
* | backport changes from py3.7-big-sur-dyld-cache to default | Matti Picus | 2021-02-05 | 1 | -5/+16 |
* | decorate ctypes functions that have pointer arguments for win64 | Matti Picus | 2020-12-29 | 1 | -0/+10 |
* | ctypes: Pass structs by value | Stefano Rivera | 2020-10-09 | 1 | -1/+3 |
* | cpython3 compatibility for raising when calling methods on abstract classes | Matti Picus | 2019-08-25 | 5 | -23/+49 |
* | Ensure correct PEP3118 codes for primitive ctypes types (cf. bpo-10746) | Ronan Lamy | 2020-05-27 | 1 | -3/+15 |
* | move default __buffer__ implementation to _ctypes.basics and add function poi... | Ronan Lamy | 2020-05-26 | 4 | -18/+13 |
* | Fix format of swapped-endian simple types | Ronan Lamy | 2020-05-26 | 2 | -10/+6 |
* | Make memoryviews on structs 0-dimensional (py3 behavior) | Ronan Lamy | 2020-05-26 | 1 | -1/+1 |
* | unions and packed structs just use 'B' as their format | Ronan Lamy | 2020-05-26 | 1 | -0/+2 |
* | Implement _getformat() for arrays | Ronan Lamy | 2020-05-22 | 1 | -0/+9 |
* | Replace get_format_str() with tp._getformat() and fix pointer formats | Ronan Lamy | 2020-05-22 | 5 | -42/+43 |
* | memoryviews on pointers contain the pointer itself, not what it points to. Ad... | Ronan Lamy | 2020-05-22 | 1 | -2/+5 |
* | Give correct format and itemsize to memoryviews on all _CData instances; unsk... | Ronan Lamy | 2020-05-21 | 2 | -11/+11 |
* | __buffer__() should return a memoryview, not a buffer (obviously) | Ronan Lamy | 2020-05-13 | 1 | -1/+1 |
* | Checking for overflow in ctypes array creation (fixing test.test_ctypes) | Bernd Schoeller | 2019-11-02 | 1 | -0/+2 |
* | fix memoryview(ctype_struct) for padding, fixes cpython bpo-32780 | Matti Picus | 2019-04-11 | 1 | -0/+5 |
* | fix test | Matti Picus | 2019-03-11 | 1 | -1/+1 |
* | fix failing tests, document branch and new app-level functionality | Matti Picus | 2019-03-05 | 1 | -2/+2 |
* | handle memoryview of basic ctype arrays Pointers and Structures | Matti Picus | 2019-03-04 | 3 | -9/+20 |
* | test, fix for _swappedbytes_ replacing the class field attributes, not the in... | Matti Picus | 2019-03-03 | 1 | -11/+6 |
* | fix translation, extend class for python2 and use it in _ctypes | Matti Picus | 2019-02-28 | 1 | -4/+11 |
* | test, add a class which fills in tp_as_buffer.bf_getbuffer via __buffer__ | Matti Picus | 2019-02-27 | 1 | -2/+2 |
* | fix 2/3 compatibility | Matti Picus | 2019-02-26 | 1 | -3/+7 |
* | add newmemoryview via IndirectView backported from py3.6, use in _ctypes/array | Matti Picus | 2019-02-24 | 1 | -0/+38 |
* | ctypes test and fix | Armin Rigo | 2018-09-19 | 1 | -0/+6 |
* | Issue #2878 | Armin Rigo | 2018-09-01 | 1 | -3/+5 |
* | Issue #2879 | Armin Rigo | 2018-08-31 | 6 | -10/+17 |
* | Issue #2813 | Armin Rigo | 2018-04-28 | 4 | -5/+25 |
* | Issue #2714 | Armin Rigo | 2017-12-26 | 1 | -1/+2 |
* | ctypes: allow ptr[0] = foo when ptr is a pointer to struct | Ronan Lamy | 2017-10-25 | 3 | -1/+12 |
* | backport changes from py3.5 | Ronan Lamy | 2017-10-19 | 1 | -11/+14 |
* | Code cleanup (to reduce diff with py3.5) | Ronan Lamy | 2017-10-19 | 1 | -53/+53 |
* | Issue #2625 | Armin Rigo | 2017-08-27 | 1 | -0/+4 |
* | hg merge pypy_swappedbytes | Armin Rigo | 2017-08-27 | 2 | -5/+87 |
|\ |
|
| * | Final modifications , 1 test still unskipped in test_byteswap.py | Mihnea Saracin | 2017-08-10 | 2 | -70/+103 |
| * | Added _swappedbytes_ support for ctypes.Structure | Mihnea Saracin | 2017-07-27 | 1 | -4/+69 |
* | | (fijal, arigo) | Armin Rigo | 2017-08-23 | 2 | -2/+2 |
* | | Issue #2632 | Armin Rigo | 2017-08-17 | 2 | -2/+2 |
* | | Issue #2621 | Armin Rigo | 2017-08-06 | 1 | -0/+16 |
|/ |
|
* | indentation fix | Alecsandru Patrascu | 2017-05-30 | 1 | -3/+3 |
* | fix char_p and unichar_p interpretation | Alecsandru Patrascu | 2017-05-29 | 1 | -0/+10 |
* | no string if we're array of char | Alecsandru Patrascu | 2017-05-29 | 1 | -6/+0 |
* | fixed ctypes segfault by removing fastpath. Test in test_segfault.py | Dodan Mihai | 2017-05-18 | 1 | -90/+30 |
* | Issue #1213: in ctypes, complain instead of silently ignoring _swappedbytes_ | Armin Rigo | 2017-05-01 | 1 | -0/+3 |
* | Semi-blind fix for issue #2533. Did not manage to extract a simple | Armin Rigo | 2017-04-13 | 2 | -4/+6 |
* | Fix issue 2475: bool restypes not working | Graham Markall | 2017-02-15 | 1 | -1/+2 |
* | don't crash on c_int.from_buffer() | Armin Rigo | 2017-02-01 | 1 | -1/+5 |
* | added comments and remove typo, update error message | Richard Plangger | 2017-01-03 | 1 | -1/+4 |
* | catch case if from_buffer is str/unicode | Richard Plangger | 2016-12-30 | 1 | -10/+7 |