diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-11-20 20:03:08 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-11-20 20:03:08 (GMT) |
commit | a78f74ce02f5092e4c385eb2aee709d00942d0ed (patch) | |
tree | 587d293f86c3a141a31a5d6b587660f84c432fec /Modules/termios.c | |
parent | 74abf6f873ff8fa37f7418c97ce2f0eb27ee09b6 (diff) | |
download | cpython-a78f74ce02f5092e4c385eb2aee709d00942d0ed.zip cpython-a78f74ce02f5092e4c385eb2aee709d00942d0ed.tar.gz cpython-a78f74ce02f5092e4c385eb2aee709d00942d0ed.tar.bz2 |
Issue #8078: Add constants for higher baud rates in the termios module.
Patch by Rodolpho Eckhardt.
Diffstat (limited to 'Modules/termios.c')
-rw-r--r-- | Modules/termios.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Modules/termios.c b/Modules/termios.c index f370c46..edeb6f5 100644 --- a/Modules/termios.c +++ b/Modules/termios.c @@ -347,6 +347,43 @@ static struct constant { #ifdef B230400 {"B230400", B230400}, #endif +#ifdef B460800 + {"B460800", B460800}, +#endif +#ifdef B500000 + {"B500000", B500000}, +#endif +#ifdef B576000 + {"B576000", B576000}, +#endif +#ifdef B921600 + {"B921600", B921600}, +#endif +#ifdef B1000000 + {"B1000000", B1000000}, +#endif +#ifdef B1152000 + {"B1152000", B1152000}, +#endif +#ifdef B1500000 + {"B1500000", B1500000}, +#endif +#ifdef B2000000 + {"B2000000", B2000000}, +#endif +#ifdef B2500000 + {"B2500000", B2500000}, +#endif +#ifdef B3000000 + {"B3000000", B3000000}, +#endif +#ifdef B3500000 + {"B3500000", B3500000}, +#endif +#ifdef B4000000 + {"B4000000", B4000000}, +#endif + #ifdef CBAUDEX {"CBAUDEX", CBAUDEX}, #endif |