Home | History | Annotate | Download | only in python2.7

Lines Matching refs:msvcrt

418     import msvcrt
735 p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0)
737 c2pread = msvcrt.open_osfhandle(c2pread.Detach(), 0)
739 errread = msvcrt.open_osfhandle(errread.Detach(), 0)
835 p2cread = msvcrt.get_osfhandle(stdin)
838 p2cread = msvcrt.get_osfhandle(stdin.fileno())
848 c2pwrite = msvcrt.get_osfhandle(stdout)
851 c2pwrite = msvcrt.get_osfhandle(stdout.fileno())
863 errwrite = msvcrt.get_osfhandle(stderr)
866 errwrite = msvcrt.get_osfhandle(stderr.fileno())