Let us walk on the 3-isogeny graph
Loading...
Searching...
No Matches
pip._vendor.rich.highlighter Namespace Reference

Data Structures

class  Highlighter
 
class  ISO8601Highlighter
 
class  JSONHighlighter
 
class  NullHighlighter
 
class  RegexHighlighter
 
class  ReprHighlighter
 

Functions

str _combine_regex (*str regexes)
 

Variables

 console = Console()
 
 indent
 

Function Documentation

◆ _combine_regex()

str _combine_regex ( *str  regexes)
protected
Combine a number of regexes in to a single regex.

Returns:
    str: New regex with all regexes ORed together.

Definition at line 8 of file highlighter.py.

8def _combine_regex(*regexes: str) -> str:
9 """Combine a number of regexes in to a single regex.
10
11 Returns:
12 str: New regex with all regexes ORed together.
13 """
14 return "|".join(regexes)
15
16

Variable Documentation

◆ console

console = Console()

Definition at line 204 of file highlighter.py.

◆ indent

indent

Definition at line 232 of file highlighter.py.