summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Fix misleading comment reported in issue #1917.Guido van Rossum2008-01-231-1/+1
* patch 1754489 by vlahan:Armin Rigo2008-01-231-2/+2
* Use Py_TYPE() instead of ->ob_typeChristian Heimes2008-01-231-1/+1
* Fix for #1087741 patch.Georg Brandl2008-01-221-1/+1
* Reformat some ugly code.Georg Brandl2008-01-211-26/+39
* Patch #1720595: add T_BOOL to the range of structmember types.Georg Brandl2008-01-211-2/+5
* #1087741: make mmap.mmap the type of mmap objects, not aGeorg Brandl2008-01-211-20/+27
* Switch mmap from old Py_FindMethod to new PyObject_GenericGetAttr attribute a...Georg Brandl2008-01-201-10/+36
* #1509: fix sqlite3 docstrings and docs w.r.t. cursor.fetchXXX methods.Georg Brandl2008-01-191-3/+3
* Patch #1019808 from Federico Schwindt: Return correct socket error whenAndrew M. Kuchling2008-01-191-9/+16
* #1663329: add os.closerange() to close a range of fds,Georg Brandl2008-01-191-0/+19
* Patch #976880: add mmap .rfind() method, and 'end' paramter to .find().Andrew M. Kuchling2008-01-191-5/+34
* Silence Coverity false alerts with CIDs #172, #183, #184Christian Heimes2008-01-181-1/+2
* Coverity CID #168Christian Heimes2008-01-181-0/+1
* Coverity issue CID #182Christian Heimes2008-01-181-0/+10
* Coverity issue CID #197Christian Heimes2008-01-181-0/+2
* clearcache() needs to remove the dict as well as clear it.Raymond Hettinger2008-01-181-2/+1
* Fix a function pointer declaration to silence the compiler.Brett Cannon2008-01-171-1/+1
* Make starmap() match its pure python definition and accept any itertable inpu...Raymond Hettinger2008-01-171-3/+4
* Use 'g' instead of 'D' as the ctypes typecode for c_longdouble, forThomas Heller2008-01-162-4/+4
* Raise a TypeError instead of a ValueError when too many initializersThomas Heller2008-01-161-1/+1
* Raise a TypeError if conflicting positional and named arguments areThomas Heller2008-01-161-0/+15
* Convert the internal ctypes array type cache to a WeakValueDict soThomas Heller2008-01-161-10/+20
* Issue 1821: configure libffi for amd64 on FreeeBSD.Thomas Heller2008-01-142-104/+57
* ?Why did my tests not notice this before?Amaury Forgeot d'Arc2008-01-141-1/+1
* As discussed in issue 1700288:Amaury Forgeot d'Arc2008-01-142-2/+2
* Make Modules/socketobject.c compile for Windows again.Thomas Heller2008-01-131-4/+7
* Fix a potential 'SystemError: NULL result without error'.Thomas Heller2008-01-111-1/+1
* Raise an error instead of crashing with a segfault when a NULLThomas Heller2008-01-111-0/+5
* Removed unused variableChristian Heimes2008-01-111-1/+1
* Guard definition of TIPC_SUB_CANCEL with an #ifdef.Georg Brandl2008-01-111-1/+4
* Comment-out missing constant (from rev 59819)Raymond Hettinger2008-01-111-1/+1
* Check for fd of -1 to save fsync() and fstat() callAndrew M. Kuchling2008-01-101-2/+4
* Related to patch #1114: fix another place where attr_t is assumed to be a longAndrew M. Kuchling2008-01-091-4/+9
* Issue 846388. Adds a call to PyErr_CheckSignals toFacundo Batista2008-01-081-0/+8
* Use relative instead of absolute filenames in the C-level tracebacks.Thomas Heller2008-01-082-2/+2
* Patch 1114: fix compilation of curses module on 64-bit AIX, and any other LP6...Andrew M. Kuchling2008-01-081-25/+79
* Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objectsAndrew M. Kuchling2008-01-081-0/+44
* patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG.Georg Brandl2008-01-071-1/+1
* Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECO...Georg Brandl2008-01-071-6/+14
* Issue #1646: Make socket support TIPC. The socket module now has supportChristian Heimes2008-01-072-1/+157
* Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst.Georg Brandl2008-01-051-1/+1
* Continue rolling back pep-3141 changes that changed behavior from 2.5. ThisJeffrey Yasskin2008-01-051-44/+6
* Added interface to Windows' WSAIoctl and a simple example for a network sniffer.Christian Heimes2008-01-042-1/+43
* Added _struct._clearcache() for regression testsChristian Heimes2008-01-041-1/+13
* Fixed math.copysign() on WindowsChristian Heimes2008-01-041-6/+8
* Finish-up the struct module optimizations started at the Iceland NFS sprint.Raymond Hettinger2008-01-041-1/+205
* Bug #1301: fixed a bad assert in _tkinter.Guido van Rossum2008-01-031-3/+5
* Added copysign(x, y) function to the math moduleChristian Heimes2008-01-031-0/+11
* Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...Christian Heimes2008-01-0310-15/+15