Skip to content

Commit

Permalink
📝 Fix signal references in changelog
Browse files Browse the repository at this point in the history
This corrects the intersphinx links to Python stdlib for
`SIGINT` and `SIGTERM` mentions in changelog.
  • Loading branch information
webknjaz committed Apr 2, 2024
1 parent be758ae commit 1d28a07
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ Internal changes:

- :pr:`350`: Fixed the incarnation of an earlier regression
of not resetting the serving state
on :py:data:`SIGINT` originally fixed by :pr:`322` and
:pr:`331` but reintroduced by the changes in :pr:`311`
on :py:data:`~signal.SIGINT` originally fixed by :pr:`322`
and :pr:`331` but reintroduced by the changes in :pr:`311`
-- by :user:`liamstask`.

.. scm-version-title:: v8.5.0
Expand Down Expand Up @@ -101,8 +101,8 @@ Internal changes:
regression introduced in the earlier refactoring in v8.4.4
via :pr:`309` that caused the :py:meth:`~cheroot.server.\
HTTPServer.serve` method to skip setting
``serving=False`` on :py:data:``SIGINT`` and
:py:data:``SIGTERM`` -- by :user:`marc1n` and
``serving=False`` on :py:data:`~signal.SIGINT` and
:py:data:`~signal.SIGTERM` -- by :user:`marc1n` and
:user:`cristicbz`.

.. scm-version-title:: v8.4.5
Expand Down
1 change: 0 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@
# NOTE: consider having a separate ignore file
# Ref: https://stackoverflow.com/a/30624034/595220
nitpick_ignore = [
('py:data', 'SIGINT'),
('py:const', 'socket.SO_PEERCRED'),
('py:class', '_pyio.BufferedWriter'),
('py:class', '_pyio.BufferedReader'),
Expand Down

0 comments on commit 1d28a07

Please sign in to comment.