mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-30 14:16:07 +00:00

I D65322 I added a check for BrokenPipeError. However, python 2.7 doesn't have BrokenPipeError. To be python 2.7 and 3 compatible we need to catch IOError instead and check for errno == errno.EPIPE. llvm-svn: 370025