From 1078a5a1cf2ace0818b98a830dc7892ca8f300d5 Mon Sep 17 00:00:00 2001 From: Daniel Scherzer Date: Wed, 9 Sep 2026 15:58:35 -0700 Subject: [PATCH] Cell: remove unneeded newline in the middle of class documentation The `contents` documentation was split over multiple lines, but an extra newline meant that there was an (indented) line with just the word "and" followed by an unindented line with "further attempts...". Remove that newline to avoid having just a single word in the documentation and to fix the indentation. --- Objects/cellobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/cellobject.c b/Objects/cellobject.c index ec2eeb1a855b63..823f3c91044c78 100644 --- a/Objects/cellobject.c +++ b/Objects/cellobject.c @@ -29,7 +29,7 @@ PyDoc_STRVAR(cell_new_doc, "\n" " contents\n" " the contents of the cell. If not specified, the cell will be empty,\n" -" and \n further attempts to access its cell_contents attribute will\n" +" and further attempts to access its cell_contents attribute will\n" " raise a ValueError.");