this repo has no description
at trunk 18 lines 495 B view raw
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 int PyODict_DelItem(PyObject* /* d */, PyObject* /* y */) { 8 UNIMPLEMENTED("PyODict_DelItem"); 9} 10 11PY_EXPORT PyObject* PyODict_New() { UNIMPLEMENTED("PyODict_New"); } 12 13PY_EXPORT int PyODict_SetItem(PyObject* /* d */, PyObject* /* y */, 14 PyObject* /* e */) { 15 UNIMPLEMENTED("PyODict_SetItem"); 16} 17 18} // namespace py