[Python-checkins] test.support.SaveSignals: fix typo (GH-7448)

Victor Stinner webhook-mailer at python.org
Wed Jun 6 09:34:52 EDT 2018


https://github.com/python/cpython/commit/36c60fb2567a26ab23b533530d57d86207b91eea
commit: 36c60fb2567a26ab23b533530d57d86207b91eea
branch: master
author: Victor Stinner <vstinner at redhat.com>
committer: GitHub <noreply at github.com>
date: 2018-06-06T15:34:46+02:00
summary:

test.support.SaveSignals: fix typo (GH-7448)

an => and

files:
M Lib/test/support/__init__.py

diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py
index 1015dd9af202..a3a42cd69d0e 100644
--- a/Lib/test/support/__init__.py
+++ b/Lib/test/support/__init__.py
@@ -2821,7 +2821,7 @@ def fd_count():
 
 class SaveSignals:
     """
-    Save an restore signal handlers.
+    Save and restore signal handlers.
 
     This class is only able to save/restore signal handlers registered
     by the Python signal module: see bpo-13285 for "external" signal



More information about the Python-checkins mailing list