mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	 59acdba820
			
		
	
	
		59acdba820
		
			
		
	
	
	
	
		
			
			Implement a statistical sampling profiler that can profile external Python processes by PID. Uses the _remote_debugging module and converts the results to pstats-compatible format for analysis. Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			150 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			150 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from .profile import run
 | |
| from .profile import runctx
 | |
| from .profile import Profile
 | |
| from .profile import _Utils
 | |
| 
 | |
| __all__ = ['run', 'runctx', 'Profile']
 |