From b7dd7ee478098d2b1c5780c3d00d272c37ff79d9 Mon Sep 17 00:00:00 2001 From: mbilling Date: Wed, 16 Mar 2016 10:31:20 +0100 Subject: [PATCH 1/5] decreased coverage --- sources/uncovered.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/uncovered.py b/sources/uncovered.py index 8622557..aebd13b 100644 --- a/sources/uncovered.py +++ b/sources/uncovered.py @@ -3,5 +3,6 @@ def func(*args): print(args) + print(2) print("Hello World!") From f1d5fd559193cb4aafd8cd28231791b4ee81950e Mon Sep 17 00:00:00 2001 From: mbilling Date: Wed, 16 Mar 2016 10:36:36 +0100 Subject: [PATCH 2/5] Decreased coverage --- sources/uncovered.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sources/uncovered.py b/sources/uncovered.py index aebd13b..8e30b4c 100644 --- a/sources/uncovered.py +++ b/sources/uncovered.py @@ -4,5 +4,6 @@ def func(*args): print(args) print(2) - + print(3) + print("Hello World!") From b0b717797e0563abb3411e1244c4191cdcb9ce1e Mon Sep 17 00:00:00 2001 From: mbilling Date: Wed, 16 Mar 2016 11:52:52 +0100 Subject: [PATCH 3/5] Decreased coverage --- sources/uncovered.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sources/uncovered.py b/sources/uncovered.py index 8e30b4c..21ae6dc 100644 --- a/sources/uncovered.py +++ b/sources/uncovered.py @@ -4,6 +4,8 @@ def func(*args): print(args) print(2) - print(3) + print(3) + print(4) print("Hello World!") + From 2d36410f989cc4771357d916bc331c7c7c9b928b Mon Sep 17 00:00:00 2001 From: mbillingr Date: Tue, 29 Mar 2016 09:21:18 +0200 Subject: [PATCH 4/5] Update covered.py --- sources/covered.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sources/covered.py b/sources/covered.py index 79d7db4..5807625 100644 --- a/sources/covered.py +++ b/sources/covered.py @@ -4,4 +4,5 @@ def hello(count): s = "Hello World!" if count == 1: return s - return [s] * count + result = tuple([s] * count) + return result From 624dfebc9f23d4987cde267e7c0a5c7bbc45f215 Mon Sep 17 00:00:00 2001 From: mbillingr Date: Tue, 29 Mar 2016 09:30:19 +0200 Subject: [PATCH 5/5] Update covered.py --- sources/covered.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sources/covered.py b/sources/covered.py index 5807625..570bebb 100644 --- a/sources/covered.py +++ b/sources/covered.py @@ -4,5 +4,6 @@ def hello(count): s = "Hello World!" if count == 1: return s - result = tuple([s] * count) + result = [s] * count + result = tuple(result) return result