6bc5671491
Apply: git diff --full-index --binary anaconda-23.19.10-1..anaconda-25.20.9-1 And resolve conflicts. QubesOS/qubes-issues#2574
9 lines
191 B
Python
9 lines
191 B
Python
# Enable Python coverage for subprocesses. See:
|
|
# http://nedbatchelder.com/code/coverage/subprocess.html
|
|
|
|
try:
|
|
import coverage
|
|
coverage.process_startup()
|
|
except ImportError:
|
|
pass
|