ya.make 413 B

1234567891011121314151617181920212223242526272829303132333435
  1. PY2_LIBRARY() # Backport from Python 3.
  2. LICENSE(PSF-2.0)
  3. VERSION(3.5.4)
  4. COPY_FILE(subprocess32.py subprocess.py)
  5. PY_SRCS(
  6. TOP_LEVEL
  7. subprocess32.py
  8. )
  9. IF (NOT OS_WINDOWS)
  10. NO_COMPILER_WARNINGS()
  11. SRCS(
  12. _posixsubprocess.c
  13. )
  14. PY_REGISTER(_posixsubprocess32)
  15. PY_SRCS(
  16. TOP_LEVEL
  17. subprocess.py
  18. )
  19. ENDIF ()
  20. NO_LINT()
  21. END()
  22. RECURSE_FOR_TESTS(
  23. testdata
  24. )