summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* First draft for itertools.product(). Docs and other updates forthcoming.Raymond Hettinger2008-02-221-1/+212
* configure.ac: Remove the configure check for _Bool, it is already done in theThomas Heller2008-02-213-3162/+3023
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-171-0/+32
* Issue 2112. mmap does not raises EnvironmentError no more, butFacundo Batista2008-02-171-1/+4
* Crashers of the day: Py_CLEAR must be used when there is a chance that theAmaury Forgeot d'Arc2008-02-162-3/+2
* Bug #2111: mmap segfaults when trying to write a block opened with PROT_READChristian Heimes2008-02-151-0/+4
* Implemented Martin's suggestion to clear the free lists during the garbage co...Christian Heimes2008-02-141-0/+22
* Add pickle support to ctypes types.Thomas Heller2008-02-134-1/+91
* #2063: correct order of utime and stime in os.times()Georg Brandl2008-02-131-2/+2
* dict.copy() rises from the ashes. Revert r60687.Raymond Hettinger2008-02-121-12/+2
* Add -3 warnings that set.copy(), dict.copy(), and defaultdict.copy() will go ...Raymond Hettinger2008-02-091-2/+12
* Update big5hkscs codec to conform to the HKSCS:2004 revision.Hye-Shik Chang2008-02-082-1797/+1875
* issue 2045: Infinite recursion when printing a subclass of defaultdict,Amaury Forgeot d'Arc2008-02-081-1/+11
* Make sure a switch statement does not have repetitive case statements.Brett Cannon2008-02-071-0/+2
* Fixed refcounts and error handling.Thomas Heller2008-02-061-8/+12
* Another int -> pid_t caseChristian Heimes2008-02-031-1/+2
* Merge this fix from the pybsddb tree:Gregory P. Smith2008-02-031-2/+6
* The wrapper function is supposed to be for spawnvpe() so that'sAndrew MacIntyre2008-02-031-2/+2
* Neaten-up a bit.Raymond Hettinger2008-02-021-5/+1
* More int -> pid_t.Christian Heimes2008-02-011-11/+18
* Move __builtins__.trunc() to math.trunc() perJeffrey Yasskin2008-02-011-0/+16
* Fixed bug #1983: Return from fork() is pid_t, not intChristian Heimes2008-01-311-6/+7
* Revert rev. 59925, it breaks comtypes (I need to further examine this).Thomas Heller2008-01-281-5/+0
* static PyObject* variables should use PyString_InternFromString() instead of ...Christian Heimes2008-01-282-5/+5
* Update to newer version of ffi. Fixes crashes and test failures of longdoubleNeal Norwitz2008-01-272-16/+48
* Initialize variable to prevent warning on some platform/config.Neal Norwitz2008-01-271-2/+2
* Use int for the sign rather than a char. char can be signed or unsigned.Neal Norwitz2008-01-271-1/+1
* Mostly reformat. Also set an error and return NULL if neither MS_WINDOWSNeal Norwitz2008-01-271-15/+13
* Cleanup the code a bit. test_rfind is failing on PPC and PPC64 buildbots,Neal Norwitz2008-01-261-7/+7
* #1940: make it possible to use curses.filter() before curses.initscr()Georg Brandl2008-01-261-1/+10
* setup.py doesn't pick up changes to a header fileChristian Heimes2008-01-251-4/+4
* Backport of several functions from Python 3.0 to 2.6 including PyUnicode_From...Christian Heimes2008-01-251-0/+927
* Add prototypes to get the mathmodule.c to compile on OSF1 5.1 (Tru64)Neal Norwitz2008-01-251-0/+5
* Invert the checks in get_[u]long and get_[u]longlong. The intent wasThomas Heller2008-01-241-19/+15
* Replace Py_BuildValue with PyTuple_Pack because it is faster.Thomas Heller2008-01-241-7/+10
* Use a PyDictObject again for the array type cache; retrieving itemsThomas Heller2008-01-241-16/+137
* 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