Commit f6fb5600 by Alan Mishchenko

Moves the code of create_abc_array to line 724.

parent 05c8df33
...@@ -722,6 +722,13 @@ def cex_put(cex): ...@@ -722,6 +722,13 @@ def cex_put(cex):
return _cex_put(cex.pCex) return _cex_put(cex.pCex)
def create_abc_array(List):
_pyabc_array_clear()
for ObjId in List:
_pyabc_array_push(ObjId)
import threading import threading
import select import select
import signal import signal
...@@ -1185,9 +1192,5 @@ def cmd_python(cmd_args): ...@@ -1185,9 +1192,5 @@ def cmd_python(cmd_args):
add_abc_command(cmd_python, "Python", "python", 0) add_abc_command(cmd_python, "Python", "python", 0)
def create_abc_array(List):
_pyabc_array_clear()
for ObjId in List:
_pyabc_array_push(ObjId)
%} %}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment