| Commit message (Expand) | Author | Age | Files | Lines |
* | Add -3 option to the interpreter to warn about features that are | Neal Norwitz | 2007-05-23 | 1 | -1/+6 |
|
|
* | Stop using METH_OLDARGS implicitly | Neal Norwitz | 2007-05-22 | 3 | -12/+12 |
|
|
* | Stop using METH_OLDARGS | Neal Norwitz | 2007-05-22 | 1 | -3/+3 |
|
|
* | Remove the rgbimg module. It has been deprecated since Python 2.5. | Brett Cannon | 2007-05-20 | 2 | -781/+0 |
|
|
* | Whoops, need to pay attention to those test failures. | Neal Norwitz | 2007-05-19 | 1 | -1/+1 |
|
|
* | Clear data so random memory does not get freed. Will backport. | Neal Norwitz | 2007-05-19 | 1 | -0/+1 |
|
|
* | Backport checkin: | Walter Dörwald | 2007-05-09 | 1 | -1/+1 |
|
|
* | Do not truncate 64-bit pointers to 32-bit integers. | Thomas Heller | 2007-05-04 | 2 | -13/+19 |
|
|
* | On 64-bit Windows, ffi_arg must be 8 bytes long. This fixes the | Thomas Heller | 2007-05-04 | 1 | -0/+4 |
|
|
* | Fix problems in x64 build that were discovered by the testsuite: | Kristján Valur Jónsson | 2007-05-03 | 2 | -3/+2 |
|
|
* | Don't truncate pointers to integers (on win64 platform). | Thomas Heller | 2007-05-03 | 1 | -2/+21 |
|
|
* | Stop using PyMem_FREE while the GIL is not held. For details see: | Neal Norwitz | 2007-05-02 | 1 | -1/+1 |
|
|
* | When accessing the .value attribute of a c_wchar_p instance, and the | Thomas Heller | 2007-04-30 | 1 | -3/+11 |
|
|
* | Make sure to call PyErr_NoMemory() in several places where | Thomas Heller | 2007-04-30 | 3 | -3/+15 |
|
|
* | Complete revamp of PCBuild8 directory. Use subdirectories for each project u... | Kristján Valur Jónsson | 2007-04-30 | 2 | -7/+6 |
|
|
* | Accomodate 64 bit time_t in the _bsddb module. | Kristján Valur Jónsson | 2007-04-26 | 1 | -1/+21 |
|
|
* | Export function sanitize_the_mode from fileobject.c as _PyFile_SanitizeMode()... | Kristján Valur Jónsson | 2007-04-26 | 1 | -6/+14 |
|
|
* | Make pythoncore compile cleanly with VisualStudio 2005. Used an explicit typ... | Kristján Valur Jónsson | 2007-04-25 | 1 | -2/+2 |
|
|
* | Merge change 54909 from release25-maint: Fix several minor issues discovered... | Kristján Valur Jónsson | 2007-04-25 | 4 | -16/+31 |
|
|
* | SF #1703270, add missing declaration in readline.c to avoid compiler warning. | Neal Norwitz | 2007-04-19 | 1 | -1/+3 |
|
|
* | Point readers at the patch submission instructions | Andrew M. Kuchling | 2007-04-11 | 1 | -3/+6 |
|
|
* | Add window.chgat() method, submitted via e-mail by Fabian Kreutz | Andrew M. Kuchling | 2007-04-11 | 1 | -4/+55 |
|
|
* | Bug #1563759: struct.unpack doens't support buffer protocol objects | Raymond Hettinger | 2007-04-05 | 1 | -7/+25 |
|
|
* | Bug #1686475: Support stat'ing open files on Windows again. | Martin v. Löwis | 2007-04-04 | 1 | -34/+66 |
|
|
* | - Fix an off-by-one bug in locale.strxfrm(). | Matthias Klose | 2007-04-03 | 1 | -1/+1 |
|
|
* | Array module's buffer interface can now handle empty arrays. | Raymond Hettinger | 2007-04-02 | 1 | -0/+6 |
|
|
* | SF #1693079: Cannot save empty array in shelve | Raymond Hettinger | 2007-04-02 | 1 | -6/+13 |
|
|
* | Fix method names. Will backport. | Neal Norwitz | 2007-03-31 | 1 | -3/+4 |
|
|
* | In Windows' time.clock(), when QueryPerformanceFrequency() fails, | Georg Brandl | 2007-03-29 | 1 | -1/+2 |
|
|
* | Bug 1688393. Adds a control of negative values in | Facundo Batista | 2007-03-28 | 1 | -2/+8 |
|
|
* | Prevent creation (followed by a segfault) of array types when the size | Thomas Heller | 2007-03-23 | 1 | -3/+20 |
|
|
* | Explain the purpose of the b_needsfree flag (forward ported from release25-ma... | Thomas Heller | 2007-03-22 | 1 | -0/+6 |
|
|
* | Back out "Patch #1643874: memory leak in ctypes fixed." | Thomas Heller | 2007-03-22 | 1 | -21/+8 |
|
|
* | Patch #1185447: binascii.b2a_qp() now correctly quotes binary characters | Georg Brandl | 2007-03-13 | 1 | -4/+8 |
|
|
* | Patch #1649190: Adding support for _Bool to ctypes as c_bool, by David Remahl. | Thomas Heller | 2007-03-13 | 5 | -47/+615 |
|
|
* | Bug #1622896: fix a rare corner case where the bz2 module raised an | Georg Brandl | 2007-03-13 | 1 | -10/+11 |
|
|
* | Typos. | Georg Brandl | 2007-03-10 | 1 | -1/+1 |
|
|
* | Bug #1651235: When a tuple was passed to a ctypes function call, | Thomas Heller | 2007-03-09 | 1 | -18/+0 |
|
|
* | Fix bug #1646630: ctypes.string_at(buf, 0) and ctypes.wstring_at(buf, 0) | Thomas Heller | 2007-03-09 | 1 | -3/+3 |
|
|
* | Variant of patch #697613: don't exit the interpreter on a SystemExit | Georg Brandl | 2007-03-07 | 1 | -11/+11 |
|
|
* | Patch for bug #1633621: if curses.resizeterm() or | Walter Dörwald | 2007-03-06 | 1 | -2/+62 |
|
|
* | Patch #1654417: make operator.{get,set,del}slice use the full range | Georg Brandl | 2007-03-06 | 1 | -13/+11 |
|
|
* | Patch #1646728: datetime.fromtimestamp fails with negative | Guido van Rossum | 2007-03-06 | 1 | -0/+6 |
|
|
* | Fix another reincarnation of bug #1576657 in defaultdict. | Georg Brandl | 2007-03-06 | 1 | -2/+6 |
|
|
* | Prepare collections module for pure python code entries. | Raymond Hettinger | 2007-02-28 | 1 | -2/+2 |
|
|
* | Remove filler struct item and fix leak. | Raymond Hettinger | 2007-02-21 | 1 | -44/+40 |
|
|
* | Add itertools.izip_longest(). | Raymond Hettinger | 2007-02-21 | 1 | -0/+234 |
|
|
* | Patch #1490190: posixmodule now includes os.chflags() and os.lchflags() | Martin v. Löwis | 2007-02-19 | 1 | -0/+57 |
|
|
* | Update 1432399 to removal of _BT_SOCKADDR_MEMB. | Martin v. Löwis | 2007-02-14 | 1 | -2/+1 |
|
|
* | Patch #1432399: Add HCI sockets. | Martin v. Löwis | 2007-02-14 | 2 | -0/+36 |
|
|