From 2f5b5648e4ba71c38a9e4bce5c4696ad3b760727 Mon Sep 17 00:00:00 2001 From: Jan van der Lugt Date: Thu, 11 Nov 2021 09:44:09 +0100 Subject: [PATCH] Add extra newline in io.BytesIO.seek() to prevent a Sphinx warning. --- Modules/_io/bytesio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/_io/bytesio.c b/Modules/_io/bytesio.c index 930ef7e29dbcf6..f2dd4a7bcb9873 100644 --- a/Modules/_io/bytesio.c +++ b/Modules/_io/bytesio.c @@ -645,6 +645,7 @@ Seek to byte offset pos relative to position indicated by whence: 0 Start of stream (the default). pos should be >= 0; 1 Current position - pos may be negative; 2 End of stream - pos usually negative. + Returns the new absolute position. [clinic start generated code]*/