diff options
author | Andrés Delfino <adelfino@gmail.com> | 2018-06-15 19:42:20 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2018-06-15 19:42:20 (GMT) |
commit | a9d0b34a5c5d4fdc12bba4f9c1e314e6e132cc65 (patch) | |
tree | 60f69e0620ca772a561081db5128ccd62943b420 /Doc | |
parent | 695118600fecaa7b95634e168ad7cbbc561fd1ec (diff) | |
download | cpython-a9d0b34a5c5d4fdc12bba4f9c1e314e6e132cc65.zip cpython-a9d0b34a5c5d4fdc12bba4f9c1e314e6e132cc65.tar.gz cpython-a9d0b34a5c5d4fdc12bba4f9c1e314e6e132cc65.tar.bz2 |
bpo-33854: Add PEP 461 title to 'See also' note (GH-7688)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index f24ed62..ba886f1 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -3388,7 +3388,10 @@ Notes: The bytearray version of this method does *not* operate in place - it always produces a new object, even if no changes were made. -.. seealso:: :pep:`461`. +.. seealso:: + + :pep:`461` - Adding % formatting to bytes and bytearray + .. versionadded:: 3.5 .. _typememoryview: |