https://github.com/python/cpython/commit/34439b8a25eecd5b0da8f653fec286dadb60ba62 commit: 34439b8a25eecd5b0da8f653fec286dadb60ba62 branch: main author: Daniel Scherzer <[email protected]> committer: StanFromIreland <[email protected]> date: 2026-09-10T16:54:47+01:00 summary:
Fix a stray newline in the `cell` type docstring (#157240) files: M Objects/cellobject.c 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."); _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
