File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2359,21 +2359,21 @@ PyObject*
23592359PyFrame_GetLocals (PyFrameObject  * frame )
23602360{
23612361    assert (!_PyFrame_IsIncomplete (frame -> f_frame ));
2362-     return  frame_locals_get (frame , NULL );
2362+     return  frame_locals_get (( PyObject   * ) frame , NULL );
23632363}
23642364
23652365PyObject * 
23662366PyFrame_GetGlobals (PyFrameObject  * frame )
23672367{
23682368    assert (!_PyFrame_IsIncomplete (frame -> f_frame ));
2369-     return  frame_globals_get (frame , NULL );
2369+     return  frame_globals_get (( PyObject   * ) frame , NULL );
23702370}
23712371
23722372PyObject * 
23732373PyFrame_GetBuiltins (PyFrameObject  * frame )
23742374{
23752375    assert (!_PyFrame_IsIncomplete (frame -> f_frame ));
2376-     return  frame_builtins_get (frame , NULL );
2376+     return  frame_builtins_get (( PyObject   * ) frame , NULL );
23772377}
23782378
23792379int 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments