mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	
		
			
	
	
		
			12 lines
		
	
	
	
		
			273 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
	
		
			273 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|   | from abc import ABC, abstractmethod | ||
|  | 
 | ||
|  | 
 | ||
|  | class Collector(ABC): | ||
|  |     @abstractmethod | ||
|  |     def collect(self, stack_frames): | ||
|  |         """Collect profiling data from stack frames.""" | ||
|  | 
 | ||
|  |     @abstractmethod | ||
|  |     def export(self, filename): | ||
|  |         """Export collected data to a file.""" |