summaryrefslogtreecommitdiffstats
path: root/Objects/memoryobject.c
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-120155: Fix copy/paste error in HAVE_SUBOFFSETS_IN_LAST_DIM() (GH-1...Miss Islington (bot)2024-06-071-1/+1
* gh-117764: Fix and add signatures for many builtins (GH-117769)Serhiy Storchaka2024-04-121-1/+4
* gh-111178: Avoid calling functions from incompatible pointer types in memoryo...Christopher Chavez2023-12-111-61/+90
* gh-106320: Remove private _PyManagedBuffer_Type (#108431)Victor Stinner2023-08-241-0/+1
* gh-104223: Fix issues with inheriting from buffer classes (#104227)Jelle Zijlstra2023-05-081-1/+44
* gh-102500: Implement PEP 688 (#102521)Jelle Zijlstra2023-05-041-6/+34
* gh-83791: Raise TypeError for len(memoryview_0d) (#18463)Eric Wieser2023-04-221-1/+5
* gh-99300: Use Py_NewRef() in Objects/ directory (#99354)Victor Stinner2022-11-101-19/+10
* gh-90751: memoryview now supports half-float (#96738)Dong-hee Na2022-09-101-3/+33
* gh-92888: Fix memoryview bad `__index__` use after free (GH-92946)Ken Jin2022-06-171-19/+36
* gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)Serhiy Storchaka2022-06-141-8/+2
* GH-92804: Fix memory leak in memoryview iterator (gh-92805)Kumar Aditya2022-05-141-3/+3
* bpo-46670: Remove unused macros in the Objects directory (GH-31193)Victor Stinner2022-02-071-8/+0
* bpo-46140: take more Py_buffer arguments as const * (GH-30217)David Hewitt2021-12-221-9/+9
* bpo-45434: Remove pystrhex.h header file (GH-28923)Victor Stinner2021-10-131-4/+4
* bpo-43977: Use tp_flags for collection matching (GH-25723)Mark Shannon2021-04-301-1/+2
* bpo-41732: add iterator to memoryview (GH-22119)dxflores2020-09-081-1/+107
* bpo-41262: Convert memoryview to Argument Clinic. (GH-21421)Serhiy Storchaka2020-07-181-73/+74
* bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...Serhiy Storchaka2020-05-281-6/+6
* bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)Victor Stinner2020-04-151-1/+0
* bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)Victor Stinner2020-04-141-1/+0
* bpo-40170: Add _PyIndex_Check() internal function (GH-19426)Victor Stinner2020-04-081-3/+5
* Give proper credits for the memoryview implementation. (#18626)Stefan Krah2020-02-241-1/+11
* closes bpo-39605: Fix some casts to not cast away const. (GH-18453)Andy Lester2020-02-121-4/+4
* bpo-39245: Switch to public API for Vectorcall (GH-18460)Petr Viktorin2020-02-111-2/+2
* bpo-38631: Avoid Py_FatalError() in _memory_release() (GH-18214)Victor Stinner2020-01-271-1/+2
* bpo-37483: add _PyObject_CallOneArg() function (#14558)Jeroen Demeyer2019-07-041-2/+2
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-311-4/+4
* bpo-22385: Support output separators in hex methods. (#13578)Gregory P. Smith2019-05-291-8/+37
* bpo-33012: Fix compilation warnings in memoryobject.c and _collectionsmodule....Stéphane Wirtel2019-03-051-1/+1
* bpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). (#11730)Stefan Krah2019-02-021-9/+35
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Serhiy Storchaka2018-11-271-9/+9
* bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)Serhiy Storchaka2018-11-271-1/+1
* bpo-35081: Add Include/internal/pycore_object.h (GH-10640)Victor Stinner2018-11-211-0/+1
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-121-2/+2
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-10-311-2/+2
* bpo-33176: Add a toreadonly() method to memoryviews. (GH-6466)Antoine Pitrou2018-04-141-0/+19
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-081-0/+2
* Expand the PySlice_GetIndicesEx macro. (#1023)Serhiy Storchaka2017-04-081-2/+2
* bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. ...Serhiy Storchaka2017-03-211-1/+1
* Merge 3.5.Stefan Krah2016-12-301-1/+1
|\
| * Issue #29111: Fix memoryview signature.Stefan Krah2016-12-301-1/+1
* | use static inline instead of Py_LOCAL_INLINEBenjamin Peterson2016-09-081-16/+16
* | require C99 boolBenjamin Peterson2016-09-071-20/+0
* | replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-17/+17
* | require a long long data type (closes #27961)Benjamin Peterson2016-09-061-12/+0
* | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-2/+2
|/
* Fix Visual Studio warning.Stefan Krah2015-11-101-1/+1
* Iaaue #25598: Fix memory_hex from #9951 for non-contiguous buffers.Stefan Krah2015-11-101-1/+16
* Issue #15944: memoryview: Allow arbitrary formats when casting to bytes.Stefan Krah2015-08-081-8/+2