ldmud/test/t-python/inh.c
Alexander Motzkau 987b89bbd8 Python: Added protector for replace_program()
When lfun or variable objects are created, we need to make sure,
the indices are adjusted if a replace_program() is in progress.
Just like closures we create a protector structure that will be
processed after the replace_program().
2020-04-28 22:30:06 +02:00

7 lines
95 B
C

/* Inherit for testrp.c */
string var_inh = "v_inh";
string fun_inh()
{
return "f_inh";
}