Skip to content

Commit 77bbe79

Browse files
authored
PEP 404: Add Python 2.8 to Release PEPs topic (#2986)
1 parent b6ac1fa commit 77bbe79

File tree

2 files changed

+2
-13
lines changed

2 files changed

+2
-13
lines changed

pep-0404.txt

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
PEP: 404
22
Title: Python 2.8 Un-release Schedule
3-
Version: $Revision$
4-
Last-Modified: $Date$
53
Author: Barry Warsaw <[email protected]>
64
Status: Final
75
Type: Informational
6+
Topic: Release
87
Content-Type: text/x-rst
98
Created: 09-Nov-2011
109
Python-Version: 2.8
@@ -182,13 +181,3 @@ This document has been placed in the public domain.
182181
.. _differences: http://docs.python.org/release/3.0.1/whatsnew/3.0.html
183182
.. _porting: http://python3porting.com/
184183

185-
186-
187-
..
188-
Local Variables:
189-
mode: indented-text
190-
indent-tabs-mode: nil
191-
sentence-end-double-space: t
192-
fill-column: 70
193-
coding: utf-8
194-
End:

pep_sphinx_extensions/pep_zero_generator/writer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def _classify_peps(peps: list[PEP]) -> tuple[list[PEP], ...]:
253253
# Hack until the conflict between the use of "Final"
254254
# for both API definition PEPs and other (actually
255255
# obsolete) PEPs is addressed
256-
if pep.status == STATUS_ACTIVE or "Release Schedule" not in pep.title:
256+
if pep.status == STATUS_ACTIVE or "release schedule" not in pep.title.lower():
257257
info.append(pep)
258258
else:
259259
historical.append(pep)

0 commit comments

Comments
 (0)