summaryrefslogtreecommitdiff
path: root/Modules/termios.c
Commit message (Expand)AuthorAgeFilesLines
* Fix a possible "double decref" in termios.tcgetattr(). (GH-10194)Miss Islington (bot)2018-10-281-2/+2
* bpo-32660: Solaris should support constants like termios' FIONREAD (#5328)jcea2018-01-281-0/+6
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-10/+5
* Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2Jesus Cea2011-03-141-5/+0
* Issue #8078: Add constants for higher baud rates in the termios module.Antoine Pitrou2010-11-201-0/+37
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-452/+452
* Merged revisions 75999 via svnmerge fromGregory P. Smith2009-11-011-0/+3
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-5/+15
* Renamed PyString to PyBytesChristian Heimes2008-05-261-3/+3
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-16/+16
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Patch #787189: Explicitly define CTRL on SGI.Martin v. Löwis2003-10-311-0/+6
* Get test_ioctl to pass on HPUX 11.Neal Norwitz2003-05-231-0/+4
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-21/+21
* OS/2 EMX port changes (Modules part of patch #450267):Andrew MacIntyre2002-03-031-0/+4
* Use PyModule_AddObject() instead of accessing the module dict directly.Fred Drake2002-02-141-4/+6
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-4/+0
* Forward-port revision 2.24.2.4 from the release21-maint branch:Thomas Wouters2001-06-151-0/+10
* Protect the use of the VWERASE symbol by an #ifdef, it's apparently missingThomas Wouters2001-06-111-0/+2
* Correct the sense of a couple of conditional compilations -- used #ifndefFred Drake2001-05-221-2/+2
* Include sys/modem.h if we have it; this is needed on HP-UX to provideFred Drake2001-05-111-0/+12
* fdconv(): Do not second guess the error condition returned byFred Drake2001-05-091-37/+4
* Only import termio.h on OSF, and add a comment about why it is needed there.Fred Drake2001-05-091-0/+4
* Michael Hudson <mwh21@cam.ac.uk>:Fred Drake2001-05-071-53/+84
* Unixware 7 support by Billy G. Allie (SF patch 413011)Guido van Rossum2001-04-111-0/+4
* Michael Hudson <mwh21@cam.ac.uk>:Fred Drake2001-04-091-13/+10
* Effectively revert the previous change: leave the new #include in, butFred Drake2001-04-051-0/+3
* Add an #include of sys/ioctl.h to pick up a lot of the constants supportedFred Drake2001-04-041-0/+1
* Michael Hudson <mwh21@cam.ac.uk>:Fred Drake2001-03-261-0/+329
* Wrap several more of the constants in #ifdef/#endif for FreeBSD; at leastFred Drake2001-03-031-0/+58
* Add more protection around the VSWTC/VSWTCH, CRTSCTS, and XTABS symbols;Fred Drake2001-03-021-1/+9
* Solaris defines VSWTCH instead of VSWTC; carefully make sure both areFred Drake2001-03-011-0/+11
* Revised version of Jason Tishler's patch to make this compile on Cygwin,Fred Drake2001-03-011-0/+10
* Define the constants needed for working with these functions directlyFred Drake2001-02-271-0/+158
* Use METH_OLDARGS instead of numeric constant 0 in method def. tablesAndrew M. Kuchling2000-08-031-6/+12
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-1/+1
* ANSI-ficationPeter Schneider-Kamp2000-07-101-18/+6
* Should include "Python.h", not <Python.h> -- it's not a standardGuido van Rossum1999-01-141-1/+1
* Add DL_EXPORT() to all modules that could possibly be usedGuido van Rossum1998-12-041-1/+1
* Changes for BeOS, QNX and long long, by Chris Herborth.Guido van Rossum1998-08-041-0/+4
* In tcsetattr(), first initialize the mode structure by callingGuido van Rossum1998-06-121-0/+3
* Doc strings added by Mitch Chapman.Guido van Rossum1998-03-031-7/+67
* Apply two changes, systematically:Guido van Rossum1997-10-011-4/+1
* Add 'return' keyword before error calls.Guido van Rossum1997-07-171-8/+8
* The usual return-value and memory management checks. I'm not planningBarry Warsaw1997-01-101-10/+16
* Fix operator priority bug found thanks to gcc -Wall.Guido van Rossum1996-12-101-1/+1
* * various modules: #include "Python.h" and remove most remporaryGuido van Rossum1994-09-141-16/+1
* Steen Lumholt's termios interface.Guido van Rossum1994-09-121-0/+258