I use python's stdin to recv message from other process
but want to change the stdin buff size for fast recv message
I know the subprocee can set the stdin buff when open a subprocess process
but One of my process is a c process whice send message
the other is a python process which recv message
how can i change the stdin buff size in python?
my host is a linux machine..