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