I'm trying to profile a script for Blender written in python. Problem is that majority of running time is spent in "built-in method call" which I rally don't know what is.
Could anybody tell me what this method does or give me some hint how to reduce its computational time?
Sample output of cProfile is:
71193 function calls (63983 primitive calls) in 9.305 seconds
...
816 6.427 0.008 6.427 0.008 {built-in method call}
...
Thanks.