2019-04-18 06:37:26 -03:00
|
|
|
/*
|
|
|
|
* C Extension module to test Python internal C APIs (Include/internal).
|
|
|
|
*/
|
|
|
|
|
2021-10-22 10:36:28 -03:00
|
|
|
#ifndef Py_BUILD_CORE_BUILTIN
|
|
|
|
# define Py_BUILD_CORE_MODULE 1
|
2019-04-18 06:37:26 -03:00
|
|
|
#endif
|
|
|
|
|
2020-04-20 13:49:13 -03:00
|
|
|
/* Always enable assertions */
|
|
|
|
#undef NDEBUG
|
|
|
|
|
2019-04-18 06:37:26 -03:00
|
|
|
#define PY_SSIZE_T_CLEAN
|
|
|
|
|
|
|
|
#include "Python.h"
|
2023-05-18 06:10:15 -03:00
|
|
|
#include "frameobject.h"
|
2020-12-22 22:41:08 -04:00
|
|
|
#include "pycore_atomic_funcs.h" // _Py_atomic_int_get()
|
2020-06-08 11:30:33 -03:00
|
|
|
#include "pycore_bitutils.h" // _Py_bswap32()
|
2023-05-01 18:29:30 -03:00
|
|
|
#include "pycore_compile.h" // _PyCompile_CodeGen, _PyCompile_OptimizeCfg, _PyCompile_Assemble
|
2021-12-02 20:08:42 -04:00
|
|
|
#include "pycore_fileutils.h" // _Py_normpath
|
2022-05-04 12:31:21 -03:00
|
|
|
#include "pycore_frame.h" // _PyInterpreterFrame
|
2020-04-13 06:38:42 -03:00
|
|
|
#include "pycore_gc.h" // PyGC_Head
|
2020-11-05 13:12:33 -04:00
|
|
|
#include "pycore_hashtable.h" // _Py_hashtable_new()
|
|
|
|
#include "pycore_initconfig.h" // _Py_GetConfigsAsDict()
|
2021-12-02 20:08:42 -04:00
|
|
|
#include "pycore_pathconfig.h" // _PyPathConfig_ClearGlobal()
|
2020-11-05 13:12:33 -04:00
|
|
|
#include "pycore_interp.h" // _PyInterpreterState_GetConfigCopy()
|
2021-10-13 09:09:13 -03:00
|
|
|
#include "pycore_pyerrors.h" // _Py_UTF8_Edit_Cost()
|
|
|
|
#include "pycore_pystate.h" // _PyThreadState_GET()
|
2022-05-04 12:31:21 -03:00
|
|
|
#include "osdefs.h" // MAXPATHLEN
|
2019-04-18 06:37:26 -03:00
|
|
|
|
2022-08-24 07:02:53 -03:00
|
|
|
#include "clinic/_testinternalcapi.c.h"
|
2019-04-18 06:37:26 -03:00
|
|
|
|
2023-01-12 16:42:03 -04:00
|
|
|
|
|
|
|
#define MODULE_NAME "_testinternalcapi"
|
|
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_get_current_module(void)
|
|
|
|
{
|
|
|
|
// We ensured it was imported in _run_script().
|
|
|
|
PyObject *name = PyUnicode_FromString(MODULE_NAME);
|
|
|
|
if (name == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
PyObject *mod = PyImport_GetModule(name);
|
|
|
|
Py_DECREF(name);
|
|
|
|
if (mod == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
assert(mod != Py_None);
|
|
|
|
return mod;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* module state *************************************************************/
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
PyObject *record_list;
|
|
|
|
} module_state;
|
|
|
|
|
|
|
|
static inline module_state *
|
|
|
|
get_module_state(PyObject *mod)
|
|
|
|
{
|
|
|
|
assert(mod != NULL);
|
|
|
|
module_state *state = PyModule_GetState(mod);
|
|
|
|
assert(state != NULL);
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
traverse_module_state(module_state *state, visitproc visit, void *arg)
|
|
|
|
{
|
|
|
|
Py_VISIT(state->record_list);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
clear_module_state(module_state *state)
|
|
|
|
{
|
|
|
|
Py_CLEAR(state->record_list);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* module functions *********************************************************/
|
|
|
|
|
2022-08-24 07:02:53 -03:00
|
|
|
/*[clinic input]
|
|
|
|
module _testinternalcapi
|
|
|
|
[clinic start generated code]*/
|
|
|
|
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=7bb583d8c9eb9a78]*/
|
2019-04-18 06:37:26 -03:00
|
|
|
static PyObject *
|
|
|
|
get_configs(PyObject *self, PyObject *Py_UNUSED(args))
|
|
|
|
{
|
2020-07-07 19:20:37 -03:00
|
|
|
return _Py_GetConfigsAsDict();
|
2019-04-18 06:37:26 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-13 09:07:31 -03:00
|
|
|
static PyObject*
|
2020-04-17 12:47:20 -03:00
|
|
|
get_recursion_depth(PyObject *self, PyObject *Py_UNUSED(args))
|
2020-03-13 09:07:31 -03:00
|
|
|
{
|
2021-10-13 09:09:13 -03:00
|
|
|
PyThreadState *tstate = _PyThreadState_GET();
|
2020-03-13 09:07:31 -03:00
|
|
|
|
2022-10-04 21:34:03 -03:00
|
|
|
return PyLong_FromLong(tstate->py_recursion_limit - tstate->py_recursion_remaining);
|
2020-03-13 09:07:31 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-17 12:47:20 -03:00
|
|
|
static PyObject*
|
|
|
|
test_bswap(PyObject *self, PyObject *Py_UNUSED(args))
|
|
|
|
{
|
|
|
|
uint16_t u16 = _Py_bswap16(UINT16_C(0x3412));
|
|
|
|
if (u16 != UINT16_C(0x1234)) {
|
|
|
|
PyErr_Format(PyExc_AssertionError,
|
|
|
|
"_Py_bswap16(0x3412) returns %u", u16);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t u32 = _Py_bswap32(UINT32_C(0x78563412));
|
|
|
|
if (u32 != UINT32_C(0x12345678)) {
|
|
|
|
PyErr_Format(PyExc_AssertionError,
|
|
|
|
"_Py_bswap32(0x78563412) returns %lu", u32);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t u64 = _Py_bswap64(UINT64_C(0xEFCDAB9078563412));
|
|
|
|
if (u64 != UINT64_C(0x1234567890ABCDEF)) {
|
|
|
|
PyErr_Format(PyExc_AssertionError,
|
|
|
|
"_Py_bswap64(0xEFCDAB9078563412) returns %llu", u64);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-08 11:30:33 -03:00
|
|
|
static int
|
|
|
|
check_popcount(uint32_t x, int expected)
|
|
|
|
{
|
|
|
|
// Use volatile to prevent the compiler to optimize out the whole test
|
|
|
|
volatile uint32_t u = x;
|
|
|
|
int bits = _Py_popcount32(u);
|
|
|
|
if (bits != expected) {
|
|
|
|
PyErr_Format(PyExc_AssertionError,
|
|
|
|
"_Py_popcount32(%lu) returns %i, expected %i",
|
|
|
|
(unsigned long)x, bits, expected);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static PyObject*
|
|
|
|
test_popcount(PyObject *self, PyObject *Py_UNUSED(args))
|
|
|
|
{
|
|
|
|
#define CHECK(X, RESULT) \
|
|
|
|
do { \
|
|
|
|
if (check_popcount(X, RESULT) < 0) { \
|
|
|
|
return NULL; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
CHECK(0, 0);
|
|
|
|
CHECK(1, 1);
|
|
|
|
CHECK(0x08080808, 4);
|
2022-01-23 05:59:34 -04:00
|
|
|
CHECK(0x10000001, 2);
|
2020-06-08 11:30:33 -03:00
|
|
|
CHECK(0x10101010, 4);
|
|
|
|
CHECK(0x10204080, 4);
|
|
|
|
CHECK(0xDEADCAFE, 22);
|
|
|
|
CHECK(0xFFFFFFFF, 32);
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
|
|
|
|
#undef CHECK
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-15 09:33:48 -03:00
|
|
|
static int
|
|
|
|
check_bit_length(unsigned long x, int expected)
|
|
|
|
{
|
|
|
|
// Use volatile to prevent the compiler to optimize out the whole test
|
|
|
|
volatile unsigned long u = x;
|
|
|
|
int len = _Py_bit_length(u);
|
|
|
|
if (len != expected) {
|
|
|
|
PyErr_Format(PyExc_AssertionError,
|
|
|
|
"_Py_bit_length(%lu) returns %i, expected %i",
|
|
|
|
x, len, expected);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static PyObject*
|
|
|
|
test_bit_length(PyObject *self, PyObject *Py_UNUSED(args))
|
|
|
|
{
|
|
|
|
#define CHECK(X, RESULT) \
|
|
|
|
do { \
|
|
|
|
if (check_bit_length(X, RESULT) < 0) { \
|
|
|
|
return NULL; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
CHECK(0, 0);
|
|
|
|
CHECK(1, 1);
|
|
|
|
CHECK(0x1000, 13);
|
|
|
|
CHECK(0x1234, 13);
|
|
|
|
CHECK(0x54321, 19);
|
|
|
|
CHECK(0x7FFFFFFF, 31);
|
|
|
|
CHECK(0xFFFFFFFF, 32);
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
|
|
|
|
#undef CHECK
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-14 16:55:47 -03:00
|
|
|
#define TO_PTR(ch) ((void*)(uintptr_t)ch)
|
|
|
|
#define FROM_PTR(ptr) ((uintptr_t)ptr)
|
|
|
|
#define VALUE(key) (1 + ((int)(key) - 'a'))
|
|
|
|
|
|
|
|
static Py_uhash_t
|
|
|
|
hash_char(const void *key)
|
|
|
|
{
|
|
|
|
char ch = (char)FROM_PTR(key);
|
|
|
|
return ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
hashtable_cb(_Py_hashtable_t *table,
|
|
|
|
const void *key_ptr, const void *value_ptr,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
int *count = (int *)user_data;
|
|
|
|
char key = (char)FROM_PTR(key_ptr);
|
|
|
|
int value = (int)FROM_PTR(value_ptr);
|
|
|
|
assert(value == VALUE(key));
|
|
|
|
*count += 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static PyObject*
|
|
|
|
test_hashtable(PyObject *self, PyObject *Py_UNUSED(args))
|
|
|
|
{
|
|
|
|
_Py_hashtable_t *table = _Py_hashtable_new(hash_char,
|
|
|
|
_Py_hashtable_compare_direct);
|
|
|
|
if (table == NULL) {
|
|
|
|
return PyErr_NoMemory();
|
|
|
|
}
|
|
|
|
|
2020-05-14 17:44:32 -03:00
|
|
|
// Using an newly allocated table must not crash
|
|
|
|
assert(table->nentries == 0);
|
|
|
|
assert(table->nbuckets > 0);
|
|
|
|
assert(_Py_hashtable_get(table, TO_PTR('x')) == NULL);
|
|
|
|
|
2020-05-14 16:55:47 -03:00
|
|
|
// Test _Py_hashtable_set()
|
|
|
|
char key;
|
|
|
|
for (key='a'; key <= 'z'; key++) {
|
|
|
|
int value = VALUE(key);
|
|
|
|
if (_Py_hashtable_set(table, TO_PTR(key), TO_PTR(value)) < 0) {
|
|
|
|
_Py_hashtable_destroy(table);
|
|
|
|
return PyErr_NoMemory();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert(table->nentries == 26);
|
|
|
|
assert(table->nbuckets > table->nentries);
|
|
|
|
|
|
|
|
// Test _Py_hashtable_get_entry()
|
|
|
|
for (key='a'; key <= 'z'; key++) {
|
|
|
|
_Py_hashtable_entry_t *entry = _Py_hashtable_get_entry(table, TO_PTR(key));
|
|
|
|
assert(entry != NULL);
|
2020-06-22 04:41:48 -03:00
|
|
|
assert(entry->key == TO_PTR(key));
|
|
|
|
assert(entry->value == TO_PTR(VALUE(key)));
|
2020-05-14 16:55:47 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test _Py_hashtable_get()
|
|
|
|
for (key='a'; key <= 'z'; key++) {
|
|
|
|
void *value_ptr = _Py_hashtable_get(table, TO_PTR(key));
|
2020-05-14 17:44:32 -03:00
|
|
|
assert((int)FROM_PTR(value_ptr) == VALUE(key));
|
2020-05-14 16:55:47 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test _Py_hashtable_steal()
|
|
|
|
key = 'p';
|
|
|
|
void *value_ptr = _Py_hashtable_steal(table, TO_PTR(key));
|
2020-05-14 17:44:32 -03:00
|
|
|
assert((int)FROM_PTR(value_ptr) == VALUE(key));
|
2020-05-14 16:55:47 -03:00
|
|
|
assert(table->nentries == 25);
|
2020-05-14 17:44:32 -03:00
|
|
|
assert(_Py_hashtable_get_entry(table, TO_PTR(key)) == NULL);
|
2020-05-14 16:55:47 -03:00
|
|
|
|
|
|
|
// Test _Py_hashtable_foreach()
|
|
|
|
int count = 0;
|
|
|
|
int res = _Py_hashtable_foreach(table, hashtable_cb, &count);
|
|
|
|
assert(res == 0);
|
|
|
|
assert(count == 25);
|
|
|
|
|
|
|
|
// Test _Py_hashtable_clear()
|
|
|
|
_Py_hashtable_clear(table);
|
|
|
|
assert(table->nentries == 0);
|
2020-05-14 17:44:32 -03:00
|
|
|
assert(table->nbuckets > 0);
|
2020-05-14 16:55:47 -03:00
|
|
|
assert(_Py_hashtable_get(table, TO_PTR('x')) == NULL);
|
|
|
|
|
|
|
|
_Py_hashtable_destroy(table);
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-05 13:12:33 -04:00
|
|
|
static PyObject *
|
|
|
|
test_get_config(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(args))
|
|
|
|
{
|
|
|
|
PyConfig config;
|
|
|
|
PyConfig_InitIsolatedConfig(&config);
|
|
|
|
if (_PyInterpreterState_GetConfigCopy(&config) < 0) {
|
|
|
|
PyConfig_Clear(&config);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
PyObject *dict = _PyConfig_AsDict(&config);
|
|
|
|
PyConfig_Clear(&config);
|
|
|
|
return dict;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
test_set_config(PyObject *Py_UNUSED(self), PyObject *dict)
|
|
|
|
{
|
|
|
|
PyConfig config;
|
|
|
|
PyConfig_InitIsolatedConfig(&config);
|
|
|
|
if (_PyConfig_FromDict(&config, dict) < 0) {
|
2020-11-05 13:58:07 -04:00
|
|
|
goto error;
|
2020-11-05 13:12:33 -04:00
|
|
|
}
|
|
|
|
if (_PyInterpreterState_SetConfig(&config) < 0) {
|
2020-11-05 13:58:07 -04:00
|
|
|
goto error;
|
2020-11-05 13:12:33 -04:00
|
|
|
}
|
|
|
|
PyConfig_Clear(&config);
|
|
|
|
Py_RETURN_NONE;
|
2020-11-05 13:58:07 -04:00
|
|
|
|
|
|
|
error:
|
|
|
|
PyConfig_Clear(&config);
|
|
|
|
return NULL;
|
2020-11-05 13:12:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-12-02 20:08:42 -04:00
|
|
|
static PyObject *
|
|
|
|
test_reset_path_config(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(arg))
|
|
|
|
{
|
|
|
|
_PyPathConfig_ClearGlobal();
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-22 22:41:08 -04:00
|
|
|
static PyObject*
|
|
|
|
test_atomic_funcs(PyObject *self, PyObject *Py_UNUSED(args))
|
|
|
|
{
|
|
|
|
// Test _Py_atomic_size_get() and _Py_atomic_size_set()
|
|
|
|
Py_ssize_t var = 1;
|
|
|
|
_Py_atomic_size_set(&var, 2);
|
|
|
|
assert(_Py_atomic_size_get(&var) == 2);
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-05-03 12:47:27 -03:00
|
|
|
static int
|
|
|
|
check_edit_cost(const char *a, const char *b, Py_ssize_t expected)
|
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
PyObject *a_obj = NULL;
|
|
|
|
PyObject *b_obj = NULL;
|
|
|
|
|
|
|
|
a_obj = PyUnicode_FromString(a);
|
|
|
|
if (a_obj == NULL) {
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
b_obj = PyUnicode_FromString(b);
|
2022-05-16 22:32:48 -03:00
|
|
|
if (b_obj == NULL) {
|
2021-05-03 12:47:27 -03:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
Py_ssize_t result = _Py_UTF8_Edit_Cost(a_obj, b_obj, -1);
|
|
|
|
if (result != expected) {
|
|
|
|
PyErr_Format(PyExc_AssertionError,
|
|
|
|
"Edit cost from '%s' to '%s' returns %zd, expected %zd",
|
|
|
|
a, b, result, expected);
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
// Check that smaller max_edits thresholds are exceeded.
|
|
|
|
Py_ssize_t max_edits = result;
|
|
|
|
while (max_edits > 0) {
|
|
|
|
max_edits /= 2;
|
|
|
|
Py_ssize_t result2 = _Py_UTF8_Edit_Cost(a_obj, b_obj, max_edits);
|
|
|
|
if (result2 <= max_edits) {
|
|
|
|
PyErr_Format(PyExc_AssertionError,
|
|
|
|
"Edit cost from '%s' to '%s' (threshold %zd) "
|
|
|
|
"returns %zd, expected greater than %zd",
|
|
|
|
a, b, max_edits, result2, max_edits);
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Check that bigger max_edits thresholds don't change anything
|
|
|
|
Py_ssize_t result3 = _Py_UTF8_Edit_Cost(a_obj, b_obj, result * 2 + 1);
|
|
|
|
if (result3 != result) {
|
|
|
|
PyErr_Format(PyExc_AssertionError,
|
|
|
|
"Edit cost from '%s' to '%s' (threshold %zd) "
|
|
|
|
"returns %zd, expected %zd",
|
|
|
|
a, b, result * 2, result3, result);
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
exit:
|
|
|
|
Py_XDECREF(a_obj);
|
|
|
|
Py_XDECREF(b_obj);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
test_edit_cost(PyObject *self, PyObject *Py_UNUSED(args))
|
|
|
|
{
|
|
|
|
#define CHECK(a, b, n) do { \
|
|
|
|
if (check_edit_cost(a, b, n) < 0) { \
|
|
|
|
return NULL; \
|
|
|
|
} \
|
|
|
|
} while (0) \
|
|
|
|
|
|
|
|
CHECK("", "", 0);
|
|
|
|
CHECK("", "a", 2);
|
|
|
|
CHECK("a", "A", 1);
|
|
|
|
CHECK("Apple", "Aple", 2);
|
|
|
|
CHECK("Banana", "B@n@n@", 6);
|
|
|
|
CHECK("Cherry", "Cherry!", 2);
|
|
|
|
CHECK("---0---", "------", 2);
|
|
|
|
CHECK("abc", "y", 6);
|
|
|
|
CHECK("aa", "bb", 4);
|
|
|
|
CHECK("aaaaa", "AAAAA", 5);
|
|
|
|
CHECK("wxyz", "wXyZ", 2);
|
|
|
|
CHECK("wxyz", "wXyZ123", 8);
|
|
|
|
CHECK("Python", "Java", 12);
|
|
|
|
CHECK("Java", "C#", 8);
|
|
|
|
CHECK("AbstractFoobarManager", "abstract_foobar_manager", 3+2*2);
|
|
|
|
CHECK("CPython", "PyPy", 10);
|
|
|
|
CHECK("CPython", "pypy", 11);
|
|
|
|
CHECK("AttributeError", "AttributeErrop", 2);
|
|
|
|
CHECK("AttributeError", "AttributeErrorTests", 10);
|
|
|
|
|
|
|
|
#undef CHECK
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-10-22 20:20:03 -03:00
|
|
|
static PyObject *
|
|
|
|
normalize_path(PyObject *self, PyObject *filename)
|
|
|
|
{
|
|
|
|
Py_ssize_t size = -1;
|
|
|
|
wchar_t *encoded = PyUnicode_AsWideCharString(filename, &size);
|
|
|
|
if (encoded == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-12-02 20:08:42 -04:00
|
|
|
PyObject *result = PyUnicode_FromWideChar(_Py_normpath(encoded, size), -1);
|
2021-10-22 20:20:03 -03:00
|
|
|
PyMem_Free(encoded);
|
|
|
|
|
2021-12-02 20:08:42 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
get_getpath_codeobject(PyObject *self, PyObject *Py_UNUSED(args)) {
|
|
|
|
return _Py_Get_Getpath_CodeObject();
|
2021-10-22 20:20:03 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-11 06:56:16 -04:00
|
|
|
static PyObject *
|
|
|
|
encode_locale_ex(PyObject *self, PyObject *args)
|
|
|
|
{
|
|
|
|
PyObject *unicode;
|
|
|
|
int current_locale = 0;
|
|
|
|
wchar_t *wstr;
|
|
|
|
PyObject *res = NULL;
|
|
|
|
const char *errors = NULL;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "U|is", &unicode, ¤t_locale, &errors)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
wstr = PyUnicode_AsWideCharString(unicode, NULL);
|
|
|
|
if (wstr == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
_Py_error_handler error_handler = _Py_GetErrorHandler(errors);
|
|
|
|
|
|
|
|
char *str = NULL;
|
|
|
|
size_t error_pos;
|
|
|
|
const char *reason = NULL;
|
|
|
|
int ret = _Py_EncodeLocaleEx(wstr,
|
|
|
|
&str, &error_pos, &reason,
|
|
|
|
current_locale, error_handler);
|
|
|
|
PyMem_Free(wstr);
|
|
|
|
|
|
|
|
switch(ret) {
|
|
|
|
case 0:
|
|
|
|
res = PyBytes_FromString(str);
|
|
|
|
PyMem_RawFree(str);
|
|
|
|
break;
|
|
|
|
case -1:
|
|
|
|
PyErr_NoMemory();
|
|
|
|
break;
|
|
|
|
case -2:
|
|
|
|
PyErr_Format(PyExc_RuntimeError, "encode error: pos=%zu, reason=%s",
|
|
|
|
error_pos, reason);
|
|
|
|
break;
|
|
|
|
case -3:
|
|
|
|
PyErr_SetString(PyExc_ValueError, "unsupported error handler");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
PyErr_SetString(PyExc_ValueError, "unknown error code");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
decode_locale_ex(PyObject *self, PyObject *args)
|
|
|
|
{
|
|
|
|
char *str;
|
|
|
|
int current_locale = 0;
|
|
|
|
PyObject *res = NULL;
|
|
|
|
const char *errors = NULL;
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple(args, "y|is", &str, ¤t_locale, &errors)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
_Py_error_handler error_handler = _Py_GetErrorHandler(errors);
|
|
|
|
|
|
|
|
wchar_t *wstr = NULL;
|
|
|
|
size_t wlen = 0;
|
|
|
|
const char *reason = NULL;
|
|
|
|
int ret = _Py_DecodeLocaleEx(str,
|
|
|
|
&wstr, &wlen, &reason,
|
|
|
|
current_locale, error_handler);
|
|
|
|
|
|
|
|
switch(ret) {
|
|
|
|
case 0:
|
|
|
|
res = PyUnicode_FromWideChar(wstr, wlen);
|
|
|
|
PyMem_RawFree(wstr);
|
|
|
|
break;
|
|
|
|
case -1:
|
|
|
|
PyErr_NoMemory();
|
|
|
|
break;
|
|
|
|
case -2:
|
|
|
|
PyErr_Format(PyExc_RuntimeError, "decode error: pos=%zu, reason=%s",
|
|
|
|
wlen, reason);
|
|
|
|
break;
|
|
|
|
case -3:
|
|
|
|
PyErr_SetString(PyExc_ValueError, "unsupported error handler");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
PyErr_SetString(PyExc_ValueError, "unknown error code");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2022-05-04 12:31:21 -03:00
|
|
|
static PyObject *
|
|
|
|
set_eval_frame_default(PyObject *self, PyObject *Py_UNUSED(args))
|
|
|
|
{
|
2023-01-12 16:42:03 -04:00
|
|
|
module_state *state = get_module_state(self);
|
2022-05-04 12:31:21 -03:00
|
|
|
_PyInterpreterState_SetEvalFrameFunc(PyInterpreterState_Get(), _PyEval_EvalFrameDefault);
|
2023-01-12 16:42:03 -04:00
|
|
|
Py_CLEAR(state->record_list);
|
2022-05-04 12:31:21 -03:00
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
record_eval(PyThreadState *tstate, struct _PyInterpreterFrame *f, int exc)
|
|
|
|
{
|
2022-08-25 06:16:55 -03:00
|
|
|
if (PyFunction_Check(f->f_funcobj)) {
|
2023-01-12 16:42:03 -04:00
|
|
|
PyObject *module = _get_current_module();
|
|
|
|
assert(module != NULL);
|
|
|
|
module_state *state = get_module_state(module);
|
2023-01-16 06:41:57 -04:00
|
|
|
Py_DECREF(module);
|
2023-01-12 16:42:03 -04:00
|
|
|
PyList_Append(state->record_list, ((PyFunctionObject *)f->f_funcobj)->func_name);
|
2022-08-25 06:16:55 -03:00
|
|
|
}
|
2022-05-04 12:31:21 -03:00
|
|
|
return _PyEval_EvalFrameDefault(tstate, f, exc);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
set_eval_frame_record(PyObject *self, PyObject *list)
|
|
|
|
{
|
2023-01-12 16:42:03 -04:00
|
|
|
module_state *state = get_module_state(self);
|
2022-05-04 12:31:21 -03:00
|
|
|
if (!PyList_Check(list)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "argument must be a list");
|
|
|
|
return NULL;
|
|
|
|
}
|
2023-01-12 16:42:03 -04:00
|
|
|
Py_XSETREF(state->record_list, Py_NewRef(list));
|
2022-05-04 12:31:21 -03:00
|
|
|
_PyInterpreterState_SetEvalFrameFunc(PyInterpreterState_Get(), record_eval);
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
|
2022-11-14 09:56:40 -04:00
|
|
|
/*[clinic input]
|
|
|
|
|
|
|
|
_testinternalcapi.compiler_codegen -> object
|
|
|
|
|
|
|
|
ast: object
|
|
|
|
filename: object
|
|
|
|
optimize: int
|
2023-05-07 14:47:28 -03:00
|
|
|
compile_mode: int = 0
|
2022-11-14 09:56:40 -04:00
|
|
|
|
|
|
|
Apply compiler code generation to an AST.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_testinternalcapi_compiler_codegen_impl(PyObject *module, PyObject *ast,
|
2023-05-07 14:47:28 -03:00
|
|
|
PyObject *filename, int optimize,
|
|
|
|
int compile_mode)
|
|
|
|
/*[clinic end generated code: output=40a68f6e13951cc8 input=a0e00784f1517cd7]*/
|
2022-11-14 09:56:40 -04:00
|
|
|
{
|
|
|
|
PyCompilerFlags *flags = NULL;
|
2023-05-07 14:47:28 -03:00
|
|
|
return _PyCompile_CodeGen(ast, filename, flags, optimize, compile_mode);
|
2022-11-14 09:56:40 -04:00
|
|
|
}
|
|
|
|
|
2022-01-11 06:56:16 -04:00
|
|
|
|
2022-08-24 07:02:53 -03:00
|
|
|
/*[clinic input]
|
|
|
|
|
|
|
|
_testinternalcapi.optimize_cfg -> object
|
|
|
|
|
|
|
|
instructions: object
|
|
|
|
consts: object
|
|
|
|
|
|
|
|
Apply compiler optimizations to an instruction list.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_testinternalcapi_optimize_cfg_impl(PyObject *module, PyObject *instructions,
|
|
|
|
PyObject *consts)
|
|
|
|
/*[clinic end generated code: output=5412aeafca683c8b input=7e8a3de86ebdd0f9]*/
|
|
|
|
{
|
|
|
|
return _PyCompile_OptimizeCfg(instructions, consts);
|
|
|
|
}
|
|
|
|
|
2023-05-01 18:29:30 -03:00
|
|
|
static int
|
|
|
|
get_nonnegative_int_from_dict(PyObject *dict, const char *key) {
|
|
|
|
PyObject *obj = PyDict_GetItemString(dict, key);
|
|
|
|
if (obj == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return PyLong_AsLong(obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
|
|
|
|
_testinternalcapi.assemble_code_object -> object
|
|
|
|
|
|
|
|
filename: object
|
|
|
|
instructions: object
|
|
|
|
metadata: object
|
|
|
|
|
|
|
|
Create a code object for the given instructions.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_testinternalcapi_assemble_code_object_impl(PyObject *module,
|
|
|
|
PyObject *filename,
|
|
|
|
PyObject *instructions,
|
|
|
|
PyObject *metadata)
|
|
|
|
/*[clinic end generated code: output=38003dc16a930f48 input=e713ad77f08fb3a8]*/
|
|
|
|
|
|
|
|
{
|
|
|
|
assert(PyDict_Check(metadata));
|
|
|
|
_PyCompile_CodeUnitMetadata umd;
|
|
|
|
|
|
|
|
umd.u_name = PyDict_GetItemString(metadata, "name");
|
|
|
|
umd.u_qualname = PyDict_GetItemString(metadata, "qualname");
|
|
|
|
|
|
|
|
assert(PyUnicode_Check(umd.u_name));
|
|
|
|
assert(PyUnicode_Check(umd.u_qualname));
|
|
|
|
|
|
|
|
umd.u_consts = PyDict_GetItemString(metadata, "consts");
|
|
|
|
umd.u_names = PyDict_GetItemString(metadata, "names");
|
|
|
|
umd.u_varnames = PyDict_GetItemString(metadata, "varnames");
|
|
|
|
umd.u_cellvars = PyDict_GetItemString(metadata, "cellvars");
|
|
|
|
umd.u_freevars = PyDict_GetItemString(metadata, "freevars");
|
2023-05-09 14:02:14 -03:00
|
|
|
umd.u_fasthidden = PyDict_GetItemString(metadata, "fasthidden");
|
2023-05-01 18:29:30 -03:00
|
|
|
|
2023-05-09 10:33:40 -03:00
|
|
|
assert(PyDict_Check(umd.u_consts));
|
2023-05-01 18:29:30 -03:00
|
|
|
assert(PyDict_Check(umd.u_names));
|
|
|
|
assert(PyDict_Check(umd.u_varnames));
|
|
|
|
assert(PyDict_Check(umd.u_cellvars));
|
|
|
|
assert(PyDict_Check(umd.u_freevars));
|
2023-05-09 14:02:14 -03:00
|
|
|
assert(PyDict_Check(umd.u_fasthidden));
|
2023-05-01 18:29:30 -03:00
|
|
|
|
|
|
|
umd.u_argcount = get_nonnegative_int_from_dict(metadata, "argcount");
|
|
|
|
umd.u_posonlyargcount = get_nonnegative_int_from_dict(metadata, "posonlyargcount");
|
|
|
|
umd.u_kwonlyargcount = get_nonnegative_int_from_dict(metadata, "kwonlyargcount");
|
|
|
|
umd.u_firstlineno = get_nonnegative_int_from_dict(metadata, "firstlineno");
|
|
|
|
|
|
|
|
assert(umd.u_argcount >= 0);
|
|
|
|
assert(umd.u_posonlyargcount >= 0);
|
|
|
|
assert(umd.u_kwonlyargcount >= 0);
|
|
|
|
assert(umd.u_firstlineno >= 0);
|
|
|
|
|
|
|
|
return (PyObject*)_PyCompile_Assemble(&umd, filename, instructions);
|
|
|
|
}
|
|
|
|
|
2022-08-24 07:02:53 -03:00
|
|
|
|
2022-10-26 14:16:30 -03:00
|
|
|
static PyObject *
|
|
|
|
get_interp_settings(PyObject *self, PyObject *args)
|
|
|
|
{
|
|
|
|
int interpid = -1;
|
|
|
|
if (!PyArg_ParseTuple(args, "|i:get_interp_settings", &interpid)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyInterpreterState *interp = NULL;
|
|
|
|
if (interpid < 0) {
|
|
|
|
PyThreadState *tstate = _PyThreadState_GET();
|
|
|
|
interp = tstate ? tstate->interp : _PyInterpreterState_Main();
|
|
|
|
}
|
|
|
|
else if (interpid == 0) {
|
|
|
|
interp = _PyInterpreterState_Main();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PyErr_Format(PyExc_NotImplementedError,
|
|
|
|
"%zd", interpid);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
assert(interp != NULL);
|
|
|
|
|
|
|
|
PyObject *settings = PyDict_New();
|
|
|
|
if (settings == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add the feature flags. */
|
|
|
|
PyObject *flags = PyLong_FromUnsignedLong(interp->feature_flags);
|
|
|
|
if (flags == NULL) {
|
|
|
|
Py_DECREF(settings);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
int res = PyDict_SetItemString(settings, "feature_flags", flags);
|
|
|
|
Py_DECREF(flags);
|
|
|
|
if (res != 0) {
|
|
|
|
Py_DECREF(settings);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2023-05-05 18:59:20 -03:00
|
|
|
/* "own GIL" */
|
|
|
|
PyObject *own_gil = interp->ceval.own_gil ? Py_True : Py_False;
|
|
|
|
if (PyDict_SetItemString(settings, "own_gil", own_gil) != 0) {
|
|
|
|
Py_DECREF(settings);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2022-10-26 14:16:30 -03:00
|
|
|
return settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-02-15 19:05:07 -04:00
|
|
|
static PyObject *
|
|
|
|
clear_extension(PyObject *self, PyObject *args)
|
|
|
|
{
|
|
|
|
PyObject *name = NULL, *filename = NULL;
|
|
|
|
if (!PyArg_ParseTuple(args, "OO:clear_extension", &name, &filename)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (_PyImport_ClearExtension(name, filename) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
|
2023-05-18 06:10:15 -03:00
|
|
|
static PyObject *
|
|
|
|
iframe_getcode(PyObject *self, PyObject *frame)
|
|
|
|
{
|
|
|
|
if (!PyFrame_Check(frame)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "argument must be a frame");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
struct _PyInterpreterFrame *f = ((PyFrameObject *)frame)->f_frame;
|
|
|
|
return PyUnstable_InterpreterFrame_GetCode(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
iframe_getline(PyObject *self, PyObject *frame)
|
|
|
|
{
|
|
|
|
if (!PyFrame_Check(frame)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "argument must be a frame");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
struct _PyInterpreterFrame *f = ((PyFrameObject *)frame)->f_frame;
|
|
|
|
return PyLong_FromLong(PyUnstable_InterpreterFrame_GetLine(f));
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
iframe_getlasti(PyObject *self, PyObject *frame)
|
|
|
|
{
|
|
|
|
if (!PyFrame_Check(frame)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "argument must be a frame");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
struct _PyInterpreterFrame *f = ((PyFrameObject *)frame)->f_frame;
|
|
|
|
return PyLong_FromLong(PyUnstable_InterpreterFrame_GetLasti(f));
|
|
|
|
}
|
2023-02-15 19:05:07 -04:00
|
|
|
|
2023-01-12 16:42:03 -04:00
|
|
|
static PyMethodDef module_functions[] = {
|
2019-04-18 06:37:26 -03:00
|
|
|
{"get_configs", get_configs, METH_NOARGS},
|
2020-03-13 09:07:31 -03:00
|
|
|
{"get_recursion_depth", get_recursion_depth, METH_NOARGS},
|
2020-04-17 12:47:20 -03:00
|
|
|
{"test_bswap", test_bswap, METH_NOARGS},
|
2020-06-08 11:30:33 -03:00
|
|
|
{"test_popcount", test_popcount, METH_NOARGS},
|
2020-06-15 09:33:48 -03:00
|
|
|
{"test_bit_length", test_bit_length, METH_NOARGS},
|
2020-05-14 16:55:47 -03:00
|
|
|
{"test_hashtable", test_hashtable, METH_NOARGS},
|
2020-11-05 13:12:33 -04:00
|
|
|
{"get_config", test_get_config, METH_NOARGS},
|
|
|
|
{"set_config", test_set_config, METH_O},
|
2021-12-02 20:08:42 -04:00
|
|
|
{"reset_path_config", test_reset_path_config, METH_NOARGS},
|
2020-12-22 22:41:08 -04:00
|
|
|
{"test_atomic_funcs", test_atomic_funcs, METH_NOARGS},
|
2021-05-03 12:47:27 -03:00
|
|
|
{"test_edit_cost", test_edit_cost, METH_NOARGS},
|
2021-10-22 20:20:03 -03:00
|
|
|
{"normalize_path", normalize_path, METH_O, NULL},
|
2021-12-02 20:08:42 -04:00
|
|
|
{"get_getpath_codeobject", get_getpath_codeobject, METH_NOARGS, NULL},
|
2022-01-11 06:56:16 -04:00
|
|
|
{"EncodeLocaleEx", encode_locale_ex, METH_VARARGS},
|
|
|
|
{"DecodeLocaleEx", decode_locale_ex, METH_VARARGS},
|
2022-05-04 12:31:21 -03:00
|
|
|
{"set_eval_frame_default", set_eval_frame_default, METH_NOARGS, NULL},
|
|
|
|
{"set_eval_frame_record", set_eval_frame_record, METH_O, NULL},
|
2022-11-14 09:56:40 -04:00
|
|
|
_TESTINTERNALCAPI_COMPILER_CODEGEN_METHODDEF
|
2022-08-24 07:02:53 -03:00
|
|
|
_TESTINTERNALCAPI_OPTIMIZE_CFG_METHODDEF
|
2023-05-01 18:29:30 -03:00
|
|
|
_TESTINTERNALCAPI_ASSEMBLE_CODE_OBJECT_METHODDEF
|
2022-10-26 14:16:30 -03:00
|
|
|
{"get_interp_settings", get_interp_settings, METH_VARARGS, NULL},
|
2023-02-15 19:05:07 -04:00
|
|
|
{"clear_extension", clear_extension, METH_VARARGS, NULL},
|
2023-05-18 06:10:15 -03:00
|
|
|
{"iframe_getcode", iframe_getcode, METH_O, NULL},
|
|
|
|
{"iframe_getline", iframe_getline, METH_O, NULL},
|
|
|
|
{"iframe_getlasti", iframe_getlasti, METH_O, NULL},
|
2019-04-18 06:37:26 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-01-12 16:42:03 -04:00
|
|
|
/* initialization function */
|
2019-04-18 06:37:26 -03:00
|
|
|
|
2023-01-12 16:42:03 -04:00
|
|
|
static int
|
|
|
|
module_exec(PyObject *module)
|
2019-04-18 06:37:26 -03:00
|
|
|
{
|
2020-04-13 06:38:42 -03:00
|
|
|
if (PyModule_AddObject(module, "SIZEOF_PYGC_HEAD",
|
|
|
|
PyLong_FromSsize_t(sizeof(PyGC_Head))) < 0) {
|
2023-01-12 16:42:03 -04:00
|
|
|
return 1;
|
2020-04-13 06:38:42 -03:00
|
|
|
}
|
|
|
|
|
2023-01-12 16:42:03 -04:00
|
|
|
return 0;
|
|
|
|
}
|
2020-04-13 06:38:42 -03:00
|
|
|
|
2023-01-12 16:42:03 -04:00
|
|
|
static struct PyModuleDef_Slot module_slots[] = {
|
|
|
|
{Py_mod_exec, module_exec},
|
2023-05-05 18:11:27 -03:00
|
|
|
{Py_mod_multiple_interpreters, Py_MOD_PER_INTERPRETER_GIL_SUPPORTED},
|
2023-01-12 16:42:03 -04:00
|
|
|
{0, NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
module_traverse(PyObject *module, visitproc visit, void *arg)
|
|
|
|
{
|
|
|
|
module_state *state = get_module_state(module);
|
|
|
|
assert(state != NULL);
|
|
|
|
traverse_module_state(state, visit, arg);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
module_clear(PyObject *module)
|
|
|
|
{
|
|
|
|
module_state *state = get_module_state(module);
|
|
|
|
assert(state != NULL);
|
|
|
|
(void)clear_module_state(state);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
module_free(void *module)
|
|
|
|
{
|
|
|
|
module_state *state = get_module_state(module);
|
|
|
|
assert(state != NULL);
|
|
|
|
(void)clear_module_state(state);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct PyModuleDef _testcapimodule = {
|
|
|
|
.m_base = PyModuleDef_HEAD_INIT,
|
|
|
|
.m_name = MODULE_NAME,
|
|
|
|
.m_doc = NULL,
|
|
|
|
.m_size = sizeof(module_state),
|
|
|
|
.m_methods = module_functions,
|
|
|
|
.m_slots = module_slots,
|
|
|
|
.m_traverse = module_traverse,
|
|
|
|
.m_clear = module_clear,
|
|
|
|
.m_free = (freefunc)module_free,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
PyMODINIT_FUNC
|
|
|
|
PyInit__testinternalcapi(void)
|
|
|
|
{
|
|
|
|
return PyModuleDef_Init(&_testcapimodule);
|
2019-04-18 06:37:26 -03:00
|
|
|
}
|