cpython/Python
Victor Stinner 00d7abd7ef
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
No longer use deprecated aliases to functions:

* Replace PyMem_MALLOC() with PyMem_Malloc()
* Replace PyMem_REALLOC() with PyMem_Realloc()
* Replace PyMem_FREE() with PyMem_Free()
* Replace PyMem_Del() with PyMem_Free()
* Replace PyMem_DEL() with PyMem_Free()

Modify also the PyMem_DEL() macro to use directly PyMem_Free().
2020-12-01 09:56:42 +01:00
..
clinic
_warnings.c bpo-1635741: Port _warnings to the multi-phase init (GH-23379) 2020-11-19 00:19:06 +01:00
asdl.c
ast.c
ast_opt.c
ast_unparse.c
bltinmodule.c bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) 2020-12-01 09:56:42 +01:00
bootstrap_hash.c
ceval.c bpo-42202: Store func annotations as a tuple (GH-23316) 2020-11-25 19:43:18 +09:00
ceval_gil.h
codecs.c
compile.c bpo-42202: Store func annotations as a tuple (GH-23316) 2020-11-25 19:43:18 +09:00
condvar.h
context.c
dtoa.c
dup2.c
dynamic_annotations.c
dynload_hpux.c
dynload_shlib.c
dynload_stub.c
dynload_win.c
errors.c
fileutils.c
formatter_unicode.c
frozen.c
frozenmain.c
future.c
getargs.c bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) 2020-12-01 09:56:42 +01:00
getcompiler.c
getcopyright.c
getopt.c
getplatform.c
getversion.c
hamt.c
hashtable.c
import.c bpo-1635741: Convert _imp to multi-phase init (GH-23378) 2020-11-18 23:18:29 +01:00
importdl.c
importdl.h
importlib.h bpo-42403: Use @staticmethod in importlib (GH-23395) 2020-11-20 14:44:02 +01:00
importlib_external.h bpo-42202: Store func annotations as a tuple (GH-23316) 2020-11-25 19:43:18 +09:00
importlib_zipimport.h
initconfig.c bpo-42260: Improve error handling in _PyConfig_FromDict (GH-23488) 2020-11-24 14:07:32 +02:00
makeopcodetargets.py
marshal.c bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) 2020-12-01 09:56:42 +01:00
modsupport.c
mysnprintf.c
mystrtoul.c
opcode_targets.h
pathconfig.c
preconfig.c
pyarena.c
pyctype.c
pyfpe.c
pyhash.c
pylifecycle.c bpo-1635741: Convert _imp to multi-phase init (GH-23378) 2020-11-18 23:18:29 +01:00
pymath.c
pystate.c
pystrcmp.c
pystrhex.c
pystrtod.c bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) 2020-12-01 09:56:42 +01:00
Python-ast.c
pythonrun.c
pytime.c
README
structmember.c
symtable.c
sysmodule.c
thread.c
thread_nt.h
thread_pthread.h
traceback.c bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) 2020-12-01 09:56:42 +01:00
wordcode_helpers.h

Miscellaneous source files for the main Python shared library