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 fa1533a commit 7f53b35Copy full SHA for 7f53b35
1 file changed
peps/api/index.rst
@@ -112,6 +112,23 @@ release-cycle.json
112
There is a read-only JSON document of Python releases since version 2.6
113
available at https://peps.python.org/api/release-cycle.json.
114
115
+Each feature version is represented as a JSON object,
116
+keyed by the minor version number ("X.Y").
117
+The structure of each JSON object is as follows:
118
+
119
+.. code-block:: typescript
120
121
+ {
122
+ "<language version number>": {
123
+ "branch": string,
124
+ "pep": integer,
125
+ "status": 'feature' | 'prerelease' | 'bugfix' | 'security' | 'end-of-life',
126
+ "first_release": string, // Date formatted as YYYY-MM-DD
127
+ "end_of_life": string, // Date formatted as YYYY-MM-DD
128
+ "release_manager": string
129
+ },
130
+}
131
132
For example:
133
134
.. code-block:: json
0 commit comments