https://github.com/python/cpython/commit/da5ed621a1c0ea495094aa727bbb0b90fb568c7e commit: da5ed621a1c0ea495094aa727bbb0b90fb568c7e branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: StanFromIreland <[email protected]> date: 2026-09-10T16:24:12Z summary:
[3.14] Fix a stray newline in the `cell` type docstring (GH-157240) (#157276) (cherry picked from commit 34439b8a25eecd5b0da8f653fec286dadb60ba62) Co-authored-by: Daniel Scherzer <[email protected]> files: M Objects/cellobject.c diff --git a/Objects/cellobject.c b/Objects/cellobject.c index ec2eeb1a855b633..823f3c91044c780 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]
