File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 43
43
# virtual environments
44
44
venv *
45
45
env *
46
+ .python-version
46
47
47
48
* .sublime-workspace
48
49
Original file line number Diff line number Diff line change @@ -146,7 +146,6 @@ def _repopulate_pool_static(
146
146
util .debug ("added worker" )
147
147
148
148
149
-
150
149
import multiprocessing .pool
151
150
from multiprocessing import util # type: ignore
152
151
from multiprocessing .pool import MaybeEncodingError # type: ignore
Original file line number Diff line number Diff line change @@ -141,7 +141,8 @@ def test_verbose3(self):
141
141
"""
142
142
self .args .verbose = 3
143
143
sub_tmpdir = pathlib .Path (tempfile .mkdtemp (dir = self .tmpdir ))
144
- content = dedent ("""
144
+ content = dedent (
145
+ """
145
146
import unittest
146
147
class Verbose3(unittest.TestCase):
147
148
def test01(self):
@@ -400,7 +401,9 @@ class A(unittest.TestCase):
400
401
def testPasses(self):
401
402
pass"""
402
403
)
403
- (sub_tmpdir / "test_detectNumProcesses.py" ).write_text (content , encoding = "utf-8" )
404
+ (sub_tmpdir / "test_detectNumProcesses.py" ).write_text (
405
+ content , encoding = "utf-8"
406
+ )
404
407
# Load the tests
405
408
os .chdir (self .tmpdir )
406
409
try :
You can’t perform that action at this time.
0 commit comments