https://github.com/python/cpython/commit/0dea2dc51a40673dbbf5bd5184f0a7e55b1f83ca commit: 0dea2dc51a40673dbbf5bd5184f0a7e55b1f83ca branch: 3.15 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2026-09-10T16:28:54Z summary:
[3.15] Fix a stray newline in the `cell` type docstring (GH-157240) (#157278) Co-authored-by: Daniel Scherzer <[email protected]> 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]
