this repo has no description
1// Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com)
2#include "api-handle.h"
3#include "runtime.h"
4
5namespace py {
6
7PY_EXPORT void PyFrame_FastToLocals(PyFrameObject* /* f */) {
8 UNIMPLEMENTED("PyFrame_FastToLocals");
9}
10
11PY_EXPORT int PyFrame_GetLineNumber(PyFrameObject* /* f */) {
12 UNIMPLEMENTED("PyFrame_GetLineNumber");
13}
14
15PY_EXPORT void PyFrame_LocalsToFast(PyFrameObject* /* f */, int /* r */) {
16 UNIMPLEMENTED("PyFrame_LocalsToFast");
17}
18
19PY_EXPORT PyFrameObject* PyFrame_New(PyThreadState* /* e */,
20 PyCodeObject* /* e */, PyObject* /* s */,
21 PyObject* /* s */) {
22 UNIMPLEMENTED("PyFrame_New");
23}
24
25} // namespace py