SIGN IN SIGN UP

bpo-34239: Convert test_bz2 to use tempfile (#8485)

* bpo-34239: Convert test_bz2 to use tempfile

test_bz2 currently uses the test.support.TESTFN functionality which creates a temporary file local to the test directory named around the pid.

This can give rise to race conditions where tests are competing with each other to delete and recreate the file.

This change converts the tests to use tempfile.mkstemp which gives a different file every time from the system's temp area
T
Tim Golden committed
6a62e1d365934de82ff7c634981b3fbf218b4d5f
Parent: 56b29b6
Committed by GitHub <noreply@github.com> on 7/26/2018, 9:05:00 PM