From 29b770a068534d1bdf124c7a393718bcb0c5007b Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Wed, 23 Aug 2023 20:15:43 +0100 Subject: [PATCH] ENSURE REVERSION: Introduce errors --- pep-0011.txt | 2 +- pep-0376.txt | 2 +- pep-0499.txt | 2 +- pep-0623.rst | 2 +- pep-0703.rst | 1 + pep-0720.rst | 1 + pep-3152.txt | 1 + pep-lint.py | 2 +- 8 files changed, 8 insertions(+), 5 deletions(-) diff --git a/pep-0011.txt b/pep-0011.txt index 63131c3a277..ffbd2e76659 100644 --- a/pep-0011.txt +++ b/pep-0011.txt @@ -8,7 +8,7 @@ Content-Type: text/x-rst Created: 07-Jul-2002 Post-History: `18-Aug-2007 `__, `14-May-2014 `__, - `20-Feb-2015 `__, + `20-Feb-2015 `__, `10-Mar-2022 `__, diff --git a/pep-0376.txt b/pep-0376.txt index 60119c69e74..5cc2bfc8f3c 100644 --- a/pep-0376.txt +++ b/pep-0376.txt @@ -7,7 +7,7 @@ Topic: Packaging Content-Type: text/x-rst Created: 22-Feb-2009 Python-Version: 2.7, 3.2 -Post-History: `22-Jun-2009 `__ +Post-History: `22-Jun-2009 `__ .. canonical-pypa-spec:: :ref:`packaging:core-metadata` diff --git a/pep-0499.txt b/pep-0499.txt index e48a24767a0..9cbf6f8c3f0 100644 --- a/pep-0499.txt +++ b/pep-0499.txt @@ -1,5 +1,5 @@ PEP: 499 -Title: ``python -m foo`` should also bind ``'foo'`` in ``sys.modules`` +Title: ``python -m foo`` should bind ``sys.modules['foo']`` in addition to ``sys.modules['__main__']`` Version: $Revision$ Last-Modified: $Date$ Author: Cameron Simpson , Chris Angelico , Joseph Jevnik diff --git a/pep-0623.rst b/pep-0623.rst index 0d182add1c0..ce0227d5527 100644 --- a/pep-0623.rst +++ b/pep-0623.rst @@ -8,7 +8,7 @@ Type: Standards Track Content-Type: text/x-rst Created: 25-Jun-2020 Python-Version: 3.10 -Resolution: https://mail.python.org/archives/list/python-dev@python.org/thread/VQKDIZLZ6HF2MLTNCUFURK2IFTXVQEYA/ +Resolution: https://mail.python.org/archives/list/python-dev@python.org/thread/VQKDIZLZ6HF2MLTNCUFURK2IFTXVQEYA/#VQKDIZLZ6HF2MLTNCUFURK2IFTXVQEYA Abstract diff --git a/pep-0703.rst b/pep-0703.rst index 92080992bfa..be2a8e99415 100644 --- a/pep-0703.rst +++ b/pep-0703.rst @@ -10,6 +10,7 @@ Created: 09-Jan-2023 Python-Version: 3.13 Post-History: `09-Jan-2023 `__, `04-May-2023 `__ +Resolution: Abstract diff --git a/pep-0720.rst b/pep-0720.rst index 14e0708c7b9..87c00ae7c97 100644 --- a/pep-0720.rst +++ b/pep-0720.rst @@ -7,6 +7,7 @@ Type: Informational Content-Type: text/x-rst Created: 01-Jul-2023 Python-Version: 3.12 +Resolution: Abstract diff --git a/pep-3152.txt b/pep-3152.txt index 46bcab5e362..c6f5be77b39 100644 --- a/pep-3152.txt +++ b/pep-3152.txt @@ -9,6 +9,7 @@ Content-Type: text/x-rst Created: 13-Feb-2009 Python-Version: 3.3 Post-History: +Resolution: Abstract diff --git a/pep-lint.py b/pep-lint.py index 183d6d2b518..fc8ebb176b8 100755 --- a/pep-lint.py +++ b/pep-lint.py @@ -74,7 +74,7 @@ }) # PEPs that are allowed to link directly to PEPs -SKIP_DIRECT_PEP_LINK_CHECK = frozenset({"0009", "0287", "0676", "0684", "8001"}) +SKIP_DIRECT_PEP_LINK_CHECK = frozenset() # any sequence of letters or '-', followed by a single ':' and a space or end of line HEADER_PATTERN = re.compile(r"^([a-z\-]+):(?: |$)", re.ASCII | re.IGNORECASE)