Infra: Include PEP number in API (#2879)
Fixes https://github.com/python/peps/issues/2878
This commit is contained in:
parent
11669a5772
commit
5731720068
|
@ -148,9 +148,10 @@ class PEP:
|
||||||
}
|
}
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def full_details(self) -> dict[str, str]:
|
def full_details(self) -> dict[str, str | int]:
|
||||||
"""Returns all headers of the PEP as a dict."""
|
"""Returns all headers of the PEP as a dict."""
|
||||||
return {
|
return {
|
||||||
|
"number": self.number,
|
||||||
"title": self.title,
|
"title": self.title,
|
||||||
"authors": ", ".join(author.nick for author in self.authors),
|
"authors": ", ".join(author.nick for author in self.authors),
|
||||||
"discussions_to": self.discussions_to,
|
"discussions_to": self.discussions_to,
|
||||||
|
|
Loading…
Reference in New Issue