mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #18227: "Free" function of bz2, lzma and zlib modules has no return value (void)
This commit is contained in:
parent
11ebff2757
commit
b7f1f65f1c
3 changed files with 3 additions and 3 deletions
|
@ -149,7 +149,7 @@ PyZlib_Malloc(voidpf ctx, uInt items, uInt size)
|
|||
static void
|
||||
PyZlib_Free(voidpf ctx, void *ptr)
|
||||
{
|
||||
return PyMem_RawFree(ptr);
|
||||
PyMem_RawFree(ptr);
|
||||
}
|
||||
|
||||
PyDoc_STRVAR(compress__doc__,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue