Skip to content

bpo-36710: Add tstate parameter in ceval.c#13547

Merged
vstinner merged 2 commits intopython:masterfrom
vstinner:ceval_tstate
May 24, 2019
Merged

bpo-36710: Add tstate parameter in ceval.c#13547
vstinner merged 2 commits intopython:masterfrom
vstinner:ceval_tstate

Conversation

@vstinner
Copy link
Member

@vstinner vstinner commented May 24, 2019

  • Add pycore_pyerrors.h header file

  • New functions:

    • _PyErr_Clear()
    • _PyErr_Fetch()
    • _PyErr_Print()
    • _PyErr_Restore()
    • _PyErr_SetObject()
    • _PyErr_SetString()
  • Add 'tstate' parameter to _PyEval_AddPendingCall()

  • Fix a possible reference leak in _PyErr_Print() if exception
    is NULL

https://bugs.python.org/issue36710

* Add pycore_pyerrors.h header file
* New functions:

  * _PyErr_Clear()
  * _PyErr_Fetch()
  * _PyErr_Print()
  * _PyErr_Restore()
  * _PyErr_SetObject()
  * _PyErr_SetString()

* Add 'tstate' parameter to _PyEval_AddPendingCall()
* Fix a possible reference leak in _PyErr_Print() if exception
  is NULL
* prtrace(): tstate doesn't have to be const
* PyErr_BadInternalCall(): replace _PyErr_Format()
  with _PyErr_SetString()
@vstinner vstinner merged commit 438a12d into python:master May 24, 2019
@vstinner vstinner deleted the ceval_tstate branch May 24, 2019 15:01
DinoV pushed a commit to DinoV/cpython that referenced this pull request Jan 14, 2020
* Fix a possible reference leak in _PyErr_Print() if exception
  is NULL.
* PyErr_BadInternalCall(): replace PyErr_Format() with _PyErr_SetString().
* Add pycore_pyerrors.h header file.
* New functions:

  * _PyErr_Clear()
  * _PyErr_Fetch()
  * _PyErr_Print()
  * _PyErr_Restore()
  * _PyErr_SetObject()
  * _PyErr_SetString()

* Add 'tstate' parameter to _PyEval_AddPendingCall().
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