summaryrefslogtreecommitdiffstats
path: root/Modules/selectmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-4/+4
* Replace PyNumber_Int with PyNumber_Long.Mark Dickinson2009-01-171-1/+1
* Merged revisions 66508,66510,66512-66513,66523-66526,66529-66530,66532,66535,...Benjamin Peterson2008-09-221-1/+1
* Merged revisions 65182 via svnmerge fromGeorg Brandl2008-07-231-1/+3
* #3247 Get rid of Py_FindMethod; use tp_members instead.Amaury Forgeot d'Arc2008-07-021-8/+17
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-6/+20
* Renamed PyString to PyBytesChristian Heimes2008-05-261-1/+1
* Merged revisions 61913,61915-61916,61918-61919,61922-61926,61928-61929,61931,...Christian Heimes2008-03-261-12/+9
* Merged revisions 61687-61688,61696,61700,61704-61705,61707-61709,61711-61712,...Christian Heimes2008-03-221-12/+1163
* Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful ...Christian Heimes2008-01-041-0/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-8/+8
* Remove support for BeOSSkip Montanaro2007-08-171-5/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-3/+2
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-10/+10
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-19/+8
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-17/+66
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+1
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Bug #1346533, select.poll() doesn't raise an error if timeout > sys.maxintNeal Norwitz2005-11-031-0/+2
* [Bug #923315] Produce correct result on AIXAndrew M. Kuchling2004-08-071-1/+5
* Added configure check for broken poll() on some unix systems (MacOS X 10.3)Nicholas Bastin2004-03-211-6/+6
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-2/+2
* select.select() now accepts a sequence (as defined by PySequence_Fast()) forBrett Cannon2003-09-101-18/+18
* SF bug 684667: Modules/selectmodule.c returns NULL without exception set.Tim Peters2003-02-111-1/+1
* Don't use PyNumber_Float() since it's is nearly useless. Instead, rely onNeil Schemenauer2002-11-181-4/+2
* Use PyInt_AsLong instead of PyInt_AS_LONG after the call toWalter Dörwald2002-11-121-1/+1
* I did fix too much - including winsock.h is sufficient.Thomas Heller2002-09-241-1/+1
* On Windows, call WSAGetLastError() to retrieve the error number.Thomas Heller2002-09-241-1/+7
* SF patch #577031, remove PyArg_Parse() since it's deprecatedNeal Norwitz2002-07-281-2/+14
* Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." linkMark Hammond2002-07-231-1/+1
* Removed more stray instances of statichere, but left _sre.c alone.Tim Peters2002-07-171-1/+1
* staticforward bites the dust.Jeremy Hylton2002-07-171-1/+1
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-12/+12
* Remove unused static functionNeal Norwitz2002-05-311-19/+0
* Use the PyModule_Add*() APIs instead of manipulating the module dictFred Drake2002-04-011-14/+15
* OS/2 EMX port changes (Modules part of patch #450267):Andrew MacIntyre2002-03-031-1/+1
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-3/+0
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-1/+1
* Fix SF bug #474538: Memory (reference) leak in poller.register (Dave Brueck)Guido van Rossum2001-10-251-3/+13
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-241-8/+0
* Stop adding 3 to FD_SETSIZE -- it makes no sense. If it turns out itTim Peters2001-08-161-15/+11
* Fixed a couple of minor formatting nits where lines were > 79 columns wide.Barry Warsaw2001-08-161-2/+4
* select_select(): Closing bug #448351 the easy way, i.e. by changingBarry Warsaw2001-08-161-8/+21
* Make more warnings go away on the SGI compiler.Fred Drake2001-07-191-3/+3
* [Bug #438050]Andrew M. Kuchling2001-07-141-1/+3
* Add :method info to the PyArg_ParseTuple() format strings for poll objects.Fred Drake2001-05-211-3/+3
* RISCOS changes by dschwertbergerGuido van Rossum2001-03-021-0/+9
* SF bug 110843: Low FD_SETSIZE limit on Win32 (PR#41). Boosted to 512.Tim Peters2000-12-121-1/+10
* Add #ifdef's for platforms that don't have the constants POLLRDNORM andAndrew M. Kuchling2000-09-281-0/+8