We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4262739 commit 555ae5cCopy full SHA for 555ae5c
libvcs/parse/git.py
@@ -405,7 +405,18 @@ def to_url(self) -> str:
405
406
@dataclasses.dataclass(repr=False)
407
class GitURL(GitPipURL, GitBaseURL, URLProtocol, SkipDefaultFieldsReprMixin):
408
- """Batteries included URL Parser. Supports git(1) and pip URLs."""
+ """Batteries included URL Parser. Supports git(1) and pip URLs.
409
+
410
+ **Ancestors (MRO)**
411
+ This URL parser inherits methods and attributes from the following parsers:
412
413
+ - :class:`GitPipURL`
414
415
+ - :meth:`GitPipURL.to_url`
416
+ - :class:`GitBaseURL`
417
418
+ - :meth:`GitBaseURL.to_url`
419
+ """
420
421
matchers = MatcherRegistry = MatcherRegistry(
422
_matchers={m.label: m for m in [*DEFAULT_MATCHERS, *PIP_DEFAULT_MATCHERS]}
0 commit comments