Wednesday, July 3, 2024
HomeLanguagesPythonPython | sys.setswitchinterval() method

Python | sys.setswitchinterval() method

This sys module provides access to some variables used or maintained by the interpreter and to functions that interact strongly with the interpreter. It provides information about constants, functions and methods of python interpreter. It can be used for manipulating Python runtime environment.

sys.setswitchinterval() method is used to set the interpreter’s thread switch interval (in seconds). This floating-point value determines the ideal duration of the timeslices allocated to concurrently running Python threads. The actual value can be higher, especially if long-running internal functions or methods are used. Also, which thread becomes scheduled at the end of the interval is the operating system’s decision. The interpreter doesn’t have its own scheduler. This determines how often the interpreter checks for thread switches.

Syntax: sys.setswitchinterval(interval)

Parameter:
interval: The new switch interval to be set.

Return Value: It returns the interpreter’s thread switch interval.

Example #1 :




# Python program to explain sys.setswitchinterval() method 
      
# Importing sys module 
import sys 
  
  
# Using sys.getswitchinterval() method 
# to find the current switch interval 
interval = sys.getswitchinterval()
  
# Print the current switch interval 
print('Before changing, switchinterval =', interval) 
  
# New interval
interval = 1
  
# Using sys.setswitchinterval() method 
# to set the interpreter’s thread switch interval
sys.setswitchinterval(interval)
  
# Using sys.getswitchinterval() method 
# to find the current switch interval 
interval = sys.getswitchinterval()
  
# Print the current switch interval 
print('After changing, switchinterval =', interval) 


Output:

Before changing, switchinterval = 0.005
After changing, switchinterval = 1.0

Last Updated :
13 Aug, 2019
Like Article
Save Article

<!–

–>

Similar Reads
Related Tutorials
Nango Kalahttps://www.kala.co.za
Experienced Support Engineer with a demonstrated history of working in the information technology and services industry. Skilled in Microsoft Excel, Customer Service, Microsoft Word, Technical Support, and Microsoft Office. Strong information technology professional with a Microsoft Certificate Solutions Expert (Privet Cloud) focused in Information Technology from Broadband Collage Of Technology.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments