Open In App

Python | os.openpty() method

Last Updated : 27 Jun, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality. os.openpty() method in Python is used to open a new pseudo-terminal pair. This method returns a pair of file descriptor (master and slave) for the pty and the tty, respectively. The returned file descriptors are non-inheritable. As name suggests, pseudo terminal is a device that has the functions of a physical terminal without actually being one. Note: This method is only available on some flavours of UNIX.
Syntax: os.openpty() Parameter: No parameter is required Return Type: This method returns a pair of file descriptors (master, slave) for the pty and the tty, respectively.
Code: Use of os.openpty() method Python3
# Python program to explain os.openpty() method 

# importing os module 
import os


# open new pseudo-terminal pair
# using os.openpty() method
master, slave = os.openpty()


# Get the terminal device
# name associated with
# file descriptor master 
name = os.ttyname(master)
print(name)


# Get the terminal device
# name associated with
# file descriptor slave
name = os.ttyname(slave)
print(name)
Output:
/dev/ptmx
/dev/pts/2

Next Article
Article Tags :
Practice Tags :

Similar Reads

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy