diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-06-06 15:34:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-06 15:34:46 +0200 |
commit | 36c60fb2567a26ab23b533530d57d86207b91eea (patch) | |
tree | d1b3cff4d253efcf75b9c8fb77cb9b4634763045 /Lib | |
parent | b5d702e5e7291eed21666ed931da2a5e92c28a65 (diff) | |
download | cpython-git-36c60fb2567a26ab23b533530d57d86207b91eea.tar.gz |
test.support.SaveSignals: fix typo (GH-7448)
an => and
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/support/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index 1015dd9af2..a3a42cd69d 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 |