Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() #23587

Merged
merged 1 commit into from
Dec 1, 2020
Merged

bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() #23587

merged 1 commit into from
Dec 1, 2020

Conversation

vstinner
Copy link
Member

@vstinner vstinner commented Dec 1, 2020

No longer use deprecated aliases to functions:

  • Replace PyObject_MALLOC() with PyObject_Malloc()
  • Replace PyObject_REALLOC() with PyObject_Realloc()
  • Replace PyObject_FREE() with PyObject_Free()
  • Replace PyObject_Del() with PyObject_Free()
  • Replace PyObject_DEL() with PyObject_Free()

https://bugs.python.org/issue42519

No longer use deprecated aliases to functions:

* Replace PyObject_MALLOC() with PyObject_Malloc()
* Replace PyObject_REALLOC() with PyObject_Realloc()
* Replace PyObject_FREE() with PyObject_Free()
* Replace PyObject_Del() with PyObject_Free()
* Replace PyObject_DEL() with PyObject_Free()
@vstinner vstinner merged commit 32bd68c into python:master Dec 1, 2020
@vstinner vstinner deleted the pyobject_del branch December 1, 2020 09:37
adorilson pushed a commit to adorilson/cpython that referenced this pull request Mar 13, 2021
…-23587)

No longer use deprecated aliases to functions:

* Replace PyObject_MALLOC() with PyObject_Malloc()
* Replace PyObject_REALLOC() with PyObject_Realloc()
* Replace PyObject_FREE() with PyObject_Free()
* Replace PyObject_Del() with PyObject_Free()
* Replace PyObject_DEL() with PyObject_Free()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants