Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950) | Serhiy Storchaka | 2019-10-30 | 1 | -1/+1 |
| | | | | Replace all *NULL* with ``NULL``. | ||||
* | Doc: Replace the deprecated highlightlang directive by highlight. (#13377) | Stéphane Wirtel | 2019-05-17 | 1 | -1/+1 |
| | | | | highlightlang is deprecated since April 2018 in Sphinx. See https://github.com/sphinx-doc/sphinx/pull/4845 | ||||
* | Issue #23756: Clarify the terms "contiguous" and "bytes-like object". | Stefan Krah | 2015-08-08 | 1 | -1/+1 |
| | | | | Patch by Martin Panter. | ||||
* | Add PyMemoryView_FromMemory() to whatsnew/3.3. | Stefan Krah | 2012-02-29 | 1 | -0/+2 |
| | |||||
* | - Issue #10181: New memoryview implementation fixes multiple ownership | Stefan Krah | 2012-02-25 | 1 | -10/+19 |
| | | | | | | | | | | | | | | | | | | and lifetime issues of dynamically allocated Py_buffer members (#9990) as well as crashes (#8305, #7433). Many new features have been added (See whatsnew/3.3), and the documentation has been updated extensively. The ndarray test object from _testbuffer.c implements all aspects of PEP-3118, so further development towards the complete implementation of the PEP can proceed in a test-driven manner. Thanks to Nick Coghlan, Antoine Pitrou and Pauli Virtanen for review and many ideas. - Issue #12834: Fix incorrect results of memoryview.tobytes() for non-contiguous arrays. - Issue #5231: Introduce memoryview.cast() method that allows changing format and shape without making a copy of the underlying memory. | ||||
* | fix some typos in Doc/c-api/memoryview.rst | Eli Bendersky | 2011-11-25 | 1 | -2/+2 |
| | |||||
* | Migrate to Sphinx 1.0 C language constructs. | Georg Brandl | 2010-10-06 | 1 | -6/+6 |
| | |||||
* | Give a dedicated page to memoryview objects, so that they can be part | Antoine Pitrou | 2010-09-28 | 1 | -0/+52 |
of the concrete objects layer, while the buffer protocol is part of the abstract objects layer. |