Skip to content

Commit

Permalink
PEP 691: Fix wrong reference to PEP 529 (#4098)
Browse files Browse the repository at this point in the history
  • Loading branch information
ProFatXuanAll authored Oct 31, 2024
1 parent 5d6dcb7 commit 497ea8e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions peps/pep-0691.rst
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,7 @@ Appendix 2: Rough Underlying Data Models
These are not intended to perfectly match the server, client, or wire
formats. Rather, these are conceptual models, put to code to make them
more explicit as to the abstract models underlining the repository API
as it evolved through :pep:`503`, :pep:`529`, :pep:`629`, :pep:`658`,
as it evolved through :pep:`503`, :pep:`592`, :pep:`629`, :pep:`658`,
and now this PEP, :pep:`691`.

The existing HTML, and the new JSON serialization of these models then
Expand Down Expand Up @@ -984,11 +984,11 @@ this PEP.
@dataclass
class PEP529File(File):
class PEP592File(File):
yanked: bool | str
@dataclass
class PEP658File(PEP529File):
class PEP658File(PEP592File):
# Limited to a len() of 1 in HTML
dist_info_metadata: bool | dict[str, str]
Expand Down Expand Up @@ -1016,12 +1016,12 @@ this PEP.
@dataclass
class PEP529_Detail(PEP503_Detail):
files: set[PEP529File]
class PEP592_Detail(PEP503_Detail):
files: set[PEP592File]
@dataclass
class PEP629_Detail(PEP529_Detail):
class PEP629_Detail(PEP592_Detail):
meta: Meta
Expand Down

0 comments on commit 497ea8e

Please sign in to comment.