I'm trying to understand atomicity of this command with
import dis
import sys
dis.dis(sys.stderr.write)
However, I get "TypeError: don't know how to disassemble builtin_function_or_method objects"
How to determine atomicity of python built-in functions?