Relying on checks for the assignment of return arguments isn't so clear especially when there are multiple return arguments.
		
			
				
	
	
		
			19 lines
		
	
	
		
			298 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			298 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0-or-later */
 | 
						|
 | 
						|
/** \file
 | 
						|
 * \ingroup pythonintern
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
bool python_script_error_jump(
 | 
						|
    const char *filepath, int *r_lineno, int *r_offset, int *r_lineno_end, int *r_offset_end);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 |