summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Bug #1653736: Complain about keyword arguments to time.isoformat.Martin v. Löwis2007-02-081-2/+2
* Do not let overflows in enumerate() and count() pass silently.Raymond Hettinger2007-02-081-0/+5
* Check for a common user error with defaultdict().Raymond Hettinger2007-02-071-1/+7
* Bug #1645944: os.access now returns bool but docstring is not updatedGeorg Brandl2007-01-271-1/+1
* Fix for #1643874: When calling SysAllocString, create a PyCObjectThomas Heller2007-01-251-8/+21
* Bug #1486663: don't reject keyword arguments for subclasses of builtinGeorg Brandl2007-01-214-15/+16
* Patch #1610575: Add support for _Bool to struct.Martin v. Löwis2007-01-211-0/+49
* Replace C++ comments with C comments.Thomas Heller2007-01-171-8/+12
* Patch #1635058 by Mark Roberts: ensure that htonl and friends never accept orGuido van Rossum2007-01-141-4/+24
* Merged changes from standalone version 2.3.3. This should probably all beGerhard Häring2007-01-1418-484/+518
* Fixes for 64-bit Windows: In ctypes.wintypes, correct the definitionsThomas Heller2007-01-111-1/+2
* Must change the version number in the _ctypes extension as well.Thomas Heller2007-01-101-1/+1
* Fix zero-length corner case for iterating over a mutating deque.Raymond Hettinger2007-01-081-3/+2
* Silence a warning from gcc 4.0.1 by specifying a function's parameter list isBrett Cannon2007-01-051-1/+1
* bump module version to match supported berkeleydb versionGregory P. Smith2007-01-051-1/+1
* Support linking of the bsddb module against BerkeleyDB 4.5.xGregory P. Smith2007-01-051-0/+8
* Bug #1566280: Explicitly invoke threading._shutdown from Py_Main,Martin v. Löwis2007-01-041-0/+29
* Fix typo.Walter Dörwald2006-12-211-1/+1
* Comment typoAndrew M. Kuchling2006-12-191-1/+1
* [Patch #1615868 by Lars Gustaebel] Use Py_off_t to fix BZ2File.seek() for off...Andrew M. Kuchling2006-12-181-1/+1
* Patch #1544279: Improve thread-safety of the socket module by movingMartin v. Löwis2006-12-032-53/+45
* Fix #1563807: _ctypes built on AIX fails with ld ffi error.Thomas Heller2006-11-281-1/+1
* Fix bug #1598620: A ctypes structure cannot contain itself.Thomas Heller2006-11-241-3/+13
* Bug #1599782: Fix segfault on bsddb.db.DB().type().Neal Norwitz2006-11-211-2/+0
* Speed up function calls into the math module by using METH_O.Neal Norwitz2006-11-191-63/+55
* Make cStringIO.truncate raise IOError for negativeMartin v. Löwis2006-11-191-1/+11
* Bug #1588217: don't parse "= " as a soft line break in binascii'sGeorg Brandl2006-11-161-2/+1
* Replace C++ comment with C comment (fixes SF bug #1593525).Walter Dörwald2006-11-091-1/+1
* Fix crash in test on HP-UX. Apparently, it's not possible to delete a lock ifNeal Norwitz2006-10-281-0/+3
* Add some asserts. In sysmodule, I think these were to try to silenceNeal Norwitz2006-10-281-0/+1
* Get DBL_MAX from float.h not values.h. Will backport.Martin v. Löwis2006-10-271-3/+1
* Check for values.h. Will backport.Martin v. Löwis2006-10-271-0/+2
* Patch #1549049: Rewrite type conversion in structmember.Martin v. Löwis2006-10-271-8/+121
* - Patch #1560695: Add .note.GNU-stack to ctypes' sysv.S so thatMartin v. Löwis2006-10-221-0/+4
* Patch #1580674: with this patch os.readlink uses the filesystem encoding toRonald Oussoren2006-10-221-2/+38
* Fix various minor errors in passing arguments toMartin v. Löwis2006-10-194-16/+27
* newIobject(): repaired incorrect cast to quiet MSVC warning.Tim Peters2006-10-181-1/+1
* ctypes callback functions only support 'fundamental' result types.Thomas Heller2006-10-171-2/+5
* Bug #1567666: Emulate GetFileAttributesExA for Win95.Martin v. Löwis2006-10-151-2/+102
* Patch #1576166: Support os.utime for directories on Windows NT+.Martin v. Löwis2006-10-151-2/+5
* Bug #1548891: The cStringIO.StringIO() constructor now encodes unicodeGeorg Brandl2006-10-121-4/+2
* Bug #1565150: Fix subsecond processing for os.utime on Windows.Martin v. Löwis2006-10-091-3/+3
* List gc.get_count() in the module docstring.Barry Warsaw2006-10-091-0/+1
* Bug #1572832: fix a bug in ISO-2022 codecs which may cause segfaultHye-Shik Chang2006-10-081-14/+22
* Cause a PyObject_Malloc() failure to trigger a MemoryError, and thenAndrew M. Kuchling2006-10-041-2/+21
* Forward-port of r52136,52138: a review of overflow-detecting code.Armin Rigo2006-10-041-4/+8
* Compilation problem caused by conflicting typedefs for uint32_tArmin Rigo2006-10-042-0/+4
* Bug #1556784: allow format strings longer than 127 characters inGeorg Brandl2006-09-301-2/+2
* Remove extra semi-colons reported by Johnny Lee on python-dev. Backport if a...Neal Norwitz2006-09-232-3/+3
* * regression bug, count_next was coercing a Py_ssize_t to an unsigned Py_size_tJack Diederich2006-09-211-1/+1