gh-123492: Remove unnecessary :func: parentheses (#123493)

This commit is contained in:
Wei-Hsiang (Matt) Wang 2024-08-30 19:34:09 +08:00 committed by GitHub
parent 8aaf7525ab
commit 103a0470e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
78 changed files with 154 additions and 154 deletions

View file

@ -380,7 +380,7 @@ Bytes
A bytes object is an immutable array. The items are 8-bit bytes,
represented by integers in the range 0 <= x < 256. Bytes literals
(like ``b'abc'``) and the built-in :func:`bytes()` constructor
(like ``b'abc'``) and the built-in :func:`bytes` constructor
can be used to create bytes objects. Also, bytes objects can be
decoded to strings via the :meth:`~bytes.decode` method.