objective-lol 0.0.1__cp310-cp310-macosx_11_0_arm64.whl → 0.0.2__cp310-cp310-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- objective_lol/_api.cpython-310-darwin.h +81 -81
- objective_lol/_api.cpython-310-darwin.so +0 -0
- objective_lol/api.c +847 -847
- objective_lol/api.go +543 -543
- objective_lol/api.py +428 -428
- objective_lol/api_go.h +81 -81
- objective_lol/build.py +70 -70
- {objective_lol-0.0.1.dist-info → objective_lol-0.0.2.dist-info}/METADATA +17 -1
- objective_lol-0.0.2.dist-info/RECORD +14 -0
- objective_lol-0.0.1.dist-info/RECORD +0 -14
- {objective_lol-0.0.1.dist-info → objective_lol-0.0.2.dist-info}/WHEEL +0 -0
- {objective_lol-0.0.1.dist-info → objective_lol-0.0.2.dist-info}/top_level.txt +0 -0
objective_lol/api.c
CHANGED
@@ -3247,20 +3247,20 @@ PyObject * _wrap__api_Map_string_api_GoValue_keys(PyObject * PYBINDGEN_UNUSED(du
|
|
3247
3247
|
|
3248
3248
|
|
3249
3249
|
PyObject *
|
3250
|
-
|
3250
|
+
_wrap__api_api_VMError_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
3251
3251
|
{
|
3252
3252
|
PyObject *py_retval;
|
3253
3253
|
int64_t retval;
|
3254
3254
|
|
3255
|
-
retval =
|
3255
|
+
retval = api_VMError_CTor();
|
3256
3256
|
py_retval = Py_BuildValue((char *) "L", retval);
|
3257
3257
|
return py_retval;
|
3258
3258
|
}
|
3259
|
-
PyObject *
|
3259
|
+
PyObject * _wrap__api_api_VMError_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
3260
3260
|
|
3261
3261
|
|
3262
3262
|
PyObject *
|
3263
|
-
|
3263
|
+
_wrap__api_api_VMError_Type_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3264
3264
|
{
|
3265
3265
|
PyObject *py_retval;
|
3266
3266
|
char *retval;
|
@@ -3270,15 +3270,15 @@ _wrap__api_api_ClassVariable_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObje
|
|
3270
3270
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
3271
3271
|
return NULL;
|
3272
3272
|
}
|
3273
|
-
retval =
|
3273
|
+
retval = api_VMError_Type_Get(handle);
|
3274
3274
|
py_retval = Py_BuildValue((char *) "s", retval);
|
3275
3275
|
return py_retval;
|
3276
3276
|
}
|
3277
|
-
PyObject *
|
3277
|
+
PyObject * _wrap__api_api_VMError_Type_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3278
3278
|
|
3279
3279
|
|
3280
3280
|
PyObject *
|
3281
|
-
|
3281
|
+
_wrap__api_api_VMError_Type_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3282
3282
|
{
|
3283
3283
|
PyObject *py_retval;
|
3284
3284
|
int64_t handle;
|
@@ -3288,149 +3288,127 @@ _wrap__api_api_ClassVariable_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObje
|
|
3288
3288
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
3289
3289
|
return NULL;
|
3290
3290
|
}
|
3291
|
-
|
3291
|
+
api_VMError_Type_Set(handle, val);
|
3292
3292
|
Py_INCREF(Py_None);
|
3293
3293
|
py_retval = Py_None;
|
3294
3294
|
return py_retval;
|
3295
3295
|
}
|
3296
|
-
PyObject *
|
3296
|
+
PyObject * _wrap__api_api_VMError_Type_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3297
3297
|
|
3298
3298
|
|
3299
3299
|
PyObject *
|
3300
|
-
|
3300
|
+
_wrap__api_api_VMError_Message_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3301
3301
|
{
|
3302
3302
|
PyObject *py_retval;
|
3303
|
-
|
3303
|
+
char *retval;
|
3304
3304
|
int64_t handle;
|
3305
3305
|
const char *keywords[] = {"handle", NULL};
|
3306
3306
|
|
3307
3307
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
3308
3308
|
return NULL;
|
3309
3309
|
}
|
3310
|
-
retval =
|
3311
|
-
py_retval = Py_BuildValue((char *) "
|
3310
|
+
retval = api_VMError_Message_Get(handle);
|
3311
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
3312
3312
|
return py_retval;
|
3313
3313
|
}
|
3314
|
-
PyObject *
|
3314
|
+
PyObject * _wrap__api_api_VMError_Message_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3315
3315
|
|
3316
3316
|
|
3317
3317
|
PyObject *
|
3318
|
-
|
3318
|
+
_wrap__api_api_VMError_Message_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3319
3319
|
{
|
3320
3320
|
PyObject *py_retval;
|
3321
3321
|
int64_t handle;
|
3322
|
-
|
3322
|
+
char *val;
|
3323
3323
|
const char *keywords[] = {"handle", "val", NULL};
|
3324
3324
|
|
3325
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
3325
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
3326
3326
|
return NULL;
|
3327
3327
|
}
|
3328
|
-
|
3328
|
+
api_VMError_Message_Set(handle, val);
|
3329
3329
|
Py_INCREF(Py_None);
|
3330
3330
|
py_retval = Py_None;
|
3331
3331
|
return py_retval;
|
3332
3332
|
}
|
3333
|
-
PyObject *
|
3333
|
+
PyObject * _wrap__api_api_VMError_Message_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3334
3334
|
|
3335
3335
|
|
3336
3336
|
PyObject *
|
3337
|
-
|
3337
|
+
_wrap__api_api_VMError_Source_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3338
3338
|
{
|
3339
3339
|
PyObject *py_retval;
|
3340
|
-
|
3340
|
+
int64_t retval;
|
3341
3341
|
int64_t handle;
|
3342
3342
|
const char *keywords[] = {"handle", NULL};
|
3343
3343
|
|
3344
3344
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
3345
3345
|
return NULL;
|
3346
3346
|
}
|
3347
|
-
retval =
|
3348
|
-
py_retval = Py_BuildValue((char *) "
|
3347
|
+
retval = api_VMError_Source_Get(handle);
|
3348
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
3349
3349
|
return py_retval;
|
3350
3350
|
}
|
3351
|
-
PyObject *
|
3351
|
+
PyObject * _wrap__api_api_VMError_Source_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3352
3352
|
|
3353
3353
|
|
3354
3354
|
PyObject *
|
3355
|
-
|
3355
|
+
_wrap__api_api_VMError_Source_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3356
3356
|
{
|
3357
3357
|
PyObject *py_retval;
|
3358
3358
|
int64_t handle;
|
3359
|
-
|
3360
|
-
PyObject *py_val;
|
3359
|
+
int64_t val;
|
3361
3360
|
const char *keywords[] = {"handle", "val", NULL};
|
3362
3361
|
|
3363
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
3362
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
3364
3363
|
return NULL;
|
3365
3364
|
}
|
3366
|
-
|
3367
|
-
api_ClassVariable_Locked_Set(handle, val);
|
3365
|
+
api_VMError_Source_Set(handle, val);
|
3368
3366
|
Py_INCREF(Py_None);
|
3369
3367
|
py_retval = Py_None;
|
3370
3368
|
return py_retval;
|
3371
3369
|
}
|
3372
|
-
PyObject *
|
3370
|
+
PyObject * _wrap__api_api_VMError_Source_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3373
3371
|
|
3374
3372
|
|
3375
3373
|
PyObject *
|
3376
|
-
|
3374
|
+
_wrap__api_api_VMError_Duration_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3377
3375
|
{
|
3378
3376
|
PyObject *py_retval;
|
3379
3377
|
int64_t retval;
|
3378
|
+
int64_t handle;
|
3379
|
+
const char *keywords[] = {"handle", NULL};
|
3380
3380
|
|
3381
|
-
|
3382
|
-
py_retval = Py_BuildValue((char *) "L", retval);
|
3383
|
-
return py_retval;
|
3384
|
-
}
|
3385
|
-
PyObject * _wrap__api_api_GoValue_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
3386
|
-
|
3387
|
-
|
3388
|
-
PyObject *
|
3389
|
-
_wrap__api_api_GoValue_ID(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3390
|
-
{
|
3391
|
-
PyObject *py_retval;
|
3392
|
-
char *retval;
|
3393
|
-
int64_t _handle;
|
3394
|
-
const char *keywords[] = {"_handle", NULL};
|
3395
|
-
|
3396
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
3397
|
-
return NULL;
|
3398
|
-
}
|
3399
|
-
retval = api_GoValue_ID(_handle);
|
3400
|
-
if (PyErr_Occurred()) {
|
3401
|
-
if (retval != NULL) free(retval);
|
3381
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
3402
3382
|
return NULL;
|
3403
3383
|
}
|
3404
|
-
|
3405
|
-
|
3384
|
+
retval = api_VMError_Duration_Get(handle);
|
3385
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
3406
3386
|
return py_retval;
|
3407
3387
|
}
|
3408
|
-
PyObject *
|
3388
|
+
PyObject * _wrap__api_api_VMError_Duration_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3409
3389
|
|
3410
3390
|
|
3411
3391
|
PyObject *
|
3412
|
-
|
3392
|
+
_wrap__api_api_VMError_Duration_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3413
3393
|
{
|
3414
3394
|
PyObject *py_retval;
|
3415
|
-
int64_t
|
3416
|
-
int64_t
|
3417
|
-
const char *keywords[] = {"
|
3395
|
+
int64_t handle;
|
3396
|
+
int64_t val;
|
3397
|
+
const char *keywords[] = {"handle", "val", NULL};
|
3418
3398
|
|
3419
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
3420
|
-
return NULL;
|
3421
|
-
}
|
3422
|
-
retval = api_GoValue_MarshalJSON(_handle);
|
3423
|
-
if (PyErr_Occurred()) {
|
3399
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
3424
3400
|
return NULL;
|
3425
3401
|
}
|
3426
|
-
|
3402
|
+
api_VMError_Duration_Set(handle, val);
|
3403
|
+
Py_INCREF(Py_None);
|
3404
|
+
py_retval = Py_None;
|
3427
3405
|
return py_retval;
|
3428
3406
|
}
|
3429
|
-
PyObject *
|
3407
|
+
PyObject * _wrap__api_api_VMError_Duration_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3430
3408
|
|
3431
3409
|
|
3432
3410
|
PyObject *
|
3433
|
-
|
3411
|
+
_wrap__api_api_VMError_Error(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3434
3412
|
{
|
3435
3413
|
PyObject *py_retval;
|
3436
3414
|
char *retval;
|
@@ -3440,7 +3418,7 @@ _wrap__api_api_GoValue_Type(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args,
|
|
3440
3418
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
3441
3419
|
return NULL;
|
3442
3420
|
}
|
3443
|
-
retval =
|
3421
|
+
retval = api_VMError_Error(_handle);
|
3444
3422
|
if (PyErr_Occurred()) {
|
3445
3423
|
if (retval != NULL) free(retval);
|
3446
3424
|
return NULL;
|
@@ -3449,76 +3427,53 @@ _wrap__api_api_GoValue_Type(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args,
|
|
3449
3427
|
free(retval);
|
3450
3428
|
return py_retval;
|
3451
3429
|
}
|
3452
|
-
PyObject *
|
3453
|
-
|
3454
|
-
|
3455
|
-
PyObject *
|
3456
|
-
_wrap__api_api_GoValue_Int(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3457
|
-
{
|
3458
|
-
PyObject *py_retval;
|
3459
|
-
int64_t retval;
|
3460
|
-
int64_t _handle;
|
3461
|
-
const char *keywords[] = {"_handle", NULL};
|
3462
|
-
|
3463
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
3464
|
-
return NULL;
|
3465
|
-
}
|
3466
|
-
retval = api_GoValue_Int(_handle);
|
3467
|
-
if (PyErr_Occurred()) {
|
3468
|
-
return NULL;
|
3469
|
-
}
|
3470
|
-
py_retval = Py_BuildValue((char *) "L", retval);
|
3471
|
-
return py_retval;
|
3472
|
-
}
|
3473
|
-
PyObject * _wrap__api_api_GoValue_Int(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3430
|
+
PyObject * _wrap__api_api_VMError_Error(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3474
3431
|
|
3475
3432
|
|
3476
3433
|
PyObject *
|
3477
|
-
|
3434
|
+
_wrap__api_api_VMError_Unwrap(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3478
3435
|
{
|
3479
3436
|
PyObject *py_retval;
|
3480
|
-
|
3437
|
+
char *retval;
|
3481
3438
|
int64_t _handle;
|
3482
3439
|
const char *keywords[] = {"_handle", NULL};
|
3483
3440
|
|
3484
3441
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
3485
3442
|
return NULL;
|
3486
3443
|
}
|
3487
|
-
retval =
|
3444
|
+
retval = api_VMError_Unwrap(_handle);
|
3488
3445
|
if (PyErr_Occurred()) {
|
3489
3446
|
return NULL;
|
3490
3447
|
}
|
3491
|
-
py_retval = Py_BuildValue((char *) "
|
3448
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
3492
3449
|
return py_retval;
|
3493
3450
|
}
|
3494
|
-
PyObject *
|
3451
|
+
PyObject * _wrap__api_api_VMError_Unwrap(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3495
3452
|
|
3496
3453
|
|
3497
3454
|
PyObject *
|
3498
|
-
|
3455
|
+
_wrap__api_api_VMError_IsCompileError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3499
3456
|
{
|
3500
3457
|
PyObject *py_retval;
|
3501
|
-
|
3458
|
+
bool retval;
|
3502
3459
|
int64_t _handle;
|
3503
3460
|
const char *keywords[] = {"_handle", NULL};
|
3504
3461
|
|
3505
3462
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
3506
3463
|
return NULL;
|
3507
3464
|
}
|
3508
|
-
retval =
|
3465
|
+
retval = api_VMError_IsCompileError(_handle);
|
3509
3466
|
if (PyErr_Occurred()) {
|
3510
|
-
if (retval != NULL) free(retval);
|
3511
3467
|
return NULL;
|
3512
3468
|
}
|
3513
|
-
py_retval = Py_BuildValue((char *) "
|
3514
|
-
free(retval);
|
3469
|
+
py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
|
3515
3470
|
return py_retval;
|
3516
3471
|
}
|
3517
|
-
PyObject *
|
3472
|
+
PyObject * _wrap__api_api_VMError_IsCompileError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3518
3473
|
|
3519
3474
|
|
3520
3475
|
PyObject *
|
3521
|
-
|
3476
|
+
_wrap__api_api_VMError_IsRuntimeError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3522
3477
|
{
|
3523
3478
|
PyObject *py_retval;
|
3524
3479
|
bool retval;
|
@@ -3528,94 +3483,94 @@ _wrap__api_api_GoValue_Bool(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args,
|
|
3528
3483
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
3529
3484
|
return NULL;
|
3530
3485
|
}
|
3531
|
-
retval =
|
3486
|
+
retval = api_VMError_IsRuntimeError(_handle);
|
3532
3487
|
if (PyErr_Occurred()) {
|
3533
3488
|
return NULL;
|
3534
3489
|
}
|
3535
3490
|
py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
|
3536
3491
|
return py_retval;
|
3537
3492
|
}
|
3538
|
-
PyObject *
|
3493
|
+
PyObject * _wrap__api_api_VMError_IsRuntimeError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3539
3494
|
|
3540
3495
|
|
3541
3496
|
PyObject *
|
3542
|
-
|
3497
|
+
_wrap__api_api_VMError_IsTimeoutError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3543
3498
|
{
|
3544
3499
|
PyObject *py_retval;
|
3545
|
-
|
3500
|
+
bool retval;
|
3546
3501
|
int64_t _handle;
|
3547
3502
|
const char *keywords[] = {"_handle", NULL};
|
3548
3503
|
|
3549
3504
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
3550
3505
|
return NULL;
|
3551
3506
|
}
|
3552
|
-
retval =
|
3507
|
+
retval = api_VMError_IsTimeoutError(_handle);
|
3553
3508
|
if (PyErr_Occurred()) {
|
3554
3509
|
return NULL;
|
3555
3510
|
}
|
3556
|
-
py_retval = Py_BuildValue((char *) "
|
3511
|
+
py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
|
3557
3512
|
return py_retval;
|
3558
3513
|
}
|
3559
|
-
PyObject *
|
3514
|
+
PyObject * _wrap__api_api_VMError_IsTimeoutError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3560
3515
|
|
3561
3516
|
|
3562
3517
|
PyObject *
|
3563
|
-
|
3518
|
+
_wrap__api_api_VMError_IsConversionError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3564
3519
|
{
|
3565
3520
|
PyObject *py_retval;
|
3566
|
-
|
3521
|
+
bool retval;
|
3567
3522
|
int64_t _handle;
|
3568
3523
|
const char *keywords[] = {"_handle", NULL};
|
3569
3524
|
|
3570
3525
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
3571
3526
|
return NULL;
|
3572
3527
|
}
|
3573
|
-
retval =
|
3528
|
+
retval = api_VMError_IsConversionError(_handle);
|
3574
3529
|
if (PyErr_Occurred()) {
|
3575
3530
|
return NULL;
|
3576
3531
|
}
|
3577
|
-
py_retval = Py_BuildValue((char *) "
|
3532
|
+
py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
|
3578
3533
|
return py_retval;
|
3579
3534
|
}
|
3580
|
-
PyObject *
|
3535
|
+
PyObject * _wrap__api_api_VMError_IsConversionError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3581
3536
|
|
3582
3537
|
|
3583
3538
|
PyObject *
|
3584
|
-
|
3539
|
+
_wrap__api_api_VMError_IsConfigError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3585
3540
|
{
|
3586
3541
|
PyObject *py_retval;
|
3587
|
-
|
3542
|
+
bool retval;
|
3588
3543
|
int64_t _handle;
|
3589
3544
|
const char *keywords[] = {"_handle", NULL};
|
3590
3545
|
|
3591
3546
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
3592
3547
|
return NULL;
|
3593
3548
|
}
|
3594
|
-
retval =
|
3549
|
+
retval = api_VMError_IsConfigError(_handle);
|
3595
3550
|
if (PyErr_Occurred()) {
|
3596
3551
|
return NULL;
|
3597
3552
|
}
|
3598
|
-
py_retval = Py_BuildValue((char *) "
|
3553
|
+
py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
|
3599
3554
|
return py_retval;
|
3600
3555
|
}
|
3601
|
-
PyObject *
|
3556
|
+
PyObject * _wrap__api_api_VMError_IsConfigError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3602
3557
|
|
3603
3558
|
|
3604
3559
|
PyObject *
|
3605
|
-
|
3560
|
+
_wrap__api_api_ClassMethod_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
3606
3561
|
{
|
3607
3562
|
PyObject *py_retval;
|
3608
3563
|
int64_t retval;
|
3609
3564
|
|
3610
|
-
retval =
|
3565
|
+
retval = api_ClassMethod_CTor();
|
3611
3566
|
py_retval = Py_BuildValue((char *) "L", retval);
|
3612
3567
|
return py_retval;
|
3613
3568
|
}
|
3614
|
-
PyObject *
|
3569
|
+
PyObject * _wrap__api_api_ClassMethod_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
3615
3570
|
|
3616
3571
|
|
3617
3572
|
PyObject *
|
3618
|
-
|
3573
|
+
_wrap__api_api_ClassMethod_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3619
3574
|
{
|
3620
3575
|
PyObject *py_retval;
|
3621
3576
|
char *retval;
|
@@ -3625,15 +3580,15 @@ _wrap__api_api_SourceLocation_Filename_Get(PyObject * PYBINDGEN_UNUSED(dummy), P
|
|
3625
3580
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
3626
3581
|
return NULL;
|
3627
3582
|
}
|
3628
|
-
retval =
|
3583
|
+
retval = api_ClassMethod_Name_Get(handle);
|
3629
3584
|
py_retval = Py_BuildValue((char *) "s", retval);
|
3630
3585
|
return py_retval;
|
3631
3586
|
}
|
3632
|
-
PyObject *
|
3587
|
+
PyObject * _wrap__api_api_ClassMethod_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3633
3588
|
|
3634
3589
|
|
3635
3590
|
PyObject *
|
3636
|
-
|
3591
|
+
_wrap__api_api_ClassMethod_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3637
3592
|
{
|
3638
3593
|
PyObject *py_retval;
|
3639
3594
|
int64_t handle;
|
@@ -3643,16 +3598,16 @@ _wrap__api_api_SourceLocation_Filename_Set(PyObject * PYBINDGEN_UNUSED(dummy), P
|
|
3643
3598
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
3644
3599
|
return NULL;
|
3645
3600
|
}
|
3646
|
-
|
3601
|
+
api_ClassMethod_Name_Set(handle, val);
|
3647
3602
|
Py_INCREF(Py_None);
|
3648
3603
|
py_retval = Py_None;
|
3649
3604
|
return py_retval;
|
3650
3605
|
}
|
3651
|
-
PyObject *
|
3606
|
+
PyObject * _wrap__api_api_ClassMethod_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3652
3607
|
|
3653
3608
|
|
3654
3609
|
PyObject *
|
3655
|
-
|
3610
|
+
_wrap__api_api_ClassMethod_Argc_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3656
3611
|
{
|
3657
3612
|
PyObject *py_retval;
|
3658
3613
|
int64_t retval;
|
@@ -3662,15 +3617,15 @@ _wrap__api_api_SourceLocation_Line_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObj
|
|
3662
3617
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
3663
3618
|
return NULL;
|
3664
3619
|
}
|
3665
|
-
retval =
|
3620
|
+
retval = api_ClassMethod_Argc_Get(handle);
|
3666
3621
|
py_retval = Py_BuildValue((char *) "L", retval);
|
3667
3622
|
return py_retval;
|
3668
3623
|
}
|
3669
|
-
PyObject *
|
3624
|
+
PyObject * _wrap__api_api_ClassMethod_Argc_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3670
3625
|
|
3671
3626
|
|
3672
3627
|
PyObject *
|
3673
|
-
|
3628
|
+
_wrap__api_api_ClassMethod_Argc_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3674
3629
|
{
|
3675
3630
|
PyObject *py_retval;
|
3676
3631
|
int64_t handle;
|
@@ -3680,53 +3635,270 @@ _wrap__api_api_SourceLocation_Line_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObj
|
|
3680
3635
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
3681
3636
|
return NULL;
|
3682
3637
|
}
|
3683
|
-
|
3638
|
+
api_ClassMethod_Argc_Set(handle, val);
|
3684
3639
|
Py_INCREF(Py_None);
|
3685
3640
|
py_retval = Py_None;
|
3686
3641
|
return py_retval;
|
3687
3642
|
}
|
3688
|
-
PyObject *
|
3643
|
+
PyObject * _wrap__api_api_ClassMethod_Argc_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3689
3644
|
|
3690
3645
|
|
3691
3646
|
PyObject *
|
3692
|
-
|
3647
|
+
_wrap__api_api_UnknownFunctionHandler_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
3693
3648
|
{
|
3694
3649
|
PyObject *py_retval;
|
3695
3650
|
int64_t retval;
|
3696
|
-
int64_t handle;
|
3697
|
-
const char *keywords[] = {"handle", NULL};
|
3698
3651
|
|
3699
|
-
|
3700
|
-
return NULL;
|
3701
|
-
}
|
3702
|
-
retval = api_SourceLocation_Column_Get(handle);
|
3652
|
+
retval = api_UnknownFunctionHandler_CTor();
|
3703
3653
|
py_retval = Py_BuildValue((char *) "L", retval);
|
3704
3654
|
return py_retval;
|
3705
3655
|
}
|
3706
|
-
PyObject *
|
3656
|
+
PyObject * _wrap__api_api_UnknownFunctionHandler_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
3707
3657
|
|
3708
3658
|
|
3709
3659
|
PyObject *
|
3710
|
-
|
3660
|
+
_wrap__api_api_VM_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
3711
3661
|
{
|
3712
3662
|
PyObject *py_retval;
|
3713
|
-
int64_t
|
3714
|
-
int64_t val;
|
3715
|
-
const char *keywords[] = {"handle", "val", NULL};
|
3663
|
+
int64_t retval;
|
3716
3664
|
|
3717
|
-
|
3718
|
-
|
3719
|
-
}
|
3720
|
-
api_SourceLocation_Column_Set(handle, val);
|
3721
|
-
Py_INCREF(Py_None);
|
3722
|
-
py_retval = Py_None;
|
3665
|
+
retval = api_VM_CTor();
|
3666
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
3723
3667
|
return py_retval;
|
3724
3668
|
}
|
3725
|
-
PyObject *
|
3669
|
+
PyObject * _wrap__api_api_VM_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
3726
3670
|
|
3727
3671
|
|
3728
3672
|
PyObject *
|
3729
|
-
|
3673
|
+
_wrap__api_api_VM_GetCompatibilityShim(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3674
|
+
{
|
3675
|
+
PyObject *py_retval;
|
3676
|
+
int64_t retval;
|
3677
|
+
int64_t _handle;
|
3678
|
+
const char *keywords[] = {"_handle", NULL};
|
3679
|
+
|
3680
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
3681
|
+
return NULL;
|
3682
|
+
}
|
3683
|
+
retval = api_VM_GetCompatibilityShim(_handle);
|
3684
|
+
if (PyErr_Occurred()) {
|
3685
|
+
return NULL;
|
3686
|
+
}
|
3687
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
3688
|
+
return py_retval;
|
3689
|
+
}
|
3690
|
+
PyObject * _wrap__api_api_VM_GetCompatibilityShim(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3691
|
+
|
3692
|
+
|
3693
|
+
PyObject *
|
3694
|
+
_wrap__api_api_VM_Execute(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3695
|
+
{
|
3696
|
+
PyObject *py_retval;
|
3697
|
+
int64_t retval;
|
3698
|
+
int64_t _handle;
|
3699
|
+
char *code;
|
3700
|
+
const char *keywords[] = {"_handle", "code", NULL};
|
3701
|
+
|
3702
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &code)) {
|
3703
|
+
return NULL;
|
3704
|
+
}
|
3705
|
+
retval = api_VM_Execute(_handle, code);
|
3706
|
+
if (PyErr_Occurred()) {
|
3707
|
+
return NULL;
|
3708
|
+
}
|
3709
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
3710
|
+
return py_retval;
|
3711
|
+
}
|
3712
|
+
PyObject * _wrap__api_api_VM_Execute(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3713
|
+
|
3714
|
+
|
3715
|
+
PyObject *
|
3716
|
+
_wrap__api_api_VM_ExecuteWithContext(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3717
|
+
{
|
3718
|
+
PyObject *py_retval;
|
3719
|
+
int64_t retval;
|
3720
|
+
int64_t _handle;
|
3721
|
+
int64_t ctx;
|
3722
|
+
char *code;
|
3723
|
+
const char *keywords[] = {"_handle", "ctx", "code", NULL};
|
3724
|
+
|
3725
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LLs", (char **) keywords, &_handle, &ctx, &code)) {
|
3726
|
+
return NULL;
|
3727
|
+
}
|
3728
|
+
retval = api_VM_ExecuteWithContext(_handle, ctx, code);
|
3729
|
+
if (PyErr_Occurred()) {
|
3730
|
+
return NULL;
|
3731
|
+
}
|
3732
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
3733
|
+
return py_retval;
|
3734
|
+
}
|
3735
|
+
PyObject * _wrap__api_api_VM_ExecuteWithContext(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3736
|
+
|
3737
|
+
|
3738
|
+
PyObject *
|
3739
|
+
_wrap__api_api_VM_NewObjectInstance(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3740
|
+
{
|
3741
|
+
PyObject *py_retval;
|
3742
|
+
int64_t retval;
|
3743
|
+
int64_t _handle;
|
3744
|
+
char *className;
|
3745
|
+
const char *keywords[] = {"_handle", "className", NULL};
|
3746
|
+
|
3747
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &className)) {
|
3748
|
+
return NULL;
|
3749
|
+
}
|
3750
|
+
retval = api_VM_NewObjectInstance(_handle, className);
|
3751
|
+
if (PyErr_Occurred()) {
|
3752
|
+
return NULL;
|
3753
|
+
}
|
3754
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
3755
|
+
return py_retval;
|
3756
|
+
}
|
3757
|
+
PyObject * _wrap__api_api_VM_NewObjectInstance(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3758
|
+
|
3759
|
+
|
3760
|
+
PyObject *
|
3761
|
+
_wrap__api_api_VM_Call(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3762
|
+
{
|
3763
|
+
PyObject *py_retval;
|
3764
|
+
int64_t retval;
|
3765
|
+
int64_t _handle;
|
3766
|
+
char *functionName;
|
3767
|
+
int64_t args2;
|
3768
|
+
const char *keywords[] = {"_handle", "functionName", "args", NULL};
|
3769
|
+
|
3770
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsL", (char **) keywords, &_handle, &functionName, &args2)) {
|
3771
|
+
return NULL;
|
3772
|
+
}
|
3773
|
+
retval = api_VM_Call(_handle, functionName, args2);
|
3774
|
+
if (PyErr_Occurred()) {
|
3775
|
+
return NULL;
|
3776
|
+
}
|
3777
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
3778
|
+
return py_retval;
|
3779
|
+
}
|
3780
|
+
PyObject * _wrap__api_api_VM_Call(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3781
|
+
|
3782
|
+
|
3783
|
+
PyObject *
|
3784
|
+
_wrap__api_api_VM_CallMethod(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3785
|
+
{
|
3786
|
+
PyObject *py_retval;
|
3787
|
+
int64_t retval;
|
3788
|
+
int64_t _handle;
|
3789
|
+
int64_t object;
|
3790
|
+
char *methodName;
|
3791
|
+
int64_t args2;
|
3792
|
+
const char *keywords[] = {"_handle", "object", "methodName", "args", NULL};
|
3793
|
+
|
3794
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LLsL", (char **) keywords, &_handle, &object, &methodName, &args2)) {
|
3795
|
+
return NULL;
|
3796
|
+
}
|
3797
|
+
retval = api_VM_CallMethod(_handle, object, methodName, args2);
|
3798
|
+
if (PyErr_Occurred()) {
|
3799
|
+
return NULL;
|
3800
|
+
}
|
3801
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
3802
|
+
return py_retval;
|
3803
|
+
}
|
3804
|
+
PyObject * _wrap__api_api_VM_CallMethod(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3805
|
+
|
3806
|
+
|
3807
|
+
PyObject *
|
3808
|
+
_wrap__api_api_VM_DefineVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3809
|
+
{
|
3810
|
+
PyObject *py_retval;
|
3811
|
+
char *retval;
|
3812
|
+
int64_t _handle;
|
3813
|
+
char *name;
|
3814
|
+
int64_t value;
|
3815
|
+
bool constant;
|
3816
|
+
PyObject *py_constant;
|
3817
|
+
const char *keywords[] = {"_handle", "name", "value", "constant", NULL};
|
3818
|
+
|
3819
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsLO", (char **) keywords, &_handle, &name, &value, &py_constant)) {
|
3820
|
+
return NULL;
|
3821
|
+
}
|
3822
|
+
constant = (bool) PyObject_IsTrue(py_constant);
|
3823
|
+
retval = api_VM_DefineVariable(_handle, name, value, constant);
|
3824
|
+
if (PyErr_Occurred()) {
|
3825
|
+
return NULL;
|
3826
|
+
}
|
3827
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
3828
|
+
return py_retval;
|
3829
|
+
}
|
3830
|
+
PyObject * _wrap__api_api_VM_DefineVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3831
|
+
|
3832
|
+
|
3833
|
+
PyObject *
|
3834
|
+
_wrap__api_api_VM_SetVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3835
|
+
{
|
3836
|
+
PyObject *py_retval;
|
3837
|
+
char *retval;
|
3838
|
+
int64_t _handle;
|
3839
|
+
char *variableName;
|
3840
|
+
int64_t value;
|
3841
|
+
const char *keywords[] = {"_handle", "variableName", "value", NULL};
|
3842
|
+
|
3843
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LsL", (char **) keywords, &_handle, &variableName, &value)) {
|
3844
|
+
return NULL;
|
3845
|
+
}
|
3846
|
+
retval = api_VM_SetVariable(_handle, variableName, value);
|
3847
|
+
if (PyErr_Occurred()) {
|
3848
|
+
return NULL;
|
3849
|
+
}
|
3850
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
3851
|
+
return py_retval;
|
3852
|
+
}
|
3853
|
+
PyObject * _wrap__api_api_VM_SetVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3854
|
+
|
3855
|
+
|
3856
|
+
PyObject *
|
3857
|
+
_wrap__api_api_VM_GetVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3858
|
+
{
|
3859
|
+
PyObject *py_retval;
|
3860
|
+
int64_t retval;
|
3861
|
+
int64_t _handle;
|
3862
|
+
char *variableName;
|
3863
|
+
const char *keywords[] = {"_handle", "variableName", NULL};
|
3864
|
+
|
3865
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &variableName)) {
|
3866
|
+
return NULL;
|
3867
|
+
}
|
3868
|
+
retval = api_VM_GetVariable(_handle, variableName);
|
3869
|
+
if (PyErr_Occurred()) {
|
3870
|
+
return NULL;
|
3871
|
+
}
|
3872
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
3873
|
+
return py_retval;
|
3874
|
+
}
|
3875
|
+
PyObject * _wrap__api_api_VM_GetVariable(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3876
|
+
|
3877
|
+
|
3878
|
+
PyObject *
|
3879
|
+
_wrap__api_api_VM_DefineClass(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
3880
|
+
{
|
3881
|
+
PyObject *py_retval;
|
3882
|
+
char *retval;
|
3883
|
+
int64_t _handle;
|
3884
|
+
int64_t classDef;
|
3885
|
+
const char *keywords[] = {"_handle", "classDef", NULL};
|
3886
|
+
|
3887
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &_handle, &classDef)) {
|
3888
|
+
return NULL;
|
3889
|
+
}
|
3890
|
+
retval = api_VM_DefineClass(_handle, classDef);
|
3891
|
+
if (PyErr_Occurred()) {
|
3892
|
+
return NULL;
|
3893
|
+
}
|
3894
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
3895
|
+
return py_retval;
|
3896
|
+
}
|
3897
|
+
PyObject * _wrap__api_api_VM_DefineClass(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
3898
|
+
|
3899
|
+
|
3900
|
+
PyObject *
|
3901
|
+
_wrap__api_api_VMCompatibilityShim_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
3730
3902
|
{
|
3731
3903
|
PyObject *py_retval;
|
3732
3904
|
int64_t retval;
|
@@ -3992,57 +4164,181 @@ PyObject * _wrap__api_api_VMCompatibilityShim_AddVariableToObject(PyObject * PYB
|
|
3992
4164
|
|
3993
4165
|
|
3994
4166
|
PyObject *
|
3995
|
-
|
4167
|
+
_wrap__api_api_SourceLocation_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
3996
4168
|
{
|
3997
4169
|
PyObject *py_retval;
|
3998
4170
|
int64_t retval;
|
3999
4171
|
|
4000
|
-
retval =
|
4172
|
+
retval = api_SourceLocation_CTor();
|
4001
4173
|
py_retval = Py_BuildValue((char *) "L", retval);
|
4002
4174
|
return py_retval;
|
4003
4175
|
}
|
4004
|
-
PyObject *
|
4176
|
+
PyObject * _wrap__api_api_SourceLocation_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
4005
4177
|
|
4006
4178
|
|
4007
4179
|
PyObject *
|
4008
|
-
|
4180
|
+
_wrap__api_api_SourceLocation_Filename_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4009
4181
|
{
|
4010
4182
|
PyObject *py_retval;
|
4011
|
-
|
4183
|
+
char *retval;
|
4012
4184
|
int64_t handle;
|
4013
4185
|
const char *keywords[] = {"handle", NULL};
|
4014
4186
|
|
4015
4187
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4016
4188
|
return NULL;
|
4017
4189
|
}
|
4018
|
-
retval =
|
4019
|
-
py_retval = Py_BuildValue((char *) "
|
4190
|
+
retval = api_SourceLocation_Filename_Get(handle);
|
4191
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
4020
4192
|
return py_retval;
|
4021
4193
|
}
|
4022
|
-
PyObject *
|
4194
|
+
PyObject * _wrap__api_api_SourceLocation_Filename_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4023
4195
|
|
4024
4196
|
|
4025
4197
|
PyObject *
|
4026
|
-
|
4198
|
+
_wrap__api_api_SourceLocation_Filename_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4027
4199
|
{
|
4028
4200
|
PyObject *py_retval;
|
4029
4201
|
int64_t handle;
|
4030
|
-
|
4202
|
+
char *val;
|
4031
4203
|
const char *keywords[] = {"handle", "val", NULL};
|
4032
4204
|
|
4033
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
4205
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
4034
4206
|
return NULL;
|
4035
4207
|
}
|
4036
|
-
|
4208
|
+
api_SourceLocation_Filename_Set(handle, val);
|
4037
4209
|
Py_INCREF(Py_None);
|
4038
4210
|
py_retval = Py_None;
|
4039
4211
|
return py_retval;
|
4040
4212
|
}
|
4041
|
-
PyObject *
|
4213
|
+
PyObject * _wrap__api_api_SourceLocation_Filename_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4042
4214
|
|
4043
4215
|
|
4044
4216
|
PyObject *
|
4045
|
-
|
4217
|
+
_wrap__api_api_SourceLocation_Line_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4218
|
+
{
|
4219
|
+
PyObject *py_retval;
|
4220
|
+
int64_t retval;
|
4221
|
+
int64_t handle;
|
4222
|
+
const char *keywords[] = {"handle", NULL};
|
4223
|
+
|
4224
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4225
|
+
return NULL;
|
4226
|
+
}
|
4227
|
+
retval = api_SourceLocation_Line_Get(handle);
|
4228
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
4229
|
+
return py_retval;
|
4230
|
+
}
|
4231
|
+
PyObject * _wrap__api_api_SourceLocation_Line_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4232
|
+
|
4233
|
+
|
4234
|
+
PyObject *
|
4235
|
+
_wrap__api_api_SourceLocation_Line_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4236
|
+
{
|
4237
|
+
PyObject *py_retval;
|
4238
|
+
int64_t handle;
|
4239
|
+
int64_t val;
|
4240
|
+
const char *keywords[] = {"handle", "val", NULL};
|
4241
|
+
|
4242
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
4243
|
+
return NULL;
|
4244
|
+
}
|
4245
|
+
api_SourceLocation_Line_Set(handle, val);
|
4246
|
+
Py_INCREF(Py_None);
|
4247
|
+
py_retval = Py_None;
|
4248
|
+
return py_retval;
|
4249
|
+
}
|
4250
|
+
PyObject * _wrap__api_api_SourceLocation_Line_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4251
|
+
|
4252
|
+
|
4253
|
+
PyObject *
|
4254
|
+
_wrap__api_api_SourceLocation_Column_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4255
|
+
{
|
4256
|
+
PyObject *py_retval;
|
4257
|
+
int64_t retval;
|
4258
|
+
int64_t handle;
|
4259
|
+
const char *keywords[] = {"handle", NULL};
|
4260
|
+
|
4261
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4262
|
+
return NULL;
|
4263
|
+
}
|
4264
|
+
retval = api_SourceLocation_Column_Get(handle);
|
4265
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
4266
|
+
return py_retval;
|
4267
|
+
}
|
4268
|
+
PyObject * _wrap__api_api_SourceLocation_Column_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4269
|
+
|
4270
|
+
|
4271
|
+
PyObject *
|
4272
|
+
_wrap__api_api_SourceLocation_Column_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4273
|
+
{
|
4274
|
+
PyObject *py_retval;
|
4275
|
+
int64_t handle;
|
4276
|
+
int64_t val;
|
4277
|
+
const char *keywords[] = {"handle", "val", NULL};
|
4278
|
+
|
4279
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
4280
|
+
return NULL;
|
4281
|
+
}
|
4282
|
+
api_SourceLocation_Column_Set(handle, val);
|
4283
|
+
Py_INCREF(Py_None);
|
4284
|
+
py_retval = Py_None;
|
4285
|
+
return py_retval;
|
4286
|
+
}
|
4287
|
+
PyObject * _wrap__api_api_SourceLocation_Column_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4288
|
+
|
4289
|
+
|
4290
|
+
PyObject *
|
4291
|
+
_wrap__api_api_VMConfig_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
4292
|
+
{
|
4293
|
+
PyObject *py_retval;
|
4294
|
+
int64_t retval;
|
4295
|
+
|
4296
|
+
retval = api_VMConfig_CTor();
|
4297
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
4298
|
+
return py_retval;
|
4299
|
+
}
|
4300
|
+
PyObject * _wrap__api_api_VMConfig_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
4301
|
+
|
4302
|
+
|
4303
|
+
PyObject *
|
4304
|
+
_wrap__api_api_VMConfig_Stdout_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4305
|
+
{
|
4306
|
+
PyObject *py_retval;
|
4307
|
+
int64_t retval;
|
4308
|
+
int64_t handle;
|
4309
|
+
const char *keywords[] = {"handle", NULL};
|
4310
|
+
|
4311
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4312
|
+
return NULL;
|
4313
|
+
}
|
4314
|
+
retval = api_VMConfig_Stdout_Get(handle);
|
4315
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
4316
|
+
return py_retval;
|
4317
|
+
}
|
4318
|
+
PyObject * _wrap__api_api_VMConfig_Stdout_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4319
|
+
|
4320
|
+
|
4321
|
+
PyObject *
|
4322
|
+
_wrap__api_api_VMConfig_Stdout_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4323
|
+
{
|
4324
|
+
PyObject *py_retval;
|
4325
|
+
int64_t handle;
|
4326
|
+
int64_t val;
|
4327
|
+
const char *keywords[] = {"handle", "val", NULL};
|
4328
|
+
|
4329
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
4330
|
+
return NULL;
|
4331
|
+
}
|
4332
|
+
api_VMConfig_Stdout_Set(handle, val);
|
4333
|
+
Py_INCREF(Py_None);
|
4334
|
+
py_retval = Py_None;
|
4335
|
+
return py_retval;
|
4336
|
+
}
|
4337
|
+
PyObject * _wrap__api_api_VMConfig_Stdout_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4338
|
+
|
4339
|
+
|
4340
|
+
PyObject *
|
4341
|
+
_wrap__api_api_VMConfig_Stdin_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4046
4342
|
{
|
4047
4343
|
PyObject *py_retval;
|
4048
4344
|
int64_t retval;
|
@@ -4174,20 +4470,20 @@ PyObject * _wrap__api_api_VMConfig_Validate(PyObject * PYBINDGEN_UNUSED(dummy),
|
|
4174
4470
|
|
4175
4471
|
|
4176
4472
|
PyObject *
|
4177
|
-
|
4473
|
+
_wrap__api_api_ClassDefinition_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
4178
4474
|
{
|
4179
4475
|
PyObject *py_retval;
|
4180
4476
|
int64_t retval;
|
4181
4477
|
|
4182
|
-
retval =
|
4478
|
+
retval = api_ClassDefinition_CTor();
|
4183
4479
|
py_retval = Py_BuildValue((char *) "L", retval);
|
4184
4480
|
return py_retval;
|
4185
4481
|
}
|
4186
|
-
PyObject *
|
4482
|
+
PyObject * _wrap__api_api_ClassDefinition_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
4187
4483
|
|
4188
4484
|
|
4189
4485
|
PyObject *
|
4190
|
-
|
4486
|
+
_wrap__api_api_ClassDefinition_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4191
4487
|
{
|
4192
4488
|
PyObject *py_retval;
|
4193
4489
|
char *retval;
|
@@ -4197,15 +4493,15 @@ _wrap__api_api_VMError_Type_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *ar
|
|
4197
4493
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4198
4494
|
return NULL;
|
4199
4495
|
}
|
4200
|
-
retval =
|
4496
|
+
retval = api_ClassDefinition_Name_Get(handle);
|
4201
4497
|
py_retval = Py_BuildValue((char *) "s", retval);
|
4202
4498
|
return py_retval;
|
4203
4499
|
}
|
4204
|
-
PyObject *
|
4500
|
+
PyObject * _wrap__api_api_ClassDefinition_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4205
4501
|
|
4206
4502
|
|
4207
4503
|
PyObject *
|
4208
|
-
|
4504
|
+
_wrap__api_api_ClassDefinition_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4209
4505
|
{
|
4210
4506
|
PyObject *py_retval;
|
4211
4507
|
int64_t handle;
|
@@ -4215,53 +4511,53 @@ _wrap__api_api_VMError_Type_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *ar
|
|
4215
4511
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
4216
4512
|
return NULL;
|
4217
4513
|
}
|
4218
|
-
|
4514
|
+
api_ClassDefinition_Name_Set(handle, val);
|
4219
4515
|
Py_INCREF(Py_None);
|
4220
4516
|
py_retval = Py_None;
|
4221
4517
|
return py_retval;
|
4222
4518
|
}
|
4223
|
-
PyObject *
|
4519
|
+
PyObject * _wrap__api_api_ClassDefinition_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4224
4520
|
|
4225
4521
|
|
4226
4522
|
PyObject *
|
4227
|
-
|
4523
|
+
_wrap__api_api_ClassDefinition_PublicVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4228
4524
|
{
|
4229
4525
|
PyObject *py_retval;
|
4230
|
-
|
4526
|
+
int64_t retval;
|
4231
4527
|
int64_t handle;
|
4232
4528
|
const char *keywords[] = {"handle", NULL};
|
4233
4529
|
|
4234
4530
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4235
4531
|
return NULL;
|
4236
4532
|
}
|
4237
|
-
retval =
|
4238
|
-
py_retval = Py_BuildValue((char *) "
|
4533
|
+
retval = api_ClassDefinition_PublicVariables_Get(handle);
|
4534
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
4239
4535
|
return py_retval;
|
4240
4536
|
}
|
4241
|
-
PyObject *
|
4537
|
+
PyObject * _wrap__api_api_ClassDefinition_PublicVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4242
4538
|
|
4243
4539
|
|
4244
4540
|
PyObject *
|
4245
|
-
|
4541
|
+
_wrap__api_api_ClassDefinition_PublicVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4246
4542
|
{
|
4247
4543
|
PyObject *py_retval;
|
4248
4544
|
int64_t handle;
|
4249
|
-
|
4545
|
+
int64_t val;
|
4250
4546
|
const char *keywords[] = {"handle", "val", NULL};
|
4251
4547
|
|
4252
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
4548
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
4253
4549
|
return NULL;
|
4254
4550
|
}
|
4255
|
-
|
4551
|
+
api_ClassDefinition_PublicVariables_Set(handle, val);
|
4256
4552
|
Py_INCREF(Py_None);
|
4257
4553
|
py_retval = Py_None;
|
4258
4554
|
return py_retval;
|
4259
4555
|
}
|
4260
|
-
PyObject *
|
4556
|
+
PyObject * _wrap__api_api_ClassDefinition_PublicVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4261
4557
|
|
4262
4558
|
|
4263
4559
|
PyObject *
|
4264
|
-
|
4560
|
+
_wrap__api_api_ClassDefinition_PrivateVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4265
4561
|
{
|
4266
4562
|
PyObject *py_retval;
|
4267
4563
|
int64_t retval;
|
@@ -4271,15 +4567,15 @@ _wrap__api_api_VMError_Source_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *
|
|
4271
4567
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4272
4568
|
return NULL;
|
4273
4569
|
}
|
4274
|
-
retval =
|
4570
|
+
retval = api_ClassDefinition_PrivateVariables_Get(handle);
|
4275
4571
|
py_retval = Py_BuildValue((char *) "L", retval);
|
4276
4572
|
return py_retval;
|
4277
4573
|
}
|
4278
|
-
PyObject *
|
4574
|
+
PyObject * _wrap__api_api_ClassDefinition_PrivateVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4279
4575
|
|
4280
4576
|
|
4281
4577
|
PyObject *
|
4282
|
-
|
4578
|
+
_wrap__api_api_ClassDefinition_PrivateVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4283
4579
|
{
|
4284
4580
|
PyObject *py_retval;
|
4285
4581
|
int64_t handle;
|
@@ -4289,16 +4585,16 @@ _wrap__api_api_VMError_Source_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *
|
|
4289
4585
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
4290
4586
|
return NULL;
|
4291
4587
|
}
|
4292
|
-
|
4588
|
+
api_ClassDefinition_PrivateVariables_Set(handle, val);
|
4293
4589
|
Py_INCREF(Py_None);
|
4294
4590
|
py_retval = Py_None;
|
4295
4591
|
return py_retval;
|
4296
4592
|
}
|
4297
|
-
PyObject *
|
4593
|
+
PyObject * _wrap__api_api_ClassDefinition_PrivateVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4298
4594
|
|
4299
4595
|
|
4300
4596
|
PyObject *
|
4301
|
-
|
4597
|
+
_wrap__api_api_ClassDefinition_SharedVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4302
4598
|
{
|
4303
4599
|
PyObject *py_retval;
|
4304
4600
|
int64_t retval;
|
@@ -4308,15 +4604,15 @@ _wrap__api_api_VMError_Duration_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject
|
|
4308
4604
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4309
4605
|
return NULL;
|
4310
4606
|
}
|
4311
|
-
retval =
|
4607
|
+
retval = api_ClassDefinition_SharedVariables_Get(handle);
|
4312
4608
|
py_retval = Py_BuildValue((char *) "L", retval);
|
4313
4609
|
return py_retval;
|
4314
4610
|
}
|
4315
|
-
PyObject *
|
4611
|
+
PyObject * _wrap__api_api_ClassDefinition_SharedVariables_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4316
4612
|
|
4317
4613
|
|
4318
4614
|
PyObject *
|
4319
|
-
|
4615
|
+
_wrap__api_api_ClassDefinition_SharedVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4320
4616
|
{
|
4321
4617
|
PyObject *py_retval;
|
4322
4618
|
int64_t handle;
|
@@ -4326,178 +4622,140 @@ _wrap__api_api_VMError_Duration_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject
|
|
4326
4622
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
4327
4623
|
return NULL;
|
4328
4624
|
}
|
4329
|
-
|
4625
|
+
api_ClassDefinition_SharedVariables_Set(handle, val);
|
4330
4626
|
Py_INCREF(Py_None);
|
4331
4627
|
py_retval = Py_None;
|
4332
4628
|
return py_retval;
|
4333
4629
|
}
|
4334
|
-
PyObject *
|
4630
|
+
PyObject * _wrap__api_api_ClassDefinition_SharedVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4335
4631
|
|
4336
4632
|
|
4337
4633
|
PyObject *
|
4338
|
-
|
4634
|
+
_wrap__api_api_ClassDefinition_PublicMethods_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4339
4635
|
{
|
4340
4636
|
PyObject *py_retval;
|
4341
|
-
|
4342
|
-
int64_t
|
4343
|
-
const char *keywords[] = {"
|
4637
|
+
int64_t retval;
|
4638
|
+
int64_t handle;
|
4639
|
+
const char *keywords[] = {"handle", NULL};
|
4344
4640
|
|
4345
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
4346
|
-
return NULL;
|
4347
|
-
}
|
4348
|
-
retval = api_VMError_Error(_handle);
|
4349
|
-
if (PyErr_Occurred()) {
|
4350
|
-
if (retval != NULL) free(retval);
|
4641
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4351
4642
|
return NULL;
|
4352
4643
|
}
|
4353
|
-
|
4354
|
-
|
4644
|
+
retval = api_ClassDefinition_PublicMethods_Get(handle);
|
4645
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
4355
4646
|
return py_retval;
|
4356
4647
|
}
|
4357
|
-
PyObject *
|
4648
|
+
PyObject * _wrap__api_api_ClassDefinition_PublicMethods_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4358
4649
|
|
4359
4650
|
|
4360
4651
|
PyObject *
|
4361
|
-
|
4652
|
+
_wrap__api_api_ClassDefinition_PublicMethods_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4362
4653
|
{
|
4363
4654
|
PyObject *py_retval;
|
4364
|
-
|
4365
|
-
int64_t
|
4366
|
-
const char *keywords[] = {"
|
4655
|
+
int64_t handle;
|
4656
|
+
int64_t val;
|
4657
|
+
const char *keywords[] = {"handle", "val", NULL};
|
4367
4658
|
|
4368
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
4369
|
-
return NULL;
|
4370
|
-
}
|
4371
|
-
retval = api_VMError_Unwrap(_handle);
|
4372
|
-
if (PyErr_Occurred()) {
|
4659
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
4373
4660
|
return NULL;
|
4374
4661
|
}
|
4375
|
-
|
4662
|
+
api_ClassDefinition_PublicMethods_Set(handle, val);
|
4663
|
+
Py_INCREF(Py_None);
|
4664
|
+
py_retval = Py_None;
|
4376
4665
|
return py_retval;
|
4377
4666
|
}
|
4378
|
-
PyObject *
|
4667
|
+
PyObject * _wrap__api_api_ClassDefinition_PublicMethods_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4379
4668
|
|
4380
4669
|
|
4381
4670
|
PyObject *
|
4382
|
-
|
4671
|
+
_wrap__api_api_ClassDefinition_PrivateMethods_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4383
4672
|
{
|
4384
4673
|
PyObject *py_retval;
|
4385
|
-
|
4386
|
-
int64_t
|
4387
|
-
const char *keywords[] = {"
|
4674
|
+
int64_t retval;
|
4675
|
+
int64_t handle;
|
4676
|
+
const char *keywords[] = {"handle", NULL};
|
4388
4677
|
|
4389
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
4390
|
-
return NULL;
|
4391
|
-
}
|
4392
|
-
retval = api_VMError_IsCompileError(_handle);
|
4393
|
-
if (PyErr_Occurred()) {
|
4678
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4394
4679
|
return NULL;
|
4395
4680
|
}
|
4396
|
-
|
4681
|
+
retval = api_ClassDefinition_PrivateMethods_Get(handle);
|
4682
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
4397
4683
|
return py_retval;
|
4398
4684
|
}
|
4399
|
-
PyObject *
|
4685
|
+
PyObject * _wrap__api_api_ClassDefinition_PrivateMethods_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4400
4686
|
|
4401
4687
|
|
4402
4688
|
PyObject *
|
4403
|
-
|
4689
|
+
_wrap__api_api_ClassDefinition_PrivateMethods_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4404
4690
|
{
|
4405
4691
|
PyObject *py_retval;
|
4406
|
-
|
4407
|
-
int64_t
|
4408
|
-
const char *keywords[] = {"
|
4692
|
+
int64_t handle;
|
4693
|
+
int64_t val;
|
4694
|
+
const char *keywords[] = {"handle", "val", NULL};
|
4409
4695
|
|
4410
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
4696
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
4411
4697
|
return NULL;
|
4412
4698
|
}
|
4413
|
-
|
4414
|
-
|
4415
|
-
|
4416
|
-
}
|
4417
|
-
py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
|
4418
|
-
return py_retval;
|
4419
|
-
}
|
4420
|
-
PyObject * _wrap__api_api_VMError_IsRuntimeError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4421
|
-
|
4422
|
-
|
4423
|
-
PyObject *
|
4424
|
-
_wrap__api_api_VMError_IsTimeoutError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4425
|
-
{
|
4426
|
-
PyObject *py_retval;
|
4427
|
-
bool retval;
|
4428
|
-
int64_t _handle;
|
4429
|
-
const char *keywords[] = {"_handle", NULL};
|
4430
|
-
|
4431
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
4432
|
-
return NULL;
|
4433
|
-
}
|
4434
|
-
retval = api_VMError_IsTimeoutError(_handle);
|
4435
|
-
if (PyErr_Occurred()) {
|
4436
|
-
return NULL;
|
4437
|
-
}
|
4438
|
-
py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
|
4699
|
+
api_ClassDefinition_PrivateMethods_Set(handle, val);
|
4700
|
+
Py_INCREF(Py_None);
|
4701
|
+
py_retval = Py_None;
|
4439
4702
|
return py_retval;
|
4440
4703
|
}
|
4441
|
-
PyObject *
|
4704
|
+
PyObject * _wrap__api_api_ClassDefinition_PrivateMethods_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4442
4705
|
|
4443
4706
|
|
4444
4707
|
PyObject *
|
4445
|
-
|
4708
|
+
_wrap__api_api_ClassDefinition_UnknownFunctionHandler_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4446
4709
|
{
|
4447
4710
|
PyObject *py_retval;
|
4448
|
-
|
4449
|
-
int64_t
|
4450
|
-
const char *keywords[] = {"
|
4711
|
+
int64_t retval;
|
4712
|
+
int64_t handle;
|
4713
|
+
const char *keywords[] = {"handle", NULL};
|
4451
4714
|
|
4452
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
4453
|
-
return NULL;
|
4454
|
-
}
|
4455
|
-
retval = api_VMError_IsConversionError(_handle);
|
4456
|
-
if (PyErr_Occurred()) {
|
4715
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4457
4716
|
return NULL;
|
4458
4717
|
}
|
4459
|
-
|
4718
|
+
retval = api_ClassDefinition_UnknownFunctionHandler_Get(handle);
|
4719
|
+
py_retval = Py_BuildValue((char *) "L", retval);
|
4460
4720
|
return py_retval;
|
4461
4721
|
}
|
4462
|
-
PyObject *
|
4722
|
+
PyObject * _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4463
4723
|
|
4464
4724
|
|
4465
4725
|
PyObject *
|
4466
|
-
|
4726
|
+
_wrap__api_api_ClassDefinition_UnknownFunctionHandler_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4467
4727
|
{
|
4468
4728
|
PyObject *py_retval;
|
4469
|
-
|
4470
|
-
int64_t
|
4471
|
-
const char *keywords[] = {"
|
4729
|
+
int64_t handle;
|
4730
|
+
int64_t val;
|
4731
|
+
const char *keywords[] = {"handle", "val", NULL};
|
4472
4732
|
|
4473
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
4474
|
-
return NULL;
|
4475
|
-
}
|
4476
|
-
retval = api_VMError_IsConfigError(_handle);
|
4477
|
-
if (PyErr_Occurred()) {
|
4733
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
4478
4734
|
return NULL;
|
4479
4735
|
}
|
4480
|
-
|
4736
|
+
api_ClassDefinition_UnknownFunctionHandler_Set(handle, val);
|
4737
|
+
Py_INCREF(Py_None);
|
4738
|
+
py_retval = Py_None;
|
4481
4739
|
return py_retval;
|
4482
4740
|
}
|
4483
|
-
PyObject *
|
4741
|
+
PyObject * _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4484
4742
|
|
4485
4743
|
|
4486
4744
|
PyObject *
|
4487
|
-
|
4745
|
+
_wrap__api_api_ClassVariable_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
4488
4746
|
{
|
4489
4747
|
PyObject *py_retval;
|
4490
4748
|
int64_t retval;
|
4491
4749
|
|
4492
|
-
retval =
|
4750
|
+
retval = api_ClassVariable_CTor();
|
4493
4751
|
py_retval = Py_BuildValue((char *) "L", retval);
|
4494
4752
|
return py_retval;
|
4495
4753
|
}
|
4496
|
-
PyObject *
|
4754
|
+
PyObject * _wrap__api_api_ClassVariable_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
4497
4755
|
|
4498
4756
|
|
4499
4757
|
PyObject *
|
4500
|
-
|
4758
|
+
_wrap__api_api_ClassVariable_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4501
4759
|
{
|
4502
4760
|
PyObject *py_retval;
|
4503
4761
|
char *retval;
|
@@ -4507,15 +4765,15 @@ _wrap__api_api_ClassDefinition_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyOb
|
|
4507
4765
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4508
4766
|
return NULL;
|
4509
4767
|
}
|
4510
|
-
retval =
|
4768
|
+
retval = api_ClassVariable_Name_Get(handle);
|
4511
4769
|
py_retval = Py_BuildValue((char *) "s", retval);
|
4512
4770
|
return py_retval;
|
4513
4771
|
}
|
4514
|
-
PyObject *
|
4772
|
+
PyObject * _wrap__api_api_ClassVariable_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4515
4773
|
|
4516
4774
|
|
4517
4775
|
PyObject *
|
4518
|
-
|
4776
|
+
_wrap__api_api_ClassVariable_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4519
4777
|
{
|
4520
4778
|
PyObject *py_retval;
|
4521
4779
|
int64_t handle;
|
@@ -4525,16 +4783,16 @@ _wrap__api_api_ClassDefinition_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyOb
|
|
4525
4783
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
4526
4784
|
return NULL;
|
4527
4785
|
}
|
4528
|
-
|
4786
|
+
api_ClassVariable_Name_Set(handle, val);
|
4529
4787
|
Py_INCREF(Py_None);
|
4530
4788
|
py_retval = Py_None;
|
4531
4789
|
return py_retval;
|
4532
4790
|
}
|
4533
|
-
PyObject *
|
4791
|
+
PyObject * _wrap__api_api_ClassVariable_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4534
4792
|
|
4535
4793
|
|
4536
4794
|
PyObject *
|
4537
|
-
|
4795
|
+
_wrap__api_api_ClassVariable_Value_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4538
4796
|
{
|
4539
4797
|
PyObject *py_retval;
|
4540
4798
|
int64_t retval;
|
@@ -4544,15 +4802,15 @@ _wrap__api_api_ClassDefinition_PublicVariables_Get(PyObject * PYBINDGEN_UNUSED(d
|
|
4544
4802
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4545
4803
|
return NULL;
|
4546
4804
|
}
|
4547
|
-
retval =
|
4805
|
+
retval = api_ClassVariable_Value_Get(handle);
|
4548
4806
|
py_retval = Py_BuildValue((char *) "L", retval);
|
4549
4807
|
return py_retval;
|
4550
4808
|
}
|
4551
|
-
PyObject *
|
4809
|
+
PyObject * _wrap__api_api_ClassVariable_Value_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4552
4810
|
|
4553
4811
|
|
4554
4812
|
PyObject *
|
4555
|
-
|
4813
|
+
_wrap__api_api_ClassVariable_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4556
4814
|
{
|
4557
4815
|
PyObject *py_retval;
|
4558
4816
|
int64_t handle;
|
@@ -4562,90 +4820,68 @@ _wrap__api_api_ClassDefinition_PublicVariables_Set(PyObject * PYBINDGEN_UNUSED(d
|
|
4562
4820
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
4563
4821
|
return NULL;
|
4564
4822
|
}
|
4565
|
-
|
4823
|
+
api_ClassVariable_Value_Set(handle, val);
|
4566
4824
|
Py_INCREF(Py_None);
|
4567
4825
|
py_retval = Py_None;
|
4568
4826
|
return py_retval;
|
4569
4827
|
}
|
4570
|
-
PyObject *
|
4828
|
+
PyObject * _wrap__api_api_ClassVariable_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4571
4829
|
|
4572
4830
|
|
4573
4831
|
PyObject *
|
4574
|
-
|
4832
|
+
_wrap__api_api_ClassVariable_Locked_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4575
4833
|
{
|
4576
4834
|
PyObject *py_retval;
|
4577
|
-
|
4835
|
+
bool retval;
|
4578
4836
|
int64_t handle;
|
4579
4837
|
const char *keywords[] = {"handle", NULL};
|
4580
4838
|
|
4581
4839
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4582
4840
|
return NULL;
|
4583
4841
|
}
|
4584
|
-
retval =
|
4585
|
-
py_retval = Py_BuildValue((char *) "
|
4842
|
+
retval = api_ClassVariable_Locked_Get(handle);
|
4843
|
+
py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
|
4586
4844
|
return py_retval;
|
4587
4845
|
}
|
4588
|
-
PyObject *
|
4846
|
+
PyObject * _wrap__api_api_ClassVariable_Locked_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4589
4847
|
|
4590
4848
|
|
4591
4849
|
PyObject *
|
4592
|
-
|
4850
|
+
_wrap__api_api_ClassVariable_Locked_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4593
4851
|
{
|
4594
4852
|
PyObject *py_retval;
|
4595
4853
|
int64_t handle;
|
4596
|
-
|
4854
|
+
bool val;
|
4855
|
+
PyObject *py_val;
|
4597
4856
|
const char *keywords[] = {"handle", "val", NULL};
|
4598
4857
|
|
4599
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
4858
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LO", (char **) keywords, &handle, &py_val)) {
|
4600
4859
|
return NULL;
|
4601
4860
|
}
|
4602
|
-
|
4861
|
+
val = (bool) PyObject_IsTrue(py_val);
|
4862
|
+
api_ClassVariable_Locked_Set(handle, val);
|
4603
4863
|
Py_INCREF(Py_None);
|
4604
4864
|
py_retval = Py_None;
|
4605
4865
|
return py_retval;
|
4606
4866
|
}
|
4607
|
-
PyObject *
|
4867
|
+
PyObject * _wrap__api_api_ClassVariable_Locked_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4608
4868
|
|
4609
4869
|
|
4610
4870
|
PyObject *
|
4611
|
-
|
4871
|
+
_wrap__api_api_ExecutionResult_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
4612
4872
|
{
|
4613
4873
|
PyObject *py_retval;
|
4614
4874
|
int64_t retval;
|
4615
|
-
int64_t handle;
|
4616
|
-
const char *keywords[] = {"handle", NULL};
|
4617
4875
|
|
4618
|
-
|
4619
|
-
return NULL;
|
4620
|
-
}
|
4621
|
-
retval = api_ClassDefinition_SharedVariables_Get(handle);
|
4876
|
+
retval = api_ExecutionResult_CTor();
|
4622
4877
|
py_retval = Py_BuildValue((char *) "L", retval);
|
4623
4878
|
return py_retval;
|
4624
4879
|
}
|
4625
|
-
PyObject *
|
4626
|
-
|
4627
|
-
|
4628
|
-
PyObject *
|
4629
|
-
_wrap__api_api_ClassDefinition_SharedVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4630
|
-
{
|
4631
|
-
PyObject *py_retval;
|
4632
|
-
int64_t handle;
|
4633
|
-
int64_t val;
|
4634
|
-
const char *keywords[] = {"handle", "val", NULL};
|
4635
|
-
|
4636
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
4637
|
-
return NULL;
|
4638
|
-
}
|
4639
|
-
api_ClassDefinition_SharedVariables_Set(handle, val);
|
4640
|
-
Py_INCREF(Py_None);
|
4641
|
-
py_retval = Py_None;
|
4642
|
-
return py_retval;
|
4643
|
-
}
|
4644
|
-
PyObject * _wrap__api_api_ClassDefinition_SharedVariables_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4880
|
+
PyObject * _wrap__api_api_ExecutionResult_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
4645
4881
|
|
4646
4882
|
|
4647
4883
|
PyObject *
|
4648
|
-
|
4884
|
+
_wrap__api_api_ExecutionResult_Value_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4649
4885
|
{
|
4650
4886
|
PyObject *py_retval;
|
4651
4887
|
int64_t retval;
|
@@ -4655,15 +4891,15 @@ _wrap__api_api_ClassDefinition_PublicMethods_Get(PyObject * PYBINDGEN_UNUSED(dum
|
|
4655
4891
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4656
4892
|
return NULL;
|
4657
4893
|
}
|
4658
|
-
retval =
|
4894
|
+
retval = api_ExecutionResult_Value_Get(handle);
|
4659
4895
|
py_retval = Py_BuildValue((char *) "L", retval);
|
4660
4896
|
return py_retval;
|
4661
4897
|
}
|
4662
|
-
PyObject *
|
4898
|
+
PyObject * _wrap__api_api_ExecutionResult_Value_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4663
4899
|
|
4664
4900
|
|
4665
4901
|
PyObject *
|
4666
|
-
|
4902
|
+
_wrap__api_api_ExecutionResult_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4667
4903
|
{
|
4668
4904
|
PyObject *py_retval;
|
4669
4905
|
int64_t handle;
|
@@ -4673,16 +4909,16 @@ _wrap__api_api_ClassDefinition_PublicMethods_Set(PyObject * PYBINDGEN_UNUSED(dum
|
|
4673
4909
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
4674
4910
|
return NULL;
|
4675
4911
|
}
|
4676
|
-
|
4912
|
+
api_ExecutionResult_Value_Set(handle, val);
|
4677
4913
|
Py_INCREF(Py_None);
|
4678
4914
|
py_retval = Py_None;
|
4679
4915
|
return py_retval;
|
4680
4916
|
}
|
4681
|
-
PyObject *
|
4917
|
+
PyObject * _wrap__api_api_ExecutionResult_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4682
4918
|
|
4683
4919
|
|
4684
4920
|
PyObject *
|
4685
|
-
|
4921
|
+
_wrap__api_api_ExecutionResult_RawValue_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4686
4922
|
{
|
4687
4923
|
PyObject *py_retval;
|
4688
4924
|
int64_t retval;
|
@@ -4692,15 +4928,15 @@ _wrap__api_api_ClassDefinition_PrivateMethods_Get(PyObject * PYBINDGEN_UNUSED(du
|
|
4692
4928
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4693
4929
|
return NULL;
|
4694
4930
|
}
|
4695
|
-
retval =
|
4931
|
+
retval = api_ExecutionResult_RawValue_Get(handle);
|
4696
4932
|
py_retval = Py_BuildValue((char *) "L", retval);
|
4697
4933
|
return py_retval;
|
4698
4934
|
}
|
4699
|
-
PyObject *
|
4935
|
+
PyObject * _wrap__api_api_ExecutionResult_RawValue_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4700
4936
|
|
4701
4937
|
|
4702
4938
|
PyObject *
|
4703
|
-
|
4939
|
+
_wrap__api_api_ExecutionResult_RawValue_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4704
4940
|
{
|
4705
4941
|
PyObject *py_retval;
|
4706
4942
|
int64_t handle;
|
@@ -4710,867 +4946,631 @@ _wrap__api_api_ClassDefinition_PrivateMethods_Set(PyObject * PYBINDGEN_UNUSED(du
|
|
4710
4946
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
4711
4947
|
return NULL;
|
4712
4948
|
}
|
4713
|
-
|
4949
|
+
api_ExecutionResult_RawValue_Set(handle, val);
|
4714
4950
|
Py_INCREF(Py_None);
|
4715
4951
|
py_retval = Py_None;
|
4716
4952
|
return py_retval;
|
4717
4953
|
}
|
4718
|
-
PyObject *
|
4954
|
+
PyObject * _wrap__api_api_ExecutionResult_RawValue_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4719
4955
|
|
4720
4956
|
|
4721
4957
|
PyObject *
|
4722
|
-
|
4958
|
+
_wrap__api_api_ExecutionResult_Output_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4723
4959
|
{
|
4724
4960
|
PyObject *py_retval;
|
4725
|
-
|
4961
|
+
char *retval;
|
4726
4962
|
int64_t handle;
|
4727
4963
|
const char *keywords[] = {"handle", NULL};
|
4728
4964
|
|
4729
4965
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
4730
4966
|
return NULL;
|
4731
4967
|
}
|
4732
|
-
retval =
|
4733
|
-
py_retval = Py_BuildValue((char *) "
|
4968
|
+
retval = api_ExecutionResult_Output_Get(handle);
|
4969
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
4734
4970
|
return py_retval;
|
4735
4971
|
}
|
4736
|
-
PyObject *
|
4972
|
+
PyObject * _wrap__api_api_ExecutionResult_Output_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4737
4973
|
|
4738
4974
|
|
4739
4975
|
PyObject *
|
4740
|
-
|
4976
|
+
_wrap__api_api_ExecutionResult_Output_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4741
4977
|
{
|
4742
4978
|
PyObject *py_retval;
|
4743
4979
|
int64_t handle;
|
4744
|
-
|
4980
|
+
char *val;
|
4745
4981
|
const char *keywords[] = {"handle", "val", NULL};
|
4746
4982
|
|
4747
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
4983
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
4748
4984
|
return NULL;
|
4749
4985
|
}
|
4750
|
-
|
4986
|
+
api_ExecutionResult_Output_Set(handle, val);
|
4751
4987
|
Py_INCREF(Py_None);
|
4752
4988
|
py_retval = Py_None;
|
4753
4989
|
return py_retval;
|
4754
4990
|
}
|
4755
|
-
PyObject *
|
4991
|
+
PyObject * _wrap__api_api_ExecutionResult_Output_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4756
4992
|
|
4757
4993
|
|
4758
4994
|
PyObject *
|
4759
|
-
|
4995
|
+
_wrap__api_api_GoValue_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
4760
4996
|
{
|
4761
4997
|
PyObject *py_retval;
|
4762
4998
|
int64_t retval;
|
4763
4999
|
|
4764
|
-
retval =
|
5000
|
+
retval = api_GoValue_CTor();
|
4765
5001
|
py_retval = Py_BuildValue((char *) "L", retval);
|
4766
5002
|
return py_retval;
|
4767
5003
|
}
|
4768
|
-
PyObject *
|
5004
|
+
PyObject * _wrap__api_api_GoValue_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
4769
5005
|
|
4770
5006
|
|
4771
5007
|
PyObject *
|
4772
|
-
|
5008
|
+
_wrap__api_api_GoValue_ID(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4773
5009
|
{
|
4774
5010
|
PyObject *py_retval;
|
4775
5011
|
char *retval;
|
4776
|
-
int64_t
|
4777
|
-
const char *keywords[] = {"
|
5012
|
+
int64_t _handle;
|
5013
|
+
const char *keywords[] = {"_handle", NULL};
|
4778
5014
|
|
4779
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
5015
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
4780
5016
|
return NULL;
|
4781
5017
|
}
|
4782
|
-
retval =
|
4783
|
-
|
4784
|
-
|
4785
|
-
}
|
4786
|
-
PyObject * _wrap__api_api_ClassMethod_Name_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4787
|
-
|
4788
|
-
|
4789
|
-
PyObject *
|
4790
|
-
_wrap__api_api_ClassMethod_Name_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4791
|
-
{
|
4792
|
-
PyObject *py_retval;
|
4793
|
-
int64_t handle;
|
4794
|
-
char *val;
|
4795
|
-
const char *keywords[] = {"handle", "val", NULL};
|
4796
|
-
|
4797
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
5018
|
+
retval = api_GoValue_ID(_handle);
|
5019
|
+
if (PyErr_Occurred()) {
|
5020
|
+
if (retval != NULL) free(retval);
|
4798
5021
|
return NULL;
|
4799
5022
|
}
|
4800
|
-
|
4801
|
-
|
4802
|
-
py_retval = Py_None;
|
5023
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
5024
|
+
free(retval);
|
4803
5025
|
return py_retval;
|
4804
5026
|
}
|
4805
|
-
PyObject *
|
5027
|
+
PyObject * _wrap__api_api_GoValue_ID(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4806
5028
|
|
4807
5029
|
|
4808
5030
|
PyObject *
|
4809
|
-
|
5031
|
+
_wrap__api_api_GoValue_MarshalJSON(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4810
5032
|
{
|
4811
5033
|
PyObject *py_retval;
|
4812
5034
|
int64_t retval;
|
4813
|
-
int64_t
|
4814
|
-
const char *keywords[] = {"
|
5035
|
+
int64_t _handle;
|
5036
|
+
const char *keywords[] = {"_handle", NULL};
|
4815
5037
|
|
4816
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
5038
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
5039
|
+
return NULL;
|
5040
|
+
}
|
5041
|
+
retval = api_GoValue_MarshalJSON(_handle);
|
5042
|
+
if (PyErr_Occurred()) {
|
4817
5043
|
return NULL;
|
4818
5044
|
}
|
4819
|
-
retval = api_ClassMethod_Argc_Get(handle);
|
4820
5045
|
py_retval = Py_BuildValue((char *) "L", retval);
|
4821
5046
|
return py_retval;
|
4822
5047
|
}
|
4823
|
-
PyObject *
|
5048
|
+
PyObject * _wrap__api_api_GoValue_MarshalJSON(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4824
5049
|
|
4825
5050
|
|
4826
5051
|
PyObject *
|
4827
|
-
|
5052
|
+
_wrap__api_api_GoValue_Type(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4828
5053
|
{
|
4829
5054
|
PyObject *py_retval;
|
4830
|
-
|
4831
|
-
int64_t val;
|
4832
|
-
const char *keywords[] = {"handle", "val", NULL};
|
4833
|
-
|
4834
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
4835
|
-
return NULL;
|
4836
|
-
}
|
4837
|
-
api_ClassMethod_Argc_Set(handle, val);
|
4838
|
-
Py_INCREF(Py_None);
|
4839
|
-
py_retval = Py_None;
|
4840
|
-
return py_retval;
|
4841
|
-
}
|
4842
|
-
PyObject * _wrap__api_api_ClassMethod_Argc_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4843
|
-
|
4844
|
-
|
4845
|
-
PyObject *
|
4846
|
-
_wrap__api_api_VM_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
4847
|
-
{
|
4848
|
-
PyObject *py_retval;
|
4849
|
-
int64_t retval;
|
4850
|
-
|
4851
|
-
retval = api_VM_CTor();
|
4852
|
-
py_retval = Py_BuildValue((char *) "L", retval);
|
4853
|
-
return py_retval;
|
4854
|
-
}
|
4855
|
-
PyObject * _wrap__api_api_VM_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
4856
|
-
|
4857
|
-
|
4858
|
-
PyObject *
|
4859
|
-
_wrap__api_api_VM_GetCompatibilityShim(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4860
|
-
{
|
4861
|
-
PyObject *py_retval;
|
4862
|
-
int64_t retval;
|
5055
|
+
char *retval;
|
4863
5056
|
int64_t _handle;
|
4864
5057
|
const char *keywords[] = {"_handle", NULL};
|
4865
5058
|
|
4866
5059
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
4867
5060
|
return NULL;
|
4868
5061
|
}
|
4869
|
-
retval =
|
4870
|
-
if (PyErr_Occurred()) {
|
4871
|
-
return NULL;
|
4872
|
-
}
|
4873
|
-
py_retval = Py_BuildValue((char *) "L", retval);
|
4874
|
-
return py_retval;
|
4875
|
-
}
|
4876
|
-
PyObject * _wrap__api_api_VM_GetCompatibilityShim(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4877
|
-
|
4878
|
-
|
4879
|
-
PyObject *
|
4880
|
-
_wrap__api_api_VM_Execute(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4881
|
-
{
|
4882
|
-
PyObject *py_retval;
|
4883
|
-
int64_t retval;
|
4884
|
-
int64_t _handle;
|
4885
|
-
char *code;
|
4886
|
-
const char *keywords[] = {"_handle", "code", NULL};
|
4887
|
-
|
4888
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &code)) {
|
4889
|
-
return NULL;
|
4890
|
-
}
|
4891
|
-
retval = api_VM_Execute(_handle, code);
|
4892
|
-
if (PyErr_Occurred()) {
|
4893
|
-
return NULL;
|
4894
|
-
}
|
4895
|
-
py_retval = Py_BuildValue((char *) "L", retval);
|
4896
|
-
return py_retval;
|
4897
|
-
}
|
4898
|
-
PyObject * _wrap__api_api_VM_Execute(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4899
|
-
|
4900
|
-
|
4901
|
-
PyObject *
|
4902
|
-
_wrap__api_api_VM_ExecuteWithContext(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4903
|
-
{
|
4904
|
-
PyObject *py_retval;
|
4905
|
-
int64_t retval;
|
4906
|
-
int64_t _handle;
|
4907
|
-
int64_t ctx;
|
4908
|
-
char *code;
|
4909
|
-
const char *keywords[] = {"_handle", "ctx", "code", NULL};
|
4910
|
-
|
4911
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LLs", (char **) keywords, &_handle, &ctx, &code)) {
|
4912
|
-
return NULL;
|
4913
|
-
}
|
4914
|
-
retval = api_VM_ExecuteWithContext(_handle, ctx, code);
|
4915
|
-
if (PyErr_Occurred()) {
|
4916
|
-
return NULL;
|
4917
|
-
}
|
4918
|
-
py_retval = Py_BuildValue((char *) "L", retval);
|
4919
|
-
return py_retval;
|
4920
|
-
}
|
4921
|
-
PyObject * _wrap__api_api_VM_ExecuteWithContext(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4922
|
-
|
4923
|
-
|
4924
|
-
PyObject *
|
4925
|
-
_wrap__api_api_VM_NewObjectInstance(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4926
|
-
{
|
4927
|
-
PyObject *py_retval;
|
4928
|
-
int64_t retval;
|
4929
|
-
int64_t _handle;
|
4930
|
-
char *className;
|
4931
|
-
const char *keywords[] = {"_handle", "className", NULL};
|
4932
|
-
|
4933
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &_handle, &className)) {
|
4934
|
-
return NULL;
|
4935
|
-
}
|
4936
|
-
retval = api_VM_NewObjectInstance(_handle, className);
|
5062
|
+
retval = api_GoValue_Type(_handle);
|
4937
5063
|
if (PyErr_Occurred()) {
|
5064
|
+
if (retval != NULL) free(retval);
|
4938
5065
|
return NULL;
|
4939
5066
|
}
|
4940
|
-
py_retval = Py_BuildValue((char *) "
|
5067
|
+
py_retval = Py_BuildValue((char *) "s", retval);
|
5068
|
+
free(retval);
|
4941
5069
|
return py_retval;
|
4942
5070
|
}
|
4943
|
-
PyObject *
|
5071
|
+
PyObject * _wrap__api_api_GoValue_Type(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4944
5072
|
|
4945
5073
|
|
4946
5074
|
PyObject *
|
4947
|
-
|
5075
|
+
_wrap__api_api_GoValue_Int(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4948
5076
|
{
|
4949
5077
|
PyObject *py_retval;
|
4950
5078
|
int64_t retval;
|
4951
5079
|
int64_t _handle;
|
4952
|
-
char *
|
4953
|
-
int64_t args2;
|
4954
|
-
const char *keywords[] = {"_handle", "functionName", "args", NULL};
|
5080
|
+
const char *keywords[] = {"_handle", NULL};
|
4955
5081
|
|
4956
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5082
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
4957
5083
|
return NULL;
|
4958
5084
|
}
|
4959
|
-
retval =
|
5085
|
+
retval = api_GoValue_Int(_handle);
|
4960
5086
|
if (PyErr_Occurred()) {
|
4961
5087
|
return NULL;
|
4962
5088
|
}
|
4963
5089
|
py_retval = Py_BuildValue((char *) "L", retval);
|
4964
5090
|
return py_retval;
|
4965
5091
|
}
|
4966
|
-
PyObject *
|
5092
|
+
PyObject * _wrap__api_api_GoValue_Int(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4967
5093
|
|
4968
5094
|
|
4969
5095
|
PyObject *
|
4970
|
-
|
5096
|
+
_wrap__api_api_GoValue_Float(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4971
5097
|
{
|
4972
5098
|
PyObject *py_retval;
|
4973
|
-
|
5099
|
+
double retval;
|
4974
5100
|
int64_t _handle;
|
4975
|
-
|
4976
|
-
char *methodName;
|
4977
|
-
int64_t args2;
|
4978
|
-
const char *keywords[] = {"_handle", "object", "methodName", "args", NULL};
|
5101
|
+
const char *keywords[] = {"_handle", NULL};
|
4979
5102
|
|
4980
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5103
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
4981
5104
|
return NULL;
|
4982
5105
|
}
|
4983
|
-
retval =
|
5106
|
+
retval = api_GoValue_Float(_handle);
|
4984
5107
|
if (PyErr_Occurred()) {
|
4985
5108
|
return NULL;
|
4986
5109
|
}
|
4987
|
-
py_retval = Py_BuildValue((char *) "
|
5110
|
+
py_retval = Py_BuildValue((char *) "d", retval);
|
4988
5111
|
return py_retval;
|
4989
5112
|
}
|
4990
|
-
PyObject *
|
5113
|
+
PyObject * _wrap__api_api_GoValue_Float(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
4991
5114
|
|
4992
5115
|
|
4993
5116
|
PyObject *
|
4994
|
-
|
5117
|
+
_wrap__api_api_GoValue_String(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
4995
5118
|
{
|
4996
5119
|
PyObject *py_retval;
|
4997
5120
|
char *retval;
|
4998
5121
|
int64_t _handle;
|
4999
|
-
char *
|
5000
|
-
int64_t value;
|
5001
|
-
bool constant;
|
5002
|
-
PyObject *py_constant;
|
5003
|
-
const char *keywords[] = {"_handle", "name", "value", "constant", NULL};
|
5122
|
+
const char *keywords[] = {"_handle", NULL};
|
5004
5123
|
|
5005
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5124
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
5006
5125
|
return NULL;
|
5007
5126
|
}
|
5008
|
-
|
5009
|
-
retval = api_VM_DefineVariable(_handle, name, value, constant);
|
5127
|
+
retval = api_GoValue_String(_handle);
|
5010
5128
|
if (PyErr_Occurred()) {
|
5129
|
+
if (retval != NULL) free(retval);
|
5011
5130
|
return NULL;
|
5012
5131
|
}
|
5013
5132
|
py_retval = Py_BuildValue((char *) "s", retval);
|
5133
|
+
free(retval);
|
5014
5134
|
return py_retval;
|
5015
5135
|
}
|
5016
|
-
PyObject *
|
5136
|
+
PyObject * _wrap__api_api_GoValue_String(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5017
5137
|
|
5018
5138
|
|
5019
5139
|
PyObject *
|
5020
|
-
|
5140
|
+
_wrap__api_api_GoValue_Bool(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5021
5141
|
{
|
5022
5142
|
PyObject *py_retval;
|
5023
|
-
|
5143
|
+
bool retval;
|
5024
5144
|
int64_t _handle;
|
5025
|
-
char *
|
5026
|
-
int64_t value;
|
5027
|
-
const char *keywords[] = {"_handle", "variableName", "value", NULL};
|
5145
|
+
const char *keywords[] = {"_handle", NULL};
|
5028
5146
|
|
5029
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5147
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
5030
5148
|
return NULL;
|
5031
5149
|
}
|
5032
|
-
retval =
|
5150
|
+
retval = api_GoValue_Bool(_handle);
|
5033
5151
|
if (PyErr_Occurred()) {
|
5034
5152
|
return NULL;
|
5035
5153
|
}
|
5036
|
-
py_retval = Py_BuildValue((char *) "
|
5154
|
+
py_retval = Py_BuildValue((char *) "N", PyBool_FromLong(retval));
|
5037
5155
|
return py_retval;
|
5038
5156
|
}
|
5039
|
-
PyObject *
|
5157
|
+
PyObject * _wrap__api_api_GoValue_Bool(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5040
5158
|
|
5041
5159
|
|
5042
5160
|
PyObject *
|
5043
|
-
|
5161
|
+
_wrap__api_api_GoValue_Slice(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5044
5162
|
{
|
5045
5163
|
PyObject *py_retval;
|
5046
5164
|
int64_t retval;
|
5047
5165
|
int64_t _handle;
|
5048
|
-
char *
|
5049
|
-
const char *keywords[] = {"_handle", "variableName", NULL};
|
5166
|
+
const char *keywords[] = {"_handle", NULL};
|
5050
5167
|
|
5051
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5168
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
5052
5169
|
return NULL;
|
5053
5170
|
}
|
5054
|
-
retval =
|
5171
|
+
retval = api_GoValue_Slice(_handle);
|
5055
5172
|
if (PyErr_Occurred()) {
|
5056
5173
|
return NULL;
|
5057
5174
|
}
|
5058
5175
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5059
5176
|
return py_retval;
|
5060
5177
|
}
|
5061
|
-
PyObject *
|
5178
|
+
PyObject * _wrap__api_api_GoValue_Slice(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5062
5179
|
|
5063
5180
|
|
5064
5181
|
PyObject *
|
5065
|
-
|
5182
|
+
_wrap__api_api_GoValue_Map(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5066
5183
|
{
|
5067
5184
|
PyObject *py_retval;
|
5068
|
-
|
5185
|
+
int64_t retval;
|
5069
5186
|
int64_t _handle;
|
5070
|
-
|
5071
|
-
const char *keywords[] = {"_handle", "classDef", NULL};
|
5187
|
+
const char *keywords[] = {"_handle", NULL};
|
5072
5188
|
|
5073
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5189
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
5074
5190
|
return NULL;
|
5075
5191
|
}
|
5076
|
-
retval =
|
5192
|
+
retval = api_GoValue_Map(_handle);
|
5077
5193
|
if (PyErr_Occurred()) {
|
5078
5194
|
return NULL;
|
5079
5195
|
}
|
5080
|
-
py_retval = Py_BuildValue((char *) "s", retval);
|
5081
|
-
return py_retval;
|
5082
|
-
}
|
5083
|
-
PyObject * _wrap__api_api_VM_DefineClass(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5084
|
-
|
5085
|
-
|
5086
|
-
PyObject *
|
5087
|
-
_wrap__api_api_ExecutionResult_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
5088
|
-
{
|
5089
|
-
PyObject *py_retval;
|
5090
|
-
int64_t retval;
|
5091
|
-
|
5092
|
-
retval = api_ExecutionResult_CTor();
|
5093
|
-
py_retval = Py_BuildValue((char *) "L", retval);
|
5094
|
-
return py_retval;
|
5095
|
-
}
|
5096
|
-
PyObject * _wrap__api_api_ExecutionResult_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
5097
|
-
|
5098
|
-
|
5099
|
-
PyObject *
|
5100
|
-
_wrap__api_api_ExecutionResult_Value_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5101
|
-
{
|
5102
|
-
PyObject *py_retval;
|
5103
|
-
int64_t retval;
|
5104
|
-
int64_t handle;
|
5105
|
-
const char *keywords[] = {"handle", NULL};
|
5106
|
-
|
5107
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
5108
|
-
return NULL;
|
5109
|
-
}
|
5110
|
-
retval = api_ExecutionResult_Value_Get(handle);
|
5111
5196
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5112
5197
|
return py_retval;
|
5113
5198
|
}
|
5114
|
-
PyObject *
|
5115
|
-
|
5116
|
-
|
5117
|
-
PyObject *
|
5118
|
-
_wrap__api_api_ExecutionResult_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5119
|
-
{
|
5120
|
-
PyObject *py_retval;
|
5121
|
-
int64_t handle;
|
5122
|
-
int64_t val;
|
5123
|
-
const char *keywords[] = {"handle", "val", NULL};
|
5124
|
-
|
5125
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
5126
|
-
return NULL;
|
5127
|
-
}
|
5128
|
-
api_ExecutionResult_Value_Set(handle, val);
|
5129
|
-
Py_INCREF(Py_None);
|
5130
|
-
py_retval = Py_None;
|
5131
|
-
return py_retval;
|
5132
|
-
}
|
5133
|
-
PyObject * _wrap__api_api_ExecutionResult_Value_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5199
|
+
PyObject * _wrap__api_api_GoValue_Map(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5134
5200
|
|
5135
5201
|
|
5136
5202
|
PyObject *
|
5137
|
-
|
5203
|
+
_wrap__api_api_GoValue_Object(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5138
5204
|
{
|
5139
5205
|
PyObject *py_retval;
|
5140
5206
|
int64_t retval;
|
5141
|
-
int64_t
|
5142
|
-
const char *keywords[] = {"
|
5143
|
-
|
5144
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &handle)) {
|
5145
|
-
return NULL;
|
5146
|
-
}
|
5147
|
-
retval = api_ExecutionResult_RawValue_Get(handle);
|
5148
|
-
py_retval = Py_BuildValue((char *) "L", retval);
|
5149
|
-
return py_retval;
|
5150
|
-
}
|
5151
|
-
PyObject * _wrap__api_api_ExecutionResult_RawValue_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5152
|
-
|
5153
|
-
|
5154
|
-
PyObject *
|
5155
|
-
_wrap__api_api_ExecutionResult_RawValue_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5156
|
-
{
|
5157
|
-
PyObject *py_retval;
|
5158
|
-
int64_t handle;
|
5159
|
-
int64_t val;
|
5160
|
-
const char *keywords[] = {"handle", "val", NULL};
|
5161
|
-
|
5162
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "LL", (char **) keywords, &handle, &val)) {
|
5163
|
-
return NULL;
|
5164
|
-
}
|
5165
|
-
api_ExecutionResult_RawValue_Set(handle, val);
|
5166
|
-
Py_INCREF(Py_None);
|
5167
|
-
py_retval = Py_None;
|
5168
|
-
return py_retval;
|
5169
|
-
}
|
5170
|
-
PyObject * _wrap__api_api_ExecutionResult_RawValue_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5171
|
-
|
5172
|
-
|
5173
|
-
PyObject *
|
5174
|
-
_wrap__api_api_ExecutionResult_Output_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5175
|
-
{
|
5176
|
-
PyObject *py_retval;
|
5177
|
-
char *retval;
|
5178
|
-
int64_t handle;
|
5179
|
-
const char *keywords[] = {"handle", NULL};
|
5207
|
+
int64_t _handle;
|
5208
|
+
const char *keywords[] = {"_handle", NULL};
|
5180
5209
|
|
5181
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
5210
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &_handle)) {
|
5182
5211
|
return NULL;
|
5183
5212
|
}
|
5184
|
-
retval =
|
5185
|
-
|
5186
|
-
return py_retval;
|
5187
|
-
}
|
5188
|
-
PyObject * _wrap__api_api_ExecutionResult_Output_Get(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5189
|
-
|
5190
|
-
|
5191
|
-
PyObject *
|
5192
|
-
_wrap__api_api_ExecutionResult_Output_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5193
|
-
{
|
5194
|
-
PyObject *py_retval;
|
5195
|
-
int64_t handle;
|
5196
|
-
char *val;
|
5197
|
-
const char *keywords[] = {"handle", "val", NULL};
|
5198
|
-
|
5199
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "Ls", (char **) keywords, &handle, &val)) {
|
5213
|
+
retval = api_GoValue_Object(_handle);
|
5214
|
+
if (PyErr_Occurred()) {
|
5200
5215
|
return NULL;
|
5201
5216
|
}
|
5202
|
-
api_ExecutionResult_Output_Set(handle, val);
|
5203
|
-
Py_INCREF(Py_None);
|
5204
|
-
py_retval = Py_None;
|
5205
|
-
return py_retval;
|
5206
|
-
}
|
5207
|
-
PyObject * _wrap__api_api_ExecutionResult_Output_Set(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5208
|
-
|
5209
|
-
|
5210
|
-
PyObject *
|
5211
|
-
_wrap__api_api_UnknownFunctionHandler_CTor(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
5212
|
-
{
|
5213
|
-
PyObject *py_retval;
|
5214
|
-
int64_t retval;
|
5215
|
-
|
5216
|
-
retval = api_UnknownFunctionHandler_CTor();
|
5217
5217
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5218
5218
|
return py_retval;
|
5219
5219
|
}
|
5220
|
-
PyObject *
|
5220
|
+
PyObject * _wrap__api_api_GoValue_Object(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5221
5221
|
|
5222
5222
|
|
5223
5223
|
PyObject *
|
5224
|
-
|
5224
|
+
_wrap__api_api_NewConfigError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5225
5225
|
{
|
5226
5226
|
PyObject *py_retval;
|
5227
5227
|
int64_t retval;
|
5228
|
-
char *
|
5229
|
-
|
5228
|
+
char *message;
|
5229
|
+
char *wrapped;
|
5230
|
+
const char *keywords[] = {"message", "wrapped", NULL};
|
5230
5231
|
|
5231
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5232
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "ss", (char **) keywords, &message, &wrapped)) {
|
5232
5233
|
return NULL;
|
5233
5234
|
}
|
5234
|
-
retval =
|
5235
|
+
retval = api_NewConfigError(message, wrapped);
|
5235
5236
|
if (PyErr_Occurred()) {
|
5236
5237
|
return NULL;
|
5237
5238
|
}
|
5238
5239
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5239
5240
|
return py_retval;
|
5240
5241
|
}
|
5241
|
-
PyObject *
|
5242
|
+
PyObject * _wrap__api_api_NewConfigError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5242
5243
|
|
5243
5244
|
|
5244
5245
|
PyObject *
|
5245
|
-
|
5246
|
+
_wrap__api_api_NewTimeoutError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5246
5247
|
{
|
5247
5248
|
PyObject *py_retval;
|
5248
5249
|
int64_t retval;
|
5249
|
-
int64_t
|
5250
|
-
const char *keywords[] = {"
|
5250
|
+
int64_t duration;
|
5251
|
+
const char *keywords[] = {"duration", NULL};
|
5251
5252
|
|
5252
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
5253
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &duration)) {
|
5253
5254
|
return NULL;
|
5254
5255
|
}
|
5255
|
-
retval =
|
5256
|
+
retval = api_NewTimeoutError(duration);
|
5256
5257
|
if (PyErr_Occurred()) {
|
5257
5258
|
return NULL;
|
5258
5259
|
}
|
5259
5260
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5260
5261
|
return py_retval;
|
5261
5262
|
}
|
5262
|
-
PyObject *
|
5263
|
+
PyObject * _wrap__api_api_NewTimeoutError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5263
5264
|
|
5264
5265
|
|
5265
5266
|
PyObject *
|
5266
|
-
|
5267
|
+
_wrap__api_api_NewConversionError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5267
5268
|
{
|
5268
5269
|
PyObject *py_retval;
|
5269
5270
|
int64_t retval;
|
5270
|
-
char *
|
5271
|
-
|
5271
|
+
char *message;
|
5272
|
+
char *wrapped;
|
5273
|
+
const char *keywords[] = {"message", "wrapped", NULL};
|
5272
5274
|
|
5273
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5275
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "ss", (char **) keywords, &message, &wrapped)) {
|
5274
5276
|
return NULL;
|
5275
5277
|
}
|
5276
|
-
retval =
|
5278
|
+
retval = api_NewConversionError(message, wrapped);
|
5277
5279
|
if (PyErr_Occurred()) {
|
5278
5280
|
return NULL;
|
5279
5281
|
}
|
5280
5282
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5281
5283
|
return py_retval;
|
5282
5284
|
}
|
5283
|
-
PyObject *
|
5285
|
+
PyObject * _wrap__api_api_NewConversionError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5284
5286
|
|
5285
5287
|
|
5286
5288
|
PyObject *
|
5287
|
-
|
5289
|
+
_wrap__api_api_NewCompileError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5288
5290
|
{
|
5289
5291
|
PyObject *py_retval;
|
5290
5292
|
int64_t retval;
|
5291
|
-
|
5292
|
-
|
5293
|
+
char *message;
|
5294
|
+
int64_t source;
|
5295
|
+
const char *keywords[] = {"message", "source", NULL};
|
5293
5296
|
|
5294
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5297
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "sL", (char **) keywords, &message, &source)) {
|
5295
5298
|
return NULL;
|
5296
5299
|
}
|
5297
|
-
retval =
|
5300
|
+
retval = api_NewCompileError(message, source);
|
5298
5301
|
if (PyErr_Occurred()) {
|
5299
5302
|
return NULL;
|
5300
5303
|
}
|
5301
5304
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5302
5305
|
return py_retval;
|
5303
5306
|
}
|
5304
|
-
PyObject *
|
5307
|
+
PyObject * _wrap__api_api_NewCompileError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5305
5308
|
|
5306
5309
|
|
5307
5310
|
PyObject *
|
5308
|
-
|
5311
|
+
_wrap__api_api_NewRuntimeError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5309
5312
|
{
|
5310
5313
|
PyObject *py_retval;
|
5311
5314
|
int64_t retval;
|
5312
|
-
|
5313
|
-
|
5314
|
-
const char *keywords[] = {"
|
5315
|
+
char *message;
|
5316
|
+
int64_t source;
|
5317
|
+
const char *keywords[] = {"message", "source", NULL};
|
5315
5318
|
|
5316
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5319
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "sL", (char **) keywords, &message, &source)) {
|
5317
5320
|
return NULL;
|
5318
5321
|
}
|
5319
|
-
|
5320
|
-
retval = api_WrapBool(value);
|
5322
|
+
retval = api_NewRuntimeError(message, source);
|
5321
5323
|
if (PyErr_Occurred()) {
|
5322
5324
|
return NULL;
|
5323
5325
|
}
|
5324
5326
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5325
5327
|
return py_retval;
|
5326
5328
|
}
|
5327
|
-
PyObject *
|
5329
|
+
PyObject * _wrap__api_api_NewRuntimeError(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5328
5330
|
|
5329
5331
|
|
5330
5332
|
PyObject *
|
5331
|
-
|
5333
|
+
_wrap__api_api_NewVM(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5332
5334
|
{
|
5333
5335
|
PyObject *py_retval;
|
5334
5336
|
int64_t retval;
|
5335
|
-
|
5336
|
-
const char *keywords[] = {"
|
5337
|
+
int64_t config;
|
5338
|
+
const char *keywords[] = {"config", NULL};
|
5337
5339
|
|
5338
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5340
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &config)) {
|
5339
5341
|
return NULL;
|
5340
5342
|
}
|
5341
|
-
retval =
|
5343
|
+
retval = api_NewVM(config);
|
5342
5344
|
if (PyErr_Occurred()) {
|
5343
5345
|
return NULL;
|
5344
5346
|
}
|
5345
5347
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5346
5348
|
return py_retval;
|
5347
5349
|
}
|
5348
|
-
PyObject *
|
5350
|
+
PyObject * _wrap__api_api_NewVM(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5349
5351
|
|
5350
5352
|
|
5351
5353
|
PyObject *
|
5352
|
-
|
5354
|
+
_wrap__api_api_DefaultConfig(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
5353
5355
|
{
|
5354
5356
|
PyObject *py_retval;
|
5355
5357
|
int64_t retval;
|
5356
|
-
int64_t value;
|
5357
|
-
const char *keywords[] = {"value", NULL};
|
5358
5358
|
|
5359
|
-
|
5360
|
-
return NULL;
|
5361
|
-
}
|
5362
|
-
retval = api_WrapInt(value);
|
5359
|
+
retval = api_DefaultConfig();
|
5363
5360
|
if (PyErr_Occurred()) {
|
5364
5361
|
return NULL;
|
5365
5362
|
}
|
5366
5363
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5367
5364
|
return py_retval;
|
5368
5365
|
}
|
5369
|
-
PyObject *
|
5366
|
+
PyObject * _wrap__api_api_DefaultConfig(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
5370
5367
|
|
5371
5368
|
|
5372
5369
|
PyObject *
|
5373
|
-
|
5370
|
+
_wrap__api_api_NewClassDefinition(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs))
|
5374
5371
|
{
|
5375
5372
|
PyObject *py_retval;
|
5376
5373
|
int64_t retval;
|
5377
5374
|
|
5378
|
-
retval =
|
5375
|
+
retval = api_NewClassDefinition();
|
5379
5376
|
if (PyErr_Occurred()) {
|
5380
5377
|
return NULL;
|
5381
5378
|
}
|
5382
5379
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5383
5380
|
return py_retval;
|
5384
5381
|
}
|
5385
|
-
PyObject *
|
5382
|
+
PyObject * _wrap__api_api_NewClassDefinition(PyObject *PYBINDGEN_UNUSED(_args), PyObject *PYBINDGEN_UNUSED(_kwargs));
|
5386
5383
|
|
5387
5384
|
|
5388
5385
|
PyObject *
|
5389
|
-
|
5386
|
+
_wrap__api_api_ToGoValue(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5390
5387
|
{
|
5391
5388
|
PyObject *py_retval;
|
5392
5389
|
int64_t retval;
|
5393
|
-
|
5394
|
-
char *
|
5395
|
-
const char *keywords[] = {"message", "wrapped", NULL};
|
5390
|
+
int64_t val;
|
5391
|
+
const char *keywords[] = {"val", NULL};
|
5396
5392
|
|
5397
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5393
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &val)) {
|
5398
5394
|
return NULL;
|
5399
5395
|
}
|
5400
|
-
retval =
|
5396
|
+
retval = api_ToGoValue(val);
|
5401
5397
|
if (PyErr_Occurred()) {
|
5402
5398
|
return NULL;
|
5403
5399
|
}
|
5404
5400
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5405
5401
|
return py_retval;
|
5406
5402
|
}
|
5407
|
-
PyObject *
|
5403
|
+
PyObject * _wrap__api_api_ToGoValue(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5408
5404
|
|
5409
5405
|
|
5410
5406
|
PyObject *
|
5411
|
-
|
5407
|
+
_wrap__api_api_WrapBool(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5412
5408
|
{
|
5413
5409
|
PyObject *py_retval;
|
5414
5410
|
int64_t retval;
|
5415
|
-
|
5416
|
-
|
5417
|
-
const char *keywords[] = {"
|
5411
|
+
bool value;
|
5412
|
+
PyObject *py_value;
|
5413
|
+
const char *keywords[] = {"value", NULL};
|
5418
5414
|
|
5419
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5415
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "O", (char **) keywords, &py_value)) {
|
5420
5416
|
return NULL;
|
5421
5417
|
}
|
5422
|
-
|
5418
|
+
value = (bool) PyObject_IsTrue(py_value);
|
5419
|
+
retval = api_WrapBool(value);
|
5423
5420
|
if (PyErr_Occurred()) {
|
5424
5421
|
return NULL;
|
5425
5422
|
}
|
5426
5423
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5427
5424
|
return py_retval;
|
5428
5425
|
}
|
5429
|
-
PyObject *
|
5426
|
+
PyObject * _wrap__api_api_WrapBool(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5430
5427
|
|
5431
5428
|
|
5432
5429
|
PyObject *
|
5433
|
-
|
5430
|
+
_wrap__api_api_WrapInt(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5434
5431
|
{
|
5435
5432
|
PyObject *py_retval;
|
5436
5433
|
int64_t retval;
|
5437
|
-
|
5438
|
-
char *
|
5439
|
-
const char *keywords[] = {"message", "wrapped", NULL};
|
5434
|
+
int64_t value;
|
5435
|
+
const char *keywords[] = {"value", NULL};
|
5440
5436
|
|
5441
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5437
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &value)) {
|
5442
5438
|
return NULL;
|
5443
5439
|
}
|
5444
|
-
retval =
|
5440
|
+
retval = api_WrapInt(value);
|
5445
5441
|
if (PyErr_Occurred()) {
|
5446
5442
|
return NULL;
|
5447
5443
|
}
|
5448
5444
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5449
5445
|
return py_retval;
|
5450
5446
|
}
|
5451
|
-
PyObject *
|
5447
|
+
PyObject * _wrap__api_api_WrapInt(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5452
5448
|
|
5453
5449
|
|
5454
5450
|
PyObject *
|
5455
|
-
|
5451
|
+
_wrap__api_api_WrapAny(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5456
5452
|
{
|
5457
5453
|
PyObject *py_retval;
|
5458
5454
|
int64_t retval;
|
5459
|
-
char *
|
5460
|
-
|
5461
|
-
const char *keywords[] = {"message", "source", NULL};
|
5455
|
+
char *value;
|
5456
|
+
const char *keywords[] = {"value", NULL};
|
5462
5457
|
|
5463
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5458
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "s", (char **) keywords, &value)) {
|
5464
5459
|
return NULL;
|
5465
5460
|
}
|
5466
|
-
retval =
|
5461
|
+
retval = api_WrapAny(value);
|
5467
5462
|
if (PyErr_Occurred()) {
|
5468
5463
|
return NULL;
|
5469
5464
|
}
|
5470
5465
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5471
5466
|
return py_retval;
|
5472
5467
|
}
|
5473
|
-
PyObject *
|
5468
|
+
PyObject * _wrap__api_api_WrapAny(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5474
5469
|
|
5475
5470
|
|
5476
5471
|
PyObject *
|
5477
|
-
|
5472
|
+
_wrap__api_api_WrapObject(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5478
5473
|
{
|
5479
5474
|
PyObject *py_retval;
|
5480
5475
|
int64_t retval;
|
5481
|
-
int64_t
|
5482
|
-
const char *keywords[] = {"
|
5476
|
+
int64_t value;
|
5477
|
+
const char *keywords[] = {"value", NULL};
|
5483
5478
|
|
5484
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
5479
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &value)) {
|
5485
5480
|
return NULL;
|
5486
5481
|
}
|
5487
|
-
retval =
|
5482
|
+
retval = api_WrapObject(value);
|
5488
5483
|
if (PyErr_Occurred()) {
|
5489
5484
|
return NULL;
|
5490
5485
|
}
|
5491
5486
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5492
5487
|
return py_retval;
|
5493
5488
|
}
|
5494
|
-
PyObject *
|
5489
|
+
PyObject * _wrap__api_api_WrapObject(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5495
5490
|
|
5496
5491
|
|
5497
5492
|
PyObject *
|
5498
|
-
|
5493
|
+
_wrap__api_api_WrapFloat(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5499
5494
|
{
|
5500
5495
|
PyObject *py_retval;
|
5501
5496
|
int64_t retval;
|
5497
|
+
double value;
|
5498
|
+
const char *keywords[] = {"value", NULL};
|
5502
5499
|
|
5503
|
-
|
5500
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "d", (char **) keywords, &value)) {
|
5501
|
+
return NULL;
|
5502
|
+
}
|
5503
|
+
retval = api_WrapFloat(value);
|
5504
5504
|
if (PyErr_Occurred()) {
|
5505
5505
|
return NULL;
|
5506
5506
|
}
|
5507
5507
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5508
5508
|
return py_retval;
|
5509
5509
|
}
|
5510
|
-
PyObject *
|
5510
|
+
PyObject * _wrap__api_api_WrapFloat(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5511
5511
|
|
5512
5512
|
|
5513
5513
|
PyObject *
|
5514
|
-
|
5514
|
+
_wrap__api_api_WrapString(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5515
5515
|
{
|
5516
5516
|
PyObject *py_retval;
|
5517
5517
|
int64_t retval;
|
5518
|
-
|
5519
|
-
const char *keywords[] = {"
|
5518
|
+
char *value;
|
5519
|
+
const char *keywords[] = {"value", NULL};
|
5520
5520
|
|
5521
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "
|
5521
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "s", (char **) keywords, &value)) {
|
5522
5522
|
return NULL;
|
5523
5523
|
}
|
5524
|
-
retval =
|
5524
|
+
retval = api_WrapString(value);
|
5525
5525
|
if (PyErr_Occurred()) {
|
5526
5526
|
return NULL;
|
5527
5527
|
}
|
5528
5528
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5529
5529
|
return py_retval;
|
5530
5530
|
}
|
5531
|
-
PyObject *
|
5531
|
+
PyObject * _wrap__api_api_WrapString(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5532
5532
|
|
5533
5533
|
|
5534
5534
|
PyObject *
|
5535
|
-
|
5535
|
+
_wrap__api_api_FromGoValue(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5536
5536
|
{
|
5537
5537
|
PyObject *py_retval;
|
5538
5538
|
int64_t retval;
|
5539
|
-
int64_t
|
5540
|
-
const char *keywords[] = {"
|
5539
|
+
int64_t val;
|
5540
|
+
const char *keywords[] = {"val", NULL};
|
5541
5541
|
|
5542
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
5542
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &val)) {
|
5543
5543
|
return NULL;
|
5544
5544
|
}
|
5545
|
-
retval =
|
5545
|
+
retval = api_FromGoValue(val);
|
5546
5546
|
if (PyErr_Occurred()) {
|
5547
5547
|
return NULL;
|
5548
5548
|
}
|
5549
5549
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5550
5550
|
return py_retval;
|
5551
5551
|
}
|
5552
|
-
PyObject *
|
5552
|
+
PyObject * _wrap__api_api_FromGoValue(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5553
5553
|
|
5554
5554
|
|
5555
5555
|
PyObject *
|
5556
|
-
|
5556
|
+
_wrap__api_api_ConvertArguments(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs)
|
5557
5557
|
{
|
5558
5558
|
PyObject *py_retval;
|
5559
5559
|
int64_t retval;
|
5560
|
-
int64_t
|
5561
|
-
const char *keywords[] = {"
|
5560
|
+
int64_t args2;
|
5561
|
+
const char *keywords[] = {"args", NULL};
|
5562
5562
|
|
5563
|
-
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &
|
5563
|
+
if (!PyArg_ParseTupleAndKeywords(args, kwargs, (char *) "L", (char **) keywords, &args2)) {
|
5564
5564
|
return NULL;
|
5565
5565
|
}
|
5566
|
-
retval =
|
5566
|
+
retval = api_ConvertArguments(args2);
|
5567
5567
|
if (PyErr_Occurred()) {
|
5568
5568
|
return NULL;
|
5569
5569
|
}
|
5570
5570
|
py_retval = Py_BuildValue((char *) "L", retval);
|
5571
5571
|
return py_retval;
|
5572
5572
|
}
|
5573
|
-
PyObject *
|
5573
|
+
PyObject * _wrap__api_api_ConvertArguments(PyObject * PYBINDGEN_UNUSED(dummy), PyObject *args, PyObject *kwargs);
|
5574
5574
|
|
5575
5575
|
|
5576
5576
|
PyObject *
|
@@ -5769,31 +5769,39 @@ static PyMethodDef _api_functions[] = {
|
|
5769
5769
|
{(char *) "Map_string_api_GoValue_set", (PyCFunction) _wrap__api_Map_string_api_GoValue_set, METH_KEYWORDS|METH_VARARGS, "Map_string_api_GoValue_set(handle, key, value)\n\ntype: handle: int64_t\ntype: key: char *\ntype: value: int64_t" },
|
5770
5770
|
{(char *) "Map_string_api_GoValue_delete", (PyCFunction) _wrap__api_Map_string_api_GoValue_delete, METH_KEYWORDS|METH_VARARGS, "Map_string_api_GoValue_delete(handle, _ky)\n\ntype: handle: int64_t\ntype: _ky: char *" },
|
5771
5771
|
{(char *) "Map_string_api_GoValue_keys", (PyCFunction) _wrap__api_Map_string_api_GoValue_keys, METH_KEYWORDS|METH_VARARGS, "Map_string_api_GoValue_keys(handle)\n\ntype: handle: int64_t" },
|
5772
|
-
{(char *) "
|
5773
|
-
{(char *) "
|
5774
|
-
{(char *) "
|
5775
|
-
{(char *) "
|
5776
|
-
{(char *) "
|
5777
|
-
{(char *) "
|
5778
|
-
{(char *) "
|
5779
|
-
{(char *) "
|
5780
|
-
{(char *) "
|
5781
|
-
{(char *) "
|
5782
|
-
{(char *) "
|
5783
|
-
{(char *) "
|
5784
|
-
{(char *) "
|
5785
|
-
{(char *) "
|
5786
|
-
{(char *) "
|
5787
|
-
{(char *) "
|
5788
|
-
{(char *) "
|
5789
|
-
{(char *) "
|
5790
|
-
{(char *) "
|
5791
|
-
{(char *) "
|
5792
|
-
{(char *) "
|
5793
|
-
{(char *) "
|
5794
|
-
{(char *) "
|
5795
|
-
{(char *) "
|
5796
|
-
{(char *) "
|
5772
|
+
{(char *) "api_VMError_CTor", (PyCFunction) _wrap__api_api_VMError_CTor, METH_NOARGS, "api_VMError_CTor()\n\n" },
|
5773
|
+
{(char *) "api_VMError_Type_Get", (PyCFunction) _wrap__api_api_VMError_Type_Get, METH_KEYWORDS|METH_VARARGS, "api_VMError_Type_Get(handle)\n\ntype: handle: int64_t" },
|
5774
|
+
{(char *) "api_VMError_Type_Set", (PyCFunction) _wrap__api_api_VMError_Type_Set, METH_KEYWORDS|METH_VARARGS, "api_VMError_Type_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
5775
|
+
{(char *) "api_VMError_Message_Get", (PyCFunction) _wrap__api_api_VMError_Message_Get, METH_KEYWORDS|METH_VARARGS, "api_VMError_Message_Get(handle)\n\ntype: handle: int64_t" },
|
5776
|
+
{(char *) "api_VMError_Message_Set", (PyCFunction) _wrap__api_api_VMError_Message_Set, METH_KEYWORDS|METH_VARARGS, "api_VMError_Message_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
5777
|
+
{(char *) "api_VMError_Source_Get", (PyCFunction) _wrap__api_api_VMError_Source_Get, METH_KEYWORDS|METH_VARARGS, "api_VMError_Source_Get(handle)\n\ntype: handle: int64_t" },
|
5778
|
+
{(char *) "api_VMError_Source_Set", (PyCFunction) _wrap__api_api_VMError_Source_Set, METH_KEYWORDS|METH_VARARGS, "api_VMError_Source_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
5779
|
+
{(char *) "api_VMError_Duration_Get", (PyCFunction) _wrap__api_api_VMError_Duration_Get, METH_KEYWORDS|METH_VARARGS, "api_VMError_Duration_Get(handle)\n\ntype: handle: int64_t" },
|
5780
|
+
{(char *) "api_VMError_Duration_Set", (PyCFunction) _wrap__api_api_VMError_Duration_Set, METH_KEYWORDS|METH_VARARGS, "api_VMError_Duration_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
5781
|
+
{(char *) "api_VMError_Error", (PyCFunction) _wrap__api_api_VMError_Error, METH_KEYWORDS|METH_VARARGS, "api_VMError_Error(_handle)\n\ntype: _handle: int64_t" },
|
5782
|
+
{(char *) "api_VMError_Unwrap", (PyCFunction) _wrap__api_api_VMError_Unwrap, METH_KEYWORDS|METH_VARARGS, "api_VMError_Unwrap(_handle)\n\ntype: _handle: int64_t" },
|
5783
|
+
{(char *) "api_VMError_IsCompileError", (PyCFunction) _wrap__api_api_VMError_IsCompileError, METH_KEYWORDS|METH_VARARGS, "api_VMError_IsCompileError(_handle)\n\ntype: _handle: int64_t" },
|
5784
|
+
{(char *) "api_VMError_IsRuntimeError", (PyCFunction) _wrap__api_api_VMError_IsRuntimeError, METH_KEYWORDS|METH_VARARGS, "api_VMError_IsRuntimeError(_handle)\n\ntype: _handle: int64_t" },
|
5785
|
+
{(char *) "api_VMError_IsTimeoutError", (PyCFunction) _wrap__api_api_VMError_IsTimeoutError, METH_KEYWORDS|METH_VARARGS, "api_VMError_IsTimeoutError(_handle)\n\ntype: _handle: int64_t" },
|
5786
|
+
{(char *) "api_VMError_IsConversionError", (PyCFunction) _wrap__api_api_VMError_IsConversionError, METH_KEYWORDS|METH_VARARGS, "api_VMError_IsConversionError(_handle)\n\ntype: _handle: int64_t" },
|
5787
|
+
{(char *) "api_VMError_IsConfigError", (PyCFunction) _wrap__api_api_VMError_IsConfigError, METH_KEYWORDS|METH_VARARGS, "api_VMError_IsConfigError(_handle)\n\ntype: _handle: int64_t" },
|
5788
|
+
{(char *) "api_ClassMethod_CTor", (PyCFunction) _wrap__api_api_ClassMethod_CTor, METH_NOARGS, "api_ClassMethod_CTor()\n\n" },
|
5789
|
+
{(char *) "api_ClassMethod_Name_Get", (PyCFunction) _wrap__api_api_ClassMethod_Name_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassMethod_Name_Get(handle)\n\ntype: handle: int64_t" },
|
5790
|
+
{(char *) "api_ClassMethod_Name_Set", (PyCFunction) _wrap__api_api_ClassMethod_Name_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassMethod_Name_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
5791
|
+
{(char *) "api_ClassMethod_Argc_Get", (PyCFunction) _wrap__api_api_ClassMethod_Argc_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassMethod_Argc_Get(handle)\n\ntype: handle: int64_t" },
|
5792
|
+
{(char *) "api_ClassMethod_Argc_Set", (PyCFunction) _wrap__api_api_ClassMethod_Argc_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassMethod_Argc_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
5793
|
+
{(char *) "api_UnknownFunctionHandler_CTor", (PyCFunction) _wrap__api_api_UnknownFunctionHandler_CTor, METH_NOARGS, "api_UnknownFunctionHandler_CTor()\n\n" },
|
5794
|
+
{(char *) "api_VM_CTor", (PyCFunction) _wrap__api_api_VM_CTor, METH_NOARGS, "api_VM_CTor()\n\n" },
|
5795
|
+
{(char *) "api_VM_GetCompatibilityShim", (PyCFunction) _wrap__api_api_VM_GetCompatibilityShim, METH_KEYWORDS|METH_VARARGS, "api_VM_GetCompatibilityShim(_handle)\n\ntype: _handle: int64_t" },
|
5796
|
+
{(char *) "api_VM_Execute", (PyCFunction) _wrap__api_api_VM_Execute, METH_KEYWORDS|METH_VARARGS, "api_VM_Execute(_handle, code)\n\ntype: _handle: int64_t\ntype: code: char *" },
|
5797
|
+
{(char *) "api_VM_ExecuteWithContext", (PyCFunction) _wrap__api_api_VM_ExecuteWithContext, METH_KEYWORDS|METH_VARARGS, "api_VM_ExecuteWithContext(_handle, ctx, code)\n\ntype: _handle: int64_t\ntype: ctx: int64_t\ntype: code: char *" },
|
5798
|
+
{(char *) "api_VM_NewObjectInstance", (PyCFunction) _wrap__api_api_VM_NewObjectInstance, METH_KEYWORDS|METH_VARARGS, "api_VM_NewObjectInstance(_handle, className)\n\ntype: _handle: int64_t\ntype: className: char *" },
|
5799
|
+
{(char *) "api_VM_Call", (PyCFunction) _wrap__api_api_VM_Call, METH_KEYWORDS|METH_VARARGS, "api_VM_Call(_handle, functionName, args)\n\ntype: _handle: int64_t\ntype: functionName: char *\ntype: args: int64_t" },
|
5800
|
+
{(char *) "api_VM_CallMethod", (PyCFunction) _wrap__api_api_VM_CallMethod, METH_KEYWORDS|METH_VARARGS, "api_VM_CallMethod(_handle, object, methodName, args)\n\ntype: _handle: int64_t\ntype: object: int64_t\ntype: methodName: char *\ntype: args: int64_t" },
|
5801
|
+
{(char *) "api_VM_DefineVariable", (PyCFunction) _wrap__api_api_VM_DefineVariable, METH_KEYWORDS|METH_VARARGS, "api_VM_DefineVariable(_handle, name, value, constant)\n\ntype: _handle: int64_t\ntype: name: char *\ntype: value: int64_t\ntype: constant: bool" },
|
5802
|
+
{(char *) "api_VM_SetVariable", (PyCFunction) _wrap__api_api_VM_SetVariable, METH_KEYWORDS|METH_VARARGS, "api_VM_SetVariable(_handle, variableName, value)\n\ntype: _handle: int64_t\ntype: variableName: char *\ntype: value: int64_t" },
|
5803
|
+
{(char *) "api_VM_GetVariable", (PyCFunction) _wrap__api_api_VM_GetVariable, METH_KEYWORDS|METH_VARARGS, "api_VM_GetVariable(_handle, variableName)\n\ntype: _handle: int64_t\ntype: variableName: char *" },
|
5804
|
+
{(char *) "api_VM_DefineClass", (PyCFunction) _wrap__api_api_VM_DefineClass, METH_KEYWORDS|METH_VARARGS, "api_VM_DefineClass(_handle, classDef)\n\ntype: _handle: int64_t\ntype: classDef: int64_t" },
|
5797
5805
|
{(char *) "api_VMCompatibilityShim_CTor", (PyCFunction) _wrap__api_api_VMCompatibilityShim_CTor, METH_NOARGS, "api_VMCompatibilityShim_CTor()\n\n" },
|
5798
5806
|
{(char *) "api_VMCompatibilityShim_DefineFunction", (PyCFunction) _wrap__api_api_VMCompatibilityShim_DefineFunction, METH_KEYWORDS|METH_VARARGS, "api_VMCompatibilityShim_DefineFunction(_handle, id, name, argc, function)\n\ntype: _handle: int64_t\ntype: id: char *\ntype: name: char *\ntype: argc: int64_t\ntype: function: PyObject *" },
|
5799
5807
|
{(char *) "api_VMCompatibilityShim_BuildNewClassVariableWithGetter", (PyCFunction) _wrap__api_api_VMCompatibilityShim_BuildNewClassVariableWithGetter, METH_KEYWORDS|METH_VARARGS, "api_VMCompatibilityShim_BuildNewClassVariableWithGetter(_handle, variable, getterID, getter)\n\ntype: _handle: int64_t\ntype: variable: int64_t\ntype: getterID: char *\ntype: getter: PyObject *" },
|
@@ -5806,6 +5814,13 @@ static PyMethodDef _api_functions[] = {
|
|
5806
5814
|
{(char *) "api_VMCompatibilityShim_GetObjectImmediateFunctions", (PyCFunction) _wrap__api_api_VMCompatibilityShim_GetObjectImmediateFunctions, METH_KEYWORDS|METH_VARARGS, "api_VMCompatibilityShim_GetObjectImmediateFunctions(_handle, id)\n\ntype: _handle: int64_t\ntype: id: char *" },
|
5807
5815
|
{(char *) "api_VMCompatibilityShim_GetObjectImmediateVariables", (PyCFunction) _wrap__api_api_VMCompatibilityShim_GetObjectImmediateVariables, METH_KEYWORDS|METH_VARARGS, "api_VMCompatibilityShim_GetObjectImmediateVariables(_handle, id)\n\ntype: _handle: int64_t\ntype: id: char *" },
|
5808
5816
|
{(char *) "api_VMCompatibilityShim_AddVariableToObject", (PyCFunction) _wrap__api_api_VMCompatibilityShim_AddVariableToObject, METH_KEYWORDS|METH_VARARGS, "api_VMCompatibilityShim_AddVariableToObject(_handle, id, variable)\n\ntype: _handle: int64_t\ntype: id: char *\ntype: variable: int64_t" },
|
5817
|
+
{(char *) "api_SourceLocation_CTor", (PyCFunction) _wrap__api_api_SourceLocation_CTor, METH_NOARGS, "api_SourceLocation_CTor()\n\n" },
|
5818
|
+
{(char *) "api_SourceLocation_Filename_Get", (PyCFunction) _wrap__api_api_SourceLocation_Filename_Get, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Filename_Get(handle)\n\ntype: handle: int64_t" },
|
5819
|
+
{(char *) "api_SourceLocation_Filename_Set", (PyCFunction) _wrap__api_api_SourceLocation_Filename_Set, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Filename_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
5820
|
+
{(char *) "api_SourceLocation_Line_Get", (PyCFunction) _wrap__api_api_SourceLocation_Line_Get, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Line_Get(handle)\n\ntype: handle: int64_t" },
|
5821
|
+
{(char *) "api_SourceLocation_Line_Set", (PyCFunction) _wrap__api_api_SourceLocation_Line_Set, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Line_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
5822
|
+
{(char *) "api_SourceLocation_Column_Get", (PyCFunction) _wrap__api_api_SourceLocation_Column_Get, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Column_Get(handle)\n\ntype: handle: int64_t" },
|
5823
|
+
{(char *) "api_SourceLocation_Column_Set", (PyCFunction) _wrap__api_api_SourceLocation_Column_Set, METH_KEYWORDS|METH_VARARGS, "api_SourceLocation_Column_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
5809
5824
|
{(char *) "api_VMConfig_CTor", (PyCFunction) _wrap__api_api_VMConfig_CTor, METH_NOARGS, "api_VMConfig_CTor()\n\n" },
|
5810
5825
|
{(char *) "api_VMConfig_Stdout_Get", (PyCFunction) _wrap__api_api_VMConfig_Stdout_Get, METH_KEYWORDS|METH_VARARGS, "api_VMConfig_Stdout_Get(handle)\n\ntype: handle: int64_t" },
|
5811
5826
|
{(char *) "api_VMConfig_Stdout_Set", (PyCFunction) _wrap__api_api_VMConfig_Stdout_Set, METH_KEYWORDS|METH_VARARGS, "api_VMConfig_Stdout_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
@@ -5816,22 +5831,6 @@ static PyMethodDef _api_functions[] = {
|
|
5816
5831
|
{(char *) "api_VMConfig_WorkingDirectory_Get", (PyCFunction) _wrap__api_api_VMConfig_WorkingDirectory_Get, METH_KEYWORDS|METH_VARARGS, "api_VMConfig_WorkingDirectory_Get(handle)\n\ntype: handle: int64_t" },
|
5817
5832
|
{(char *) "api_VMConfig_WorkingDirectory_Set", (PyCFunction) _wrap__api_api_VMConfig_WorkingDirectory_Set, METH_KEYWORDS|METH_VARARGS, "api_VMConfig_WorkingDirectory_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
5818
5833
|
{(char *) "api_VMConfig_Validate", (PyCFunction) _wrap__api_api_VMConfig_Validate, METH_KEYWORDS|METH_VARARGS, "api_VMConfig_Validate(_handle)\n\ntype: _handle: int64_t" },
|
5819
|
-
{(char *) "api_VMError_CTor", (PyCFunction) _wrap__api_api_VMError_CTor, METH_NOARGS, "api_VMError_CTor()\n\n" },
|
5820
|
-
{(char *) "api_VMError_Type_Get", (PyCFunction) _wrap__api_api_VMError_Type_Get, METH_KEYWORDS|METH_VARARGS, "api_VMError_Type_Get(handle)\n\ntype: handle: int64_t" },
|
5821
|
-
{(char *) "api_VMError_Type_Set", (PyCFunction) _wrap__api_api_VMError_Type_Set, METH_KEYWORDS|METH_VARARGS, "api_VMError_Type_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
5822
|
-
{(char *) "api_VMError_Message_Get", (PyCFunction) _wrap__api_api_VMError_Message_Get, METH_KEYWORDS|METH_VARARGS, "api_VMError_Message_Get(handle)\n\ntype: handle: int64_t" },
|
5823
|
-
{(char *) "api_VMError_Message_Set", (PyCFunction) _wrap__api_api_VMError_Message_Set, METH_KEYWORDS|METH_VARARGS, "api_VMError_Message_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
5824
|
-
{(char *) "api_VMError_Source_Get", (PyCFunction) _wrap__api_api_VMError_Source_Get, METH_KEYWORDS|METH_VARARGS, "api_VMError_Source_Get(handle)\n\ntype: handle: int64_t" },
|
5825
|
-
{(char *) "api_VMError_Source_Set", (PyCFunction) _wrap__api_api_VMError_Source_Set, METH_KEYWORDS|METH_VARARGS, "api_VMError_Source_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
5826
|
-
{(char *) "api_VMError_Duration_Get", (PyCFunction) _wrap__api_api_VMError_Duration_Get, METH_KEYWORDS|METH_VARARGS, "api_VMError_Duration_Get(handle)\n\ntype: handle: int64_t" },
|
5827
|
-
{(char *) "api_VMError_Duration_Set", (PyCFunction) _wrap__api_api_VMError_Duration_Set, METH_KEYWORDS|METH_VARARGS, "api_VMError_Duration_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
5828
|
-
{(char *) "api_VMError_Error", (PyCFunction) _wrap__api_api_VMError_Error, METH_KEYWORDS|METH_VARARGS, "api_VMError_Error(_handle)\n\ntype: _handle: int64_t" },
|
5829
|
-
{(char *) "api_VMError_Unwrap", (PyCFunction) _wrap__api_api_VMError_Unwrap, METH_KEYWORDS|METH_VARARGS, "api_VMError_Unwrap(_handle)\n\ntype: _handle: int64_t" },
|
5830
|
-
{(char *) "api_VMError_IsCompileError", (PyCFunction) _wrap__api_api_VMError_IsCompileError, METH_KEYWORDS|METH_VARARGS, "api_VMError_IsCompileError(_handle)\n\ntype: _handle: int64_t" },
|
5831
|
-
{(char *) "api_VMError_IsRuntimeError", (PyCFunction) _wrap__api_api_VMError_IsRuntimeError, METH_KEYWORDS|METH_VARARGS, "api_VMError_IsRuntimeError(_handle)\n\ntype: _handle: int64_t" },
|
5832
|
-
{(char *) "api_VMError_IsTimeoutError", (PyCFunction) _wrap__api_api_VMError_IsTimeoutError, METH_KEYWORDS|METH_VARARGS, "api_VMError_IsTimeoutError(_handle)\n\ntype: _handle: int64_t" },
|
5833
|
-
{(char *) "api_VMError_IsConversionError", (PyCFunction) _wrap__api_api_VMError_IsConversionError, METH_KEYWORDS|METH_VARARGS, "api_VMError_IsConversionError(_handle)\n\ntype: _handle: int64_t" },
|
5834
|
-
{(char *) "api_VMError_IsConfigError", (PyCFunction) _wrap__api_api_VMError_IsConfigError, METH_KEYWORDS|METH_VARARGS, "api_VMError_IsConfigError(_handle)\n\ntype: _handle: int64_t" },
|
5835
5834
|
{(char *) "api_ClassDefinition_CTor", (PyCFunction) _wrap__api_api_ClassDefinition_CTor, METH_NOARGS, "api_ClassDefinition_CTor()\n\n" },
|
5836
5835
|
{(char *) "api_ClassDefinition_Name_Get", (PyCFunction) _wrap__api_api_ClassDefinition_Name_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_Name_Get(handle)\n\ntype: handle: int64_t" },
|
5837
5836
|
{(char *) "api_ClassDefinition_Name_Set", (PyCFunction) _wrap__api_api_ClassDefinition_Name_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_Name_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
@@ -5847,22 +5846,13 @@ static PyMethodDef _api_functions[] = {
|
|
5847
5846
|
{(char *) "api_ClassDefinition_PrivateMethods_Set", (PyCFunction) _wrap__api_api_ClassDefinition_PrivateMethods_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_PrivateMethods_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
5848
5847
|
{(char *) "api_ClassDefinition_UnknownFunctionHandler_Get", (PyCFunction) _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_UnknownFunctionHandler_Get(handle)\n\ntype: handle: int64_t" },
|
5849
5848
|
{(char *) "api_ClassDefinition_UnknownFunctionHandler_Set", (PyCFunction) _wrap__api_api_ClassDefinition_UnknownFunctionHandler_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassDefinition_UnknownFunctionHandler_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
5850
|
-
{(char *) "
|
5851
|
-
{(char *) "
|
5852
|
-
{(char *) "
|
5853
|
-
{(char *) "
|
5854
|
-
{(char *) "
|
5855
|
-
{(char *) "
|
5856
|
-
{(char *) "
|
5857
|
-
{(char *) "api_VM_Execute", (PyCFunction) _wrap__api_api_VM_Execute, METH_KEYWORDS|METH_VARARGS, "api_VM_Execute(_handle, code)\n\ntype: _handle: int64_t\ntype: code: char *" },
|
5858
|
-
{(char *) "api_VM_ExecuteWithContext", (PyCFunction) _wrap__api_api_VM_ExecuteWithContext, METH_KEYWORDS|METH_VARARGS, "api_VM_ExecuteWithContext(_handle, ctx, code)\n\ntype: _handle: int64_t\ntype: ctx: int64_t\ntype: code: char *" },
|
5859
|
-
{(char *) "api_VM_NewObjectInstance", (PyCFunction) _wrap__api_api_VM_NewObjectInstance, METH_KEYWORDS|METH_VARARGS, "api_VM_NewObjectInstance(_handle, className)\n\ntype: _handle: int64_t\ntype: className: char *" },
|
5860
|
-
{(char *) "api_VM_Call", (PyCFunction) _wrap__api_api_VM_Call, METH_KEYWORDS|METH_VARARGS, "api_VM_Call(_handle, functionName, args)\n\ntype: _handle: int64_t\ntype: functionName: char *\ntype: args: int64_t" },
|
5861
|
-
{(char *) "api_VM_CallMethod", (PyCFunction) _wrap__api_api_VM_CallMethod, METH_KEYWORDS|METH_VARARGS, "api_VM_CallMethod(_handle, object, methodName, args)\n\ntype: _handle: int64_t\ntype: object: int64_t\ntype: methodName: char *\ntype: args: int64_t" },
|
5862
|
-
{(char *) "api_VM_DefineVariable", (PyCFunction) _wrap__api_api_VM_DefineVariable, METH_KEYWORDS|METH_VARARGS, "api_VM_DefineVariable(_handle, name, value, constant)\n\ntype: _handle: int64_t\ntype: name: char *\ntype: value: int64_t\ntype: constant: bool" },
|
5863
|
-
{(char *) "api_VM_SetVariable", (PyCFunction) _wrap__api_api_VM_SetVariable, METH_KEYWORDS|METH_VARARGS, "api_VM_SetVariable(_handle, variableName, value)\n\ntype: _handle: int64_t\ntype: variableName: char *\ntype: value: int64_t" },
|
5864
|
-
{(char *) "api_VM_GetVariable", (PyCFunction) _wrap__api_api_VM_GetVariable, METH_KEYWORDS|METH_VARARGS, "api_VM_GetVariable(_handle, variableName)\n\ntype: _handle: int64_t\ntype: variableName: char *" },
|
5865
|
-
{(char *) "api_VM_DefineClass", (PyCFunction) _wrap__api_api_VM_DefineClass, METH_KEYWORDS|METH_VARARGS, "api_VM_DefineClass(_handle, classDef)\n\ntype: _handle: int64_t\ntype: classDef: int64_t" },
|
5849
|
+
{(char *) "api_ClassVariable_CTor", (PyCFunction) _wrap__api_api_ClassVariable_CTor, METH_NOARGS, "api_ClassVariable_CTor()\n\n" },
|
5850
|
+
{(char *) "api_ClassVariable_Name_Get", (PyCFunction) _wrap__api_api_ClassVariable_Name_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Name_Get(handle)\n\ntype: handle: int64_t" },
|
5851
|
+
{(char *) "api_ClassVariable_Name_Set", (PyCFunction) _wrap__api_api_ClassVariable_Name_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Name_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
5852
|
+
{(char *) "api_ClassVariable_Value_Get", (PyCFunction) _wrap__api_api_ClassVariable_Value_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Value_Get(handle)\n\ntype: handle: int64_t" },
|
5853
|
+
{(char *) "api_ClassVariable_Value_Set", (PyCFunction) _wrap__api_api_ClassVariable_Value_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Value_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
5854
|
+
{(char *) "api_ClassVariable_Locked_Get", (PyCFunction) _wrap__api_api_ClassVariable_Locked_Get, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Locked_Get(handle)\n\ntype: handle: int64_t" },
|
5855
|
+
{(char *) "api_ClassVariable_Locked_Set", (PyCFunction) _wrap__api_api_ClassVariable_Locked_Set, METH_KEYWORDS|METH_VARARGS, "api_ClassVariable_Locked_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: bool" },
|
5866
5856
|
{(char *) "api_ExecutionResult_CTor", (PyCFunction) _wrap__api_api_ExecutionResult_CTor, METH_NOARGS, "api_ExecutionResult_CTor()\n\n" },
|
5867
5857
|
{(char *) "api_ExecutionResult_Value_Get", (PyCFunction) _wrap__api_api_ExecutionResult_Value_Get, METH_KEYWORDS|METH_VARARGS, "api_ExecutionResult_Value_Get(handle)\n\ntype: handle: int64_t" },
|
5868
5858
|
{(char *) "api_ExecutionResult_Value_Set", (PyCFunction) _wrap__api_api_ExecutionResult_Value_Set, METH_KEYWORDS|METH_VARARGS, "api_ExecutionResult_Value_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
@@ -5870,24 +5860,34 @@ static PyMethodDef _api_functions[] = {
|
|
5870
5860
|
{(char *) "api_ExecutionResult_RawValue_Set", (PyCFunction) _wrap__api_api_ExecutionResult_RawValue_Set, METH_KEYWORDS|METH_VARARGS, "api_ExecutionResult_RawValue_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: int64_t" },
|
5871
5861
|
{(char *) "api_ExecutionResult_Output_Get", (PyCFunction) _wrap__api_api_ExecutionResult_Output_Get, METH_KEYWORDS|METH_VARARGS, "api_ExecutionResult_Output_Get(handle)\n\ntype: handle: int64_t" },
|
5872
5862
|
{(char *) "api_ExecutionResult_Output_Set", (PyCFunction) _wrap__api_api_ExecutionResult_Output_Set, METH_KEYWORDS|METH_VARARGS, "api_ExecutionResult_Output_Set(handle, val)\n\ntype: handle: int64_t\ntype: val: char *" },
|
5873
|
-
{(char *) "
|
5874
|
-
{(char *) "
|
5875
|
-
{(char *) "
|
5876
|
-
{(char *) "
|
5877
|
-
{(char *) "
|
5878
|
-
{(char *) "
|
5879
|
-
{(char *) "
|
5880
|
-
{(char *) "
|
5881
|
-
{(char *) "
|
5863
|
+
{(char *) "api_GoValue_CTor", (PyCFunction) _wrap__api_api_GoValue_CTor, METH_NOARGS, "api_GoValue_CTor()\n\n" },
|
5864
|
+
{(char *) "api_GoValue_ID", (PyCFunction) _wrap__api_api_GoValue_ID, METH_KEYWORDS|METH_VARARGS, "api_GoValue_ID(_handle)\n\ntype: _handle: int64_t" },
|
5865
|
+
{(char *) "api_GoValue_MarshalJSON", (PyCFunction) _wrap__api_api_GoValue_MarshalJSON, METH_KEYWORDS|METH_VARARGS, "api_GoValue_MarshalJSON(_handle)\n\ntype: _handle: int64_t" },
|
5866
|
+
{(char *) "api_GoValue_Type", (PyCFunction) _wrap__api_api_GoValue_Type, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Type(_handle)\n\ntype: _handle: int64_t" },
|
5867
|
+
{(char *) "api_GoValue_Int", (PyCFunction) _wrap__api_api_GoValue_Int, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Int(_handle)\n\ntype: _handle: int64_t" },
|
5868
|
+
{(char *) "api_GoValue_Float", (PyCFunction) _wrap__api_api_GoValue_Float, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Float(_handle)\n\ntype: _handle: int64_t" },
|
5869
|
+
{(char *) "api_GoValue_String", (PyCFunction) _wrap__api_api_GoValue_String, METH_KEYWORDS|METH_VARARGS, "api_GoValue_String(_handle)\n\ntype: _handle: int64_t" },
|
5870
|
+
{(char *) "api_GoValue_Bool", (PyCFunction) _wrap__api_api_GoValue_Bool, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Bool(_handle)\n\ntype: _handle: int64_t" },
|
5871
|
+
{(char *) "api_GoValue_Slice", (PyCFunction) _wrap__api_api_GoValue_Slice, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Slice(_handle)\n\ntype: _handle: int64_t" },
|
5872
|
+
{(char *) "api_GoValue_Map", (PyCFunction) _wrap__api_api_GoValue_Map, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Map(_handle)\n\ntype: _handle: int64_t" },
|
5873
|
+
{(char *) "api_GoValue_Object", (PyCFunction) _wrap__api_api_GoValue_Object, METH_KEYWORDS|METH_VARARGS, "api_GoValue_Object(_handle)\n\ntype: _handle: int64_t" },
|
5874
|
+
{(char *) "api_NewConfigError", (PyCFunction) _wrap__api_api_NewConfigError, METH_KEYWORDS|METH_VARARGS, "api_NewConfigError(message, wrapped)\n\ntype: message: char *\ntype: wrapped: char *" },
|
5875
|
+
{(char *) "api_NewTimeoutError", (PyCFunction) _wrap__api_api_NewTimeoutError, METH_KEYWORDS|METH_VARARGS, "api_NewTimeoutError(duration)\n\ntype: duration: int64_t" },
|
5882
5876
|
{(char *) "api_NewConversionError", (PyCFunction) _wrap__api_api_NewConversionError, METH_KEYWORDS|METH_VARARGS, "api_NewConversionError(message, wrapped)\n\ntype: message: char *\ntype: wrapped: char *" },
|
5883
5877
|
{(char *) "api_NewCompileError", (PyCFunction) _wrap__api_api_NewCompileError, METH_KEYWORDS|METH_VARARGS, "api_NewCompileError(message, source)\n\ntype: message: char *\ntype: source: int64_t" },
|
5884
|
-
{(char *) "api_NewConfigError", (PyCFunction) _wrap__api_api_NewConfigError, METH_KEYWORDS|METH_VARARGS, "api_NewConfigError(message, wrapped)\n\ntype: message: char *\ntype: wrapped: char *" },
|
5885
5878
|
{(char *) "api_NewRuntimeError", (PyCFunction) _wrap__api_api_NewRuntimeError, METH_KEYWORDS|METH_VARARGS, "api_NewRuntimeError(message, source)\n\ntype: message: char *\ntype: source: int64_t" },
|
5886
|
-
{(char *) "api_NewTimeoutError", (PyCFunction) _wrap__api_api_NewTimeoutError, METH_KEYWORDS|METH_VARARGS, "api_NewTimeoutError(duration)\n\ntype: duration: int64_t" },
|
5887
|
-
{(char *) "api_NewClassDefinition", (PyCFunction) _wrap__api_api_NewClassDefinition, METH_NOARGS, "api_NewClassDefinition()\n\n" },
|
5888
5879
|
{(char *) "api_NewVM", (PyCFunction) _wrap__api_api_NewVM, METH_KEYWORDS|METH_VARARGS, "api_NewVM(config)\n\ntype: config: int64_t" },
|
5889
|
-
{(char *) "
|
5880
|
+
{(char *) "api_DefaultConfig", (PyCFunction) _wrap__api_api_DefaultConfig, METH_NOARGS, "api_DefaultConfig()\n\n" },
|
5881
|
+
{(char *) "api_NewClassDefinition", (PyCFunction) _wrap__api_api_NewClassDefinition, METH_NOARGS, "api_NewClassDefinition()\n\n" },
|
5882
|
+
{(char *) "api_ToGoValue", (PyCFunction) _wrap__api_api_ToGoValue, METH_KEYWORDS|METH_VARARGS, "api_ToGoValue(val)\n\ntype: val: int64_t" },
|
5883
|
+
{(char *) "api_WrapBool", (PyCFunction) _wrap__api_api_WrapBool, METH_KEYWORDS|METH_VARARGS, "api_WrapBool(value)\n\ntype: value: bool" },
|
5884
|
+
{(char *) "api_WrapInt", (PyCFunction) _wrap__api_api_WrapInt, METH_KEYWORDS|METH_VARARGS, "api_WrapInt(value)\n\ntype: value: int64_t" },
|
5885
|
+
{(char *) "api_WrapAny", (PyCFunction) _wrap__api_api_WrapAny, METH_KEYWORDS|METH_VARARGS, "api_WrapAny(value)\n\ntype: value: char *" },
|
5886
|
+
{(char *) "api_WrapObject", (PyCFunction) _wrap__api_api_WrapObject, METH_KEYWORDS|METH_VARARGS, "api_WrapObject(value)\n\ntype: value: int64_t" },
|
5887
|
+
{(char *) "api_WrapFloat", (PyCFunction) _wrap__api_api_WrapFloat, METH_KEYWORDS|METH_VARARGS, "api_WrapFloat(value)\n\ntype: value: double" },
|
5888
|
+
{(char *) "api_WrapString", (PyCFunction) _wrap__api_api_WrapString, METH_KEYWORDS|METH_VARARGS, "api_WrapString(value)\n\ntype: value: char *" },
|
5890
5889
|
{(char *) "api_FromGoValue", (PyCFunction) _wrap__api_api_FromGoValue, METH_KEYWORDS|METH_VARARGS, "api_FromGoValue(val)\n\ntype: val: int64_t" },
|
5890
|
+
{(char *) "api_ConvertArguments", (PyCFunction) _wrap__api_api_ConvertArguments, METH_KEYWORDS|METH_VARARGS, "api_ConvertArguments(args)\n\ntype: args: int64_t" },
|
5891
5891
|
{(char *) "api_LookupObject", (PyCFunction) _wrap__api_api_LookupObject, METH_KEYWORDS|METH_VARARGS, "api_LookupObject(id)\n\ntype: id: char *" },
|
5892
5892
|
{NULL, NULL, 0, NULL}
|
5893
5893
|
};
|