File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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
484485PEP 765: Disallow return/break/continue that exit a finally block
Original file line number Diff line number Diff line change @@ -14278,9 +14278,9 @@ point to the beginning of the common leading whitespace if length > 0.
1427814278*/ 
1427914279static  Py_ssize_t 
1428014280search_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 ;
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments