class documentation
Represents a single Git trailer.
| Parameters | |
| key | The trailer key/token (e.g., "Signed-off-by") |
| value | The trailer value |
| separator | The separator character used (default ':') |
| Method | __eq__ |
Compare two Trailer instances for equality. |
| Method | __init__ |
Initialize a Trailer instance. |
| Method | __repr__ |
Return a string representation suitable for debugging. |
| Method | __str__ |
Return the trailer formatted as it would appear in a commit message. |
| Instance Variable | key |
Undocumented |
| Instance Variable | separator |
Undocumented |
| Instance Variable | value |
Undocumented |
Return a string representation suitable for debugging.
| Returns | |
str | A string showing the trailer's key, value, and separator |