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