From edcd803e7e4757cf18e17b7b5e78ca4cc1742ba2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=2E=20David=20Ib=C3=A1=C3=B1ez?= <jdavid.ibp@gmail.com>
Date: Wed, 18 Jul 2012 12:12:04 +0200
Subject: [PATCH] Remove the __authors__ var from py files

---
 test/test_blob.py        | 2 --
 test/test_commit.py      | 2 --
 test/test_config.py      | 2 --
 test/test_diff.py        | 2 --
 test/test_index.py       | 3 ---
 test/test_refs.py        | 2 --
 test/test_repository.py  | 2 --
 test/test_revwalk.py     | 3 ---
 test/test_signature.py   | 4 ----
 test/test_status.py      | 2 --
 test/test_tag.py         | 2 --
 test/test_tree.py        | 2 --
 test/test_treebuilder.py | 2 --
 test/utils.py            | 2 --
 14 files changed, 32 deletions(-)

diff --git a/test/test_blob.py b/test/test_blob.py
index 88e1070..c7f5cf6 100644
--- a/test/test_blob.py
+++ b/test/test_blob.py
@@ -35,8 +35,6 @@ import pygit2
 from . import utils
 
 
-__author__ = 'dborowitz@google.com (Dave Borowitz)'
-
 BLOB_SHA = 'af431f20fc541ed6d5afede3e2dc7160f6f01f16'
 BLOB_NEW_CONTENT = b'foo bar\n'
 
diff --git a/test/test_commit.py b/test/test_commit.py
index 8d6f2d7..0884364 100644
--- a/test/test_commit.py
+++ b/test/test_commit.py
@@ -35,8 +35,6 @@ from pygit2 import GIT_OBJ_COMMIT, Signature
 from . import utils
 
 
-__author__ = 'dborowitz@google.com (Dave Borowitz)'
-
 COMMIT_SHA = '5fe808e8953c12735680c257f56600cb0de44b10'
 
 
diff --git a/test/test_config.py b/test/test_config.py
index 2578469..5403bc3 100644
--- a/test/test_config.py
+++ b/test/test_config.py
@@ -34,8 +34,6 @@ import pygit2
 from . import utils
 
 
-__author__ = 'mlenders@elegosoft.com (M. Lenders)'
-
 config_filename = "test_config"
 
 def foreach_test_wrapper(key, name, lst):
diff --git a/test/test_diff.py b/test/test_diff.py
index b6a3347..ddfe398 100644
--- a/test/test_diff.py
+++ b/test/test_diff.py
@@ -33,8 +33,6 @@ import unittest
 
 from . import utils
 
-__author__ = 'Nico.Geyso@FU-Berlin.de (Nico von Geyso)'
-
 
 COMMIT_SHA1_1 = '5fe808e8953c12735680c257f56600cb0de44b10'
 COMMIT_SHA1_2 = 'c2792cfa289ae6321ecf2cd5806c2194b0fd070c'
diff --git a/test/test_index.py b/test/test_index.py
index 6524efd..da77840 100644
--- a/test/test_index.py
+++ b/test/test_index.py
@@ -36,9 +36,6 @@ import pygit2
 from . import utils
 
 
-__author__ = 'jdavid.ibp@gmail.com (J. David Ibáñez)'
-
-
 class IndexBareTest(utils.BareRepoTestCase):
 
     def test_bare(self):
diff --git a/test/test_refs.py b/test/test_refs.py
index 59e29b2..ca582c2 100644
--- a/test/test_refs.py
+++ b/test/test_refs.py
@@ -35,8 +35,6 @@ from pygit2 import GitError, GIT_REF_OID, GIT_REF_SYMBOLIC
 from . import utils
 
 
-__author__ = 'david.versmisse@itaapy.com (David Versmisse)'
-
 LAST_COMMIT = '2be5719152d4f82c7302b1c0932d8e5f0a4a0e98'
 
 
