-
-
Notifications
You must be signed in to change notification settings - Fork 919
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1662 from EliahKagan/license-ambiguity
Fix URLs that were redirecting to another license
- Loading branch information
Showing
41 changed files
with
43 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
# flake8: noqa | ||
# @PydevCodeAnalysisIgnore | ||
from git.exc import * # @NoMove @IgnorePep8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
from __future__ import annotations | ||
import re | ||
import contextlib | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
"""utilities to help provide compatibility with python 3""" | ||
# flake8: noqa | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
"""Module containing module parser implementation able to properly read and write | ||
configuration files""" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
import re | ||
from git.cmd import handle_process_output | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
""" Module containing all exceptions thrown throughout the git package, """ | ||
|
||
from gitdb.exc import BadName # NOQA @UnusedWildImport skipcq: PYL-W0401, PYL-W0614 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
from contextlib import ExitStack | ||
import datetime | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
from git.exc import WorkTreeRepositoryUnsupported | ||
from git.util import LazyMixin, join_path_native, stream_copy, bin_to_hex | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
from mimetypes import guess_type | ||
from . import base | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
import datetime | ||
import re | ||
from subprocess import Popen, PIPE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
""" Module containing all object based types. """ | ||
from . import base | ||
from .util import get_object_type_by_name, parse_actor_and_date | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
from git.util import IterableList, join_path | ||
import git.diff as git_diff | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
"""Module for general utility functions""" | ||
# flake8: noqa F401 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
# Module implementing a remote object allowing easy access to git remotes | ||
import logging | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
from __future__ import annotations | ||
import logging | ||
import os | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
from abc import abstractmethod | ||
import os.path as osp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
# flake8: noqa | ||
import inspect | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
import contextlib | ||
from functools import wraps | ||
import gc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
from io import BytesIO | ||
from time import time | ||
import sys | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
from test.lib import TestBase | ||
from git import Actor | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
import os | ||
import sys | ||
import tempfile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
from test.lib import TestBase | ||
from git import Blob | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
import copy | ||
from datetime import datetime | ||
from io import BytesIO | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
import glob | ||
import io | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
from git.db import GitCmdObjectDB | ||
from git.exc import BadObject | ||
from test.lib import TestBase | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
import ddt | ||
import shutil | ||
import tempfile | ||
|
@@ -414,7 +414,7 @@ def test_diff_interface(self): | |
|
||
@with_rw_directory | ||
def test_rename_override(self, rw_dir): | ||
"""Test disabling of diff rename detection""" | ||
"""Test disabling of diff rename detection""" | ||
|
||
# create and commit file_a.txt | ||
repo = Repo.init(rw_dir) | ||
|
@@ -480,4 +480,3 @@ def test_rename_override(self, rw_dir): | |
self.assertEqual(True, diff.renamed_file) | ||
self.assertEqual('file_a.txt', diff.rename_from) | ||
self.assertEqual('file_b.txt', diff.rename_to) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
import os | ||
import sys | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Copyright (C) 2008, 2009, 2016 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
|
||
import re | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
import os | ||
import shutil | ||
import subprocess | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
from io import BytesIO | ||
import os | ||
|
@@ -953,4 +953,4 @@ def test_index_add_pathlike(self, rw_repo): | |
file = git_dir / "file.txt" | ||
file.touch() | ||
|
||
rw_repo.index.add(file) | ||
rw_repo.index.add(file) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
from itertools import chain | ||
from pathlib import Path | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
import random | ||
import tempfile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
import glob | ||
import io | ||
from io import BytesIO | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
from test.lib import TestBase, fixture | ||
from git import Stats | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
from io import BytesIO | ||
from unittest import skipIf | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors | ||
# | ||
# This module is part of GitPython and is released under | ||
# the BSD License: http://www.opensource.org/licenses/bsd-license.php | ||
# the BSD License: https://opensource.org/license/bsd-3-clause/ | ||
|
||
import os | ||
import pickle | ||
|