summaryrefslogtreecommitdiffstats
path: root/Lib/tty.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-01-15 03:26:36 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-01-15 03:26:36 (GMT)
commitb90f89a496676ec714e111a747344600f3988496 (patch)
tree161c61762992b5c1588c9a49f557ad88b31b091f /Lib/tty.py
parent495ad3c8ccb9ed3554177a3e8687676c78e667de (diff)
downloadcpython-b90f89a496676ec714e111a747344600f3988496.zip
cpython-b90f89a496676ec714e111a747344600f3988496.tar.gz
cpython-b90f89a496676ec714e111a747344600f3988496.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/tty.py')
-rw-r--r--Lib/tty.py35
1 files changed, 17 insertions, 18 deletions
diff --git a/Lib/tty.py b/Lib/tty.py
index 20a31c0..b76a617 100644
--- a/Lib/tty.py
+++ b/Lib/tty.py
@@ -5,7 +5,7 @@
from TERMIOS import *
from termios import *
-# Indexes for termios list.
+# Indexes for termios list.
IFLAG = 0
OFLAG = 1
CFLAG = 2
@@ -15,22 +15,21 @@ OSPEED = 5
CC = 6
def setraw(fd, when=TCSAFLUSH):
- """Put terminal into a raw mode."""
- mode = tcgetattr(fd)
- mode[IFLAG] = mode[IFLAG] & ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON)
- mode[OFLAG] = mode[OFLAG] & ~(OPOST)
- mode[CFLAG] = mode[CFLAG] & ~(CSIZE | PARENB)
- mode[CFLAG] = mode[CFLAG] | CS8
- mode[LFLAG] = mode[LFLAG] & ~(ECHO | ICANON | IEXTEN | ISIG)
- mode[CC][VMIN] = 1
- mode[CC][VTIME] = 0
- tcsetattr(fd, when, mode)
+ """Put terminal into a raw mode."""
+ mode = tcgetattr(fd)
+ mode[IFLAG] = mode[IFLAG] & ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON)
+ mode[OFLAG] = mode[OFLAG] & ~(OPOST)
+ mode[CFLAG] = mode[CFLAG] & ~(CSIZE | PARENB)
+ mode[CFLAG] = mode[CFLAG] | CS8
+ mode[LFLAG] = mode[LFLAG] & ~(ECHO | ICANON | IEXTEN | ISIG)
+ mode[CC][VMIN] = 1
+ mode[CC][VTIME] = 0
+ tcsetattr(fd, when, mode)
def setcbreak(fd, when=TCSAFLUSH):
- """Put terminal into a cbreak mode."""
- mode = tcgetattr(fd)
- mode[LFLAG] = mode[LFLAG] & ~(ECHO | ICANON)
- mode[CC][VMIN] = 1
- mode[CC][VTIME] = 0
- tcsetattr(fd, when, mode)
-
+ """Put terminal into a cbreak mode."""
+ mode = tcgetattr(fd)
+ mode[LFLAG] = mode[LFLAG] & ~(ECHO | ICANON)
+ mode[CC][VMIN] = 1
+ mode[CC][VTIME] = 0
+ tcsetattr(fd, when, mode)