From 7688b475b4fffff1088a0c84b45ef8696285e3cd Mon Sep 17 00:00:00 2001 From: Nathan Stocks Date: Mon, 24 Oct 2016 12:43:11 -0600 Subject: [PATCH] Skipping coverage of the support for python 2.7.0 through 2.7.3. --- green/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/green/process.py b/green/process.py index 7aa3270..873caa0 100644 --- a/green/process.py +++ b/green/process.py @@ -142,7 +142,7 @@ def _repopulate_pool(self): from multiprocessing import util try: from multiprocessing.pool import MaybeEncodingError -except: +except: # pragma: no cover # Python 2.7.4 introduced this class. If we're on Python 2.7.0 to 2.7.3 # then we'll have to define it ourselves. :-/ class MaybeEncodingError(Exception):