this repo has no description
at trunk 18 lines 457 B view raw
1/* Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com) */ 2#pragma once 3 4// This exposes some modsupport code to abstract.cpp; it is not cpython API. 5 6#include <cstdarg> 7 8#include "cpython-types.h" 9 10namespace py { 11 12const int kFlagSizeT = 1; 13 14PyObject* makeValueFromFormat(const char** p_format, std::va_list* p_va, 15 int flags); 16Py_ssize_t countFormat(const char* format, char endchar); 17 18} // namespace py