Is there way ( some thing like this “bpy.data.PYCON_LIST…” ) to get access to python console HISTOTY operator list?
Another words, hit UP and DOWN arrow to repeat some commands. Does they stored in some prorerty or variable like list of commands?
The answer is
[print(i.body) for i in bpy.context.space_data.history]
But easy way are wellcome!