COMMITS
/ Objects/memoryobject.c April 30, 2021
M
bpo-43977: Use tp_flags for collection matching (GH-25723)
Mark Shannon committed
September 8, 2020
D
bpo-41732: add iterator to memoryview (GH-22119)
dxflores committed
July 18, 2020
S
bpo-41262: Convert memoryview to Argument Clinic. (GH-21421)
Serhiy Storchaka committed
May 28, 2020
S
bpo-40792: Make the result of PyNumber_Index() always having exact type int. (GH-20443)
Serhiy Storchaka committed
April 15, 2020
V
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
Victor Stinner committed
April 14, 2020
V
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner committed
April 8, 2020
V
bpo-40170: Add _PyIndex_Check() internal function (GH-19426)
Victor Stinner committed
February 24, 2020
S
Give proper credits for the memoryview implementation. (#18626)
Stefan Krah committed
February 12, 2020
A
closes bpo-39605: Fix some casts to not cast away const. (GH-18453)
Andy Lester committed
February 11, 2020
P
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin committed
January 27, 2020
V
bpo-38631: Avoid Py_FatalError() in _memory_release() (GH-18214)
Victor Stinner committed
July 4, 2019
J
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
May 29, 2019
G
bpo-22385: Support output separators in hex methods. (#13578)
Gregory P. Smith committed
March 5, 2019
S
bpo-33012: Fix compilation warnings in memoryobject.c and _collectionsmodule.c (GH-12179)
Stéphane Wirtel committed
February 2, 2019
S
bpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). (#11730)
Stefan Krah committed
November 27, 2018
S
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka committed
S
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
Serhiy Storchaka committed
November 21, 2018
V
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner committed
November 12, 2018
V
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner committed
October 31, 2018
V
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner committed
April 14, 2018
A
bpo-33176: Add a toreadonly() method to memoryviews. (GH-6466)
Antoine Pitrou committed
September 8, 2017
E
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow committed
April 8, 2017
S
Expand the PySlice_GetIndicesEx macro. (#1023)
Serhiy Storchaka committed
March 21, 2017
S
bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. (#748)
Serhiy Storchaka committed
December 30, 2016
S
Merge 3.5.
Stefan Krah committed
S
Issue #29111: Fix memoryview signature.
Stefan Krah committed
September 8, 2016
B
use static inline instead of Py_LOCAL_INLINE
Benjamin Peterson committed
September 7, 2016
B
require C99 bool
Benjamin Peterson committed
September 6, 2016
B
replace PY_LONG_LONG with long long
Benjamin Peterson committed
B
require a long long data type (closes #27961)
Benjamin Peterson committed
December 25, 2015
S
Issue #25923: Added more const qualifiers to signatures of static and private functions.
Serhiy Storchaka committed
November 10, 2015
S
Fix Visual Studio warning.
Stefan Krah committed
S
Iaaue #25598: Fix memory_hex from #9951 for non-contiguous buffers.
Stefan Krah committed
August 8, 2015
S
Issue #15944: memoryview: Allow arbitrary formats when casting to bytes.
Stefan Krah committed
April 25, 2015
G
Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview.
Gregory P. Smith committed
March 19, 2015
A
Issue #23632: Memoryviews now allow tuple indexing (including for multi-dimensional memoryviews).
Antoine Pitrou committed
March 18, 2015
S
Removed unintentional trailing spaces in non-external and non-generated C files.
Serhiy Storchaka committed
January 29, 2015
S
Closes #22668: Merge from 3.4.
Stefan Krah committed
S
Issue #22668: Ensure that format strings survive slicing after casting.
Stefan Krah committed
October 5, 2014
R
#16518: Bring error messages in harmony with docs ("bytes-like object")
R David Murray committed
May 17, 2014
S
Issue #20186: memoryobject.c: add function signatures.
Stefan Krah committed
May 14, 2014
V
Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY()
Victor Stinner committed
November 20, 2013
C
ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'.
Christian Heimes committed
October 3, 2013
A
Issue #19014: memoryview.cast() is now allowed on zero-length views.
Antoine Pitrou committed
A
Issue #19014: memoryview.cast() is now allowed on zero-length views.
Antoine Pitrou committed
October 2, 2013
N
Close #19078: memoryview now supports reversed
Nick Coghlan committed
February 19, 2013
S
Fix error messages.
Stefan Krah committed
November 2, 2012
S
Issue #15814: Use hash function that is compatible with the equality
Stefan Krah committed
September 3, 2012
A
Issue #15855: added docstrings for memoryview methods and data descriptors new in 3.3.
Alexander Belopolsky committed