diff --git a/test/test_repository.py b/test/test_repository.py
index 8f056cc..27a674a 100644
--- a/test/test_repository.py
+++ b/test/test_repository.py
@@ -39,8 +39,6 @@ from pygit2 import GIT_OBJ_ANY, GIT_OBJ_BLOB, GIT_OBJ_COMMIT, init_repository, \
 from . import utils
 
 
-__author__ = 'dborowitz@google.com (Dave Borowitz)'
-
 HEAD_SHA  = '5fe808e8953c12735680c257f56600cb0de44b10'
 A_HEX_SHA = 'af431f20fc541ed6d5afede3e2dc7160f6f01f16'
 A_BIN_SHA = binascii.unhexlify(A_HEX_SHA.encode('ascii'))
diff --git a/test/test_revwalk.py b/test/test_revwalk.py
index 65fe254..f7e56c6 100644
--- a/test/test_revwalk.py
+++ b/test/test_revwalk.py
@@ -35,9 +35,6 @@ from pygit2 import GIT_SORT_TIME, GIT_SORT_REVERSE
 from . import utils
 
 
-__author__ = 'jdavid.ibp@gmail.com (J. David Ibáñez)'
-
-
 # In the order given by git log
 log = [
     '2be5719152d4f82c7302b1c0932d8e5f0a4a0e98',
diff --git a/test/test_signature.py b/test/test_signature.py
index 2ad7348..1ee7e2b 100644
--- a/test/test_signature.py
+++ b/test/test_signature.py
@@ -33,10 +33,6 @@ from pygit2 import Signature
 from .utils import NoRepoTestCase
 
 
-__author__ = 'jdavid.ibp@gmail.com (J. David Ibáñez)'
-
-
-
 class SignatureTest(NoRepoTestCase):
 
     def test_default(self):
diff --git a/test/test_status.py b/test/test_status.py
index 3eb6b56..e6780a4 100644
--- a/test/test_status.py
+++ b/test/test_status.py
@@ -35,8 +35,6 @@ import pygit2
 from . import utils
 
 
-__author__ = 'mike.perdide@gmail.com (Julien Miotte)'
-
 EXPECTED = {
  "current_file":                    pygit2.GIT_STATUS_CURRENT,
  "file_deleted":                    pygit2.GIT_STATUS_WT_DELETED,
diff --git a/test/test_tag.py b/test/test_tag.py
index caa2815..8847845 100644
--- a/test/test_tag.py
+++ b/test/test_tag.py
@@ -35,8 +35,6 @@ import pygit2
 from . import utils
 
 
-__author__ = 'dborowitz@google.com (Dave Borowitz)'
-
 TAG_SHA = '3d2962987c695a29f1f80b6c3aa4ec046ef44369'
 
 
diff --git a/test/test_tree.py b/test/test_tree.py
index f45928a..4ec22a9 100644
--- a/test/test_tree.py
+++ b/test/test_tree.py
@@ -36,8 +36,6 @@ import pygit2
 from . import utils
 
 
-__author__ = 'dborowitz@google.com (Dave Borowitz)'
-
 TREE_SHA = '967fce8df97cc71722d3c2a5930ef3e6f1d27b12'
 SUBTREE_SHA = '614fd9a3094bf618ea938fffc00e7d1a54f89ad0'
 
diff --git a/test/test_treebuilder.py b/test/test_treebuilder.py
index 9dba68a..8dbea77 100644
--- a/test/test_treebuilder.py
+++ b/test/test_treebuilder.py
@@ -34,8 +34,6 @@ import unittest
 from . import utils
 
 
-__author__ = 'carlos@cmartin.tk (Carlos Martín Nieto)'
-
 TREE_SHA = '967fce8df97cc71722d3c2a5930ef3e6f1d27b12'
 
 class TreeBuilderTest(utils.BareRepoTestCase):
diff --git a/test/utils.py b/test/utils.py
index 356a275..56f84ea 100644
--- a/test/utils.py
+++ b/test/utils.py
@@ -39,8 +39,6 @@ import hashlib
 import pygit2
 
 
-__author__ = 'dborowitz@google.com (Dave Borowitz)'
-
 def force_rm_handle(remove_path, path, excinfo):
     os.chmod(
         path,