Skip to content

Commit 98c17e5

Browse files
authored
Apply suggestions from code review
1 parent 42b6330 commit 98c17e5

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Doc/using/cmdline.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ source.
7373

7474
.. audit-event:: cpython.run_command command cmdoption-c
7575

76-
.. versionchanged:: 3.14
76+
.. versionchanged:: next
7777
*command* is automatically dedented before execution.
7878

7979
.. option:: -m <module-name>

Doc/whatsnew/3.14.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,7 @@ Other language changes
479479
:func:`textwrap.dedent`.
480480
(Contributed by Jon Crall and Steven Sun in :gh:`103998`.)
481481

482+
482483
.. _whatsnew314-pep765:
483484

484485
PEP 765: Disallow return/break/continue that exit a finally block

Objects/unicodeobject.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14278,9 +14278,9 @@ point to the beginning of the common leading whitespace if length > 0.
1427814278
*/
1427914279
static Py_ssize_t
1428014280
search_longest_common_leading_whitespace(
14281-
const char * const src,
14282-
const char * const end,
14283-
const char * * output)
14281+
const char *const src,
14282+
const char *const end,
14283+
const char **output)
1428414284
{
1428514285
// [_start, _start + _len)
1428614286
// describes the current longest common leading whitespace
@@ -14328,7 +14328,7 @@ search_longest_common_leading_whitespace(
1432814328
const char *_iter = _start, *line_iter = line_start;
1432914329

1433014330
while (_iter < _start + _len && line_iter < leading_whitespace_end
14331-
&& *_iter == *line_iter)
14331+
&& *_iter == *line_iter)
1433214332
{
1433314333
++_iter;
1433414334
++line_iter;

0 commit comments

Comments
 (0)