Skip to content

Commit

Permalink
Remove the __authors__ var from py files
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavid committed Jul 18, 2012
1 parent 6195491 commit edcd803
Show file tree
Hide file tree
Showing 14 changed files with 0 additions and 32 deletions.
2 changes: 0 additions & 2 deletions test/test_blob.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@
from . import utils


__author__ = '[email protected] (Dave Borowitz)'

BLOB_SHA = 'af431f20fc541ed6d5afede3e2dc7160f6f01f16'
BLOB_NEW_CONTENT = b'foo bar\n'

Expand Down
2 changes: 0 additions & 2 deletions test/test_commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@
from . import utils


__author__ = '[email protected] (Dave Borowitz)'

COMMIT_SHA = '5fe808e8953c12735680c257f56600cb0de44b10'


Expand Down
2 changes: 0 additions & 2 deletions test/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@
from . import utils


__author__ = '[email protected] (M. Lenders)'

config_filename = "test_config"

def foreach_test_wrapper(key, name, lst):
Expand Down
2 changes: 0 additions & 2 deletions test/test_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@

from . import utils

__author__ = '[email protected] (Nico von Geyso)'


COMMIT_SHA1_1 = '5fe808e8953c12735680c257f56600cb0de44b10'
COMMIT_SHA1_2 = 'c2792cfa289ae6321ecf2cd5806c2194b0fd070c'
Expand Down
3 changes: 0 additions & 3 deletions test/test_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@
from . import utils


__author__ = '[email protected] (J. David Ibáñez)'


class IndexBareTest(utils.BareRepoTestCase):

def test_bare(self):
Expand Down
2 changes: 0 additions & 2 deletions test/test_refs.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@
from . import utils


__author__ = '[email protected] (David Versmisse)'

LAST_COMMIT = '2be5719152d4f82c7302b1c0932d8e5f0a4a0e98'


Expand Down
2 changes: 0 additions & 2 deletions test/test_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@
from . import utils


__author__ = '[email protected] (Dave Borowitz)'

HEAD_SHA = '5fe808e8953c12735680c257f56600cb0de44b10'
A_HEX_SHA = 'af431f20fc541ed6d5afede3e2dc7160f6f01f16'
A_BIN_SHA = binascii.unhexlify(A_HEX_SHA.encode('ascii'))
Expand Down
3 changes: 0 additions & 3 deletions test/test_revwalk.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@
from . import utils


__author__ = '[email protected] (J. David Ibáñez)'


# In the order given by git log
log = [
'2be5719152d4f82c7302b1c0932d8e5f0a4a0e98',
Expand Down
4 changes: 0 additions & 4 deletions test/test_signature.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@
from .utils import NoRepoTestCase


__author__ = '[email protected] (J. David Ibáñez)'



class SignatureTest(NoRepoTestCase):

def test_default(self):
Expand Down
2 changes: 0 additions & 2 deletions test/test_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@
from . import utils


__author__ = '[email protected] (Julien Miotte)'

EXPECTED = {
"current_file": pygit2.GIT_STATUS_CURRENT,
"file_deleted": pygit2.GIT_STATUS_WT_DELETED,
Expand Down
2 changes: 0 additions & 2 deletions test/test_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@
from . import utils


__author__ = '[email protected] (Dave Borowitz)'

TAG_SHA = '3d2962987c695a29f1f80b6c3aa4ec046ef44369'


Expand Down
2 changes: 0 additions & 2 deletions test/test_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@
from . import utils


__author__ = '[email protected] (Dave Borowitz)'

TREE_SHA = '967fce8df97cc71722d3c2a5930ef3e6f1d27b12'
SUBTREE_SHA = '614fd9a3094bf618ea938fffc00e7d1a54f89ad0'

Expand Down
2 changes: 0 additions & 2 deletions test/test_treebuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@
from . import utils


__author__ = '[email protected] (Carlos Martín Nieto)'

TREE_SHA = '967fce8df97cc71722d3c2a5930ef3e6f1d27b12'

class TreeBuilderTest(utils.BareRepoTestCase):
Expand Down
2 changes: 0 additions & 2 deletions test/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@
import pygit2


__author__ = '[email protected] (Dave Borowitz)'

def force_rm_handle(remove_path, path, excinfo):
os.chmod(
path,
Expand Down

0 comments on commit edcd803

Please sign in to comment.