From 2cbe2e1f20a6ac2d7de247a7ec960bb99d34a182 Mon Sep 17 00:00:00 2001 From: Tony S Yu Date: Sun, 16 Sep 2012 15:44:52 -0400 Subject: [PATCH] DOC: Fix attribution for testing function The testing functions taken from scikit-learn were in a file with a copyright assigned to Pietro, but Andreas was resposible for the specific lines that were copied. --- CONTRIBUTORS.txt | 2 +- skimage/_shared/testing.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index 4abe9256..5f375c39 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -73,7 +73,7 @@ From whom we borrowed the example generation tools. - Andreas Mueller - Example data set loader. + Example data set loader. Nosetest compatibility functions. Quickshift image segmentation, Felzenszwalbs fast graph based segmentation. - Yaroslav Halchenko diff --git a/skimage/_shared/testing.py b/skimage/_shared/testing.py index a5270125..eab83a56 100644 --- a/skimage/_shared/testing.py +++ b/skimage/_shared/testing.py @@ -1,7 +1,5 @@ """Testing utilities.""" -# Copyright (c) 2011 Pietro Berkes -# License: Simplified BSD def _assert_less(a, b, msg=None): message = "%r is not lower than %r" % (a, b)