Staging
v0.5.1
https://github.com/python/cpython
Revision 64409117361499058b1bf95e6efec31f7bb3c0d0 authored by Miss Islington (bot) on 08 June 2020, 01:08:53 UTC, committed by GitHub on 08 June 2020, 01:08:53 UTC
(cherry picked from commit 972ab0327675e695373fc6272d5ac24e187579ad)

Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
1 parent 71f5016
Raw File
Tip revision: 64409117361499058b1bf95e6efec31f7bb3c0d0 authored by Miss Islington (bot) on 08 June 2020, 01:08:53 UTC
bpo-40904: Fix segfault in the new parser with f-string containing yield statements with no value (GH-20701)
Tip revision: 6440911
namespaceobject.h

/* simple namespace object interface */

#ifndef NAMESPACEOBJECT_H
#define NAMESPACEOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_LIMITED_API
PyAPI_DATA(PyTypeObject) _PyNamespace_Type;

PyAPI_FUNC(PyObject *) _PyNamespace_New(PyObject *kwds);
#endif /* !Py_LIMITED_API */

#ifdef __cplusplus
}
#endif
#endif /* !NAMESPACEOBJECT_H */
back to top