https://github.com/python/cpython/commit/997d79d318c8b9820dfcdfa43765636b2efcac62 commit: 997d79d318c8b9820dfcdfa43765636b2efcac62 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: StanFromIreland <[email protected]> date: 2026-09-10T16:21:01Z summary:
[3.13] Fix a stray newline in the `cell` type docstring (GH-157240) (#157277) (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 b1154e4ca4ace64..4342d3291037e19 100644 --- a/Objects/cellobject.c +++ b/Objects/cellobject.c @@ -27,7 +27,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]
