File tree Expand file tree Collapse file tree 15 files changed +21
-13
lines changed Expand file tree Collapse file tree 15 files changed +21
-13
lines changed Original file line number Diff line number Diff line change 33# This module is part of GitPython and is released under the
44# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
55
6- """Module containing module parser implementation able to properly read and write
7- configuration files."""
6+ """Parser for reading and writing configuration files."""
87
98import abc
109import configparser as cp
Original file line number Diff line number Diff line change 33# This module is part of GitPython and is released under the
44# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
55
6- """Module containing all exceptions thrown throughout the git package."""
6+ """Exceptions thrown throughout the git package."""
77
88__all__ = [
99 # Defined in gitdb.exc:
Original file line number Diff line number Diff line change 33# This module is part of GitPython and is released under the
44# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
55
6+ """Module containing IndexFile, an Index implementation facilitating all kinds of index
7+ manipulations such as querying and merging."""
8+
69from contextlib import ExitStack
710import datetime
811import glob
Original file line number Diff line number Diff line change 11# This module is part of GitPython and is released under the
22# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
33
4- # Standalone functions to accompany the index implementation and make it more versatile.
5- # NOTE: Autodoc hates it if this is a docstring.
4+ """Standalone functions to accompany the index implementation and make it more versatile."""
65
76from io import BytesIO
87import os
Original file line number Diff line number Diff line change 11# This module is part of GitPython and is released under the
22# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
33
4- """Module with additional types used by the index."""
4+ """Additional types used by the index."""
55
66from binascii import b2a_hex
77from pathlib import Path
Original file line number Diff line number Diff line change 11# This module is part of GitPython and is released under the
22# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
33
4- """Module containing index utilities."""
4+ """Index utilities."""
55
66from functools import wraps
77import os
Original file line number Diff line number Diff line change 11# This module is part of GitPython and is released under the
22# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
33
4- """Module with functions which are supposed to be as fast as possible."""
4+ """Functions that are supposed to be as fast as possible."""
55
66from stat import S_ISDIR
77
Original file line number Diff line number Diff line change 33# This module is part of GitPython and is released under the
44# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
55
6- """Module containing all Object-based types."""
6+ """Object-based types."""
77
88from . import base
99from .util import get_object_type_by_name , parse_actor_and_date
Original file line number Diff line number Diff line change 33# This module is part of GitPython and is released under the
44# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
55
6- """Module for general utility functions."""
6+ """General utility functions."""
77
88# flake8: noqa F401
99
Original file line number Diff line number Diff line change 11# This module is part of GitPython and is released under the
22# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
33
4+ """Some ref-based objects.
5+
6+ Note the distinction between the :class:`HEAD` and :class:`Head` classes.
7+ """
8+
49from git .config import GitConfigParser , SectionConstraint
510from git .util import join_path
611from git .exc import GitCommandError
You can’t perform that action at this time.
0 commit comments