| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix refcount bug in make_Zreplacement(). | Guido van Rossum | 2007-08-10 | 1 | -0/+1 |
|
|
* | Fix a bit of code that wasn't converted properly, causing a segfault. | Guido van Rossum | 2007-08-10 | 1 | -4/+1 |
|
|
* | Make the sqlite tests pass. | Gerhard Häring | 2007-08-10 | 4 | -17/+14 |
|
|
* | Fix some logic in PythonCmd() -- if the AsString() call failed, we'd | Guido van Rossum | 2007-08-09 | 1 | -1/+3 |
|
|
* | Fix two bugs in socket_getaddr(): | Guido van Rossum | 2007-08-09 | 1 | -4/+3 |
|
|
* | Merged revisions 56782-56847 via svnmerge from | Guido van Rossum | 2007-08-09 | 1 | -2/+5 |
|
|
* | Fix most of the bsddb3 tests. | Martin v. Löwis | 2007-08-08 | 1 | -18/+18 |
|
|
* | Fix the ctypes tests. Patch from Victor Stinner. He writes: | Thomas Heller | 2007-08-08 | 1 | -1/+1 |
|
|
* | SF patch # 1769767, get test_xml_etree_c working. More conversions are proba... | Neal Norwitz | 2007-08-08 | 1 | -42/+12 |
|
|
* | Py_ssize_t requires "n" format, this fixes most of the 64-bit only failures. | Neal Norwitz | 2007-08-08 | 1 | -1/+1 |
|
|
* | Fix a type error in a previous patch I made to this module. | Guido van Rossum | 2007-08-08 | 1 | -1/+1 |
|
|
* | Fix the last remaining test_csv failure. | Guido van Rossum | 2007-08-07 | 1 | -1/+7 |
|
|
* | BZ2File.read(0) should return b"" rather than raising ValueError. | Guido van Rossum | 2007-08-07 | 1 | -1/+1 |
|
|
* | Kill remaining tp_print definitions. | Guido van Rossum | 2007-08-07 | 2 | -64/+3 |
|
|
* | Quick fixes for assert failures in dbm wrapper code. | Guido van Rossum | 2007-08-07 | 1 | -4/+2 |
|
|
* | Merged revisions 56753-56781 via svnmerge from | Guido van Rossum | 2007-08-06 | 2 | -16/+12 |
|
|
* | missing docstrings | Skip Montanaro | 2007-08-06 | 1 | -5/+23 |
|
|
* | One char->Py_UNICODE change missed in r56777 - according to Adam Hupp this is... | Skip Montanaro | 2007-08-06 | 1 | -2/+2 |
|
|
* | SF patch# 1767398 by Adam Hupp. | Guido van Rossum | 2007-08-06 | 1 | -57/+63 |
|
|
* | Make bsddb use bytes as keys and values. Add StringKeys | Martin v. Löwis | 2007-08-05 | 1 | -35/+30 |
|
|
* | Merged revisions 56492-56752 via svnmerge from | Guido van Rossum | 2007-08-05 | 6 | -980/+5 |
|
|
* | Change read() on SSL socket to return bytes. | Jeremy Hylton | 2007-08-04 | 1 | -4/+7 |
|
|
* | Get rid of a bogus assert when recv_into() is called with a zero-length | Guido van Rossum | 2007-08-03 | 1 | -1/+4 |
|
|
* | SF patch# 1766592 by Paul Colomiets. | Guido van Rossum | 2007-08-03 | 1 | -11/+20 |
|
|
* | Revert previous checkin. | Martin v. Löwis | 2007-07-28 | 1 | -7/+7 |
|
|
* | Return bytes, not str8. | Martin v. Löwis | 2007-07-28 | 1 | -7/+7 |
|
|
* | Return bytes, not string from read(). Makes test_mmap.py pass. | Guido van Rossum | 2007-07-26 | 1 | -1/+1 |
|
|
* | Fix two bad type identifiers that caused crashes on OSX (icglue and Nav). | Guido van Rossum | 2007-07-25 | 1 | -1/+1 |
|
|
* | ccMake test_curses pass. | Guido van Rossum | 2007-07-24 | 1 | -35/+74 |
|
|
* | Make test_tcl.py pass, by accepting unicode strings as variable names. | Guido van Rossum | 2007-07-23 | 1 | -0/+4 |
|
|
* | SF patch# 1759016 by Joe Gregorio, who writes: | Guido van Rossum | 2007-07-23 | 1 | -77/+17 |
|
|
* | Fix merge breakage. | Martin v. Löwis | 2007-07-21 | 3 | -9/+9 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 58 | -551/+435 |
|
|
* | Make audioop and its tests use bytes throughout. | Martin v. Löwis | 2007-07-20 | 1 | -35/+34 |
|
|
* | Merged revisions 56443-56466 via svnmerge from | Guido van Rossum | 2007-07-20 | 1 | -4/+5 |
|
|
* | Getting rid of cPickle. Mmm, feels good! | Guido van Rossum | 2007-07-20 | 1 | -5548/+0 |
|
|
* | Merged revisions 56301-56442 via svnmerge from | Guido van Rossum | 2007-07-18 | 4 | -11/+15 |
|
|
* | Change Py_BuildValue to generate Unicode objects for | Martin v. Löwis | 2007-07-18 | 3 | -30/+131 |
|
|
* | Fix for cProfile. | Guido van Rossum | 2007-07-16 | 1 | -0/+3 |
|
|
* | SF patch# 1752647 by Joe Gregorio. | Guido van Rossum | 2007-07-16 | 1 | -9/+9 |
|
|
* | For easier merging, revert ths change; it will be brought back in when | Thomas Heller | 2007-07-13 | 1 | -0/+2 |
|
|
* | c_char, c_char_p objects and c_char array structure fields return | Thomas Heller | 2007-07-13 | 1 | -31/+16 |
|
|
* | Do not accept str8 type in function calls any longer. | Thomas Heller | 2007-07-13 | 2 | -10/+1 |
|
|
* | Remove all the Python 2.3 compatibility markers (the Python 3 ctypes | Thomas Heller | 2007-07-13 | 1 | -46/+0 |
|
|
* | Remove all the Python 2.3 compatibility markers (the Python 3 ctypes | Thomas Heller | 2007-07-13 | 7 | -152/+0 |
|
|
* | Structure fields of type c_char array or c_wchar array accept bytes or | Thomas Heller | 2007-07-13 | 1 | -2/+21 |
|
|
* | c_void_p.from_param accepts bytes. Fix test_prototypes. | Thomas Heller | 2007-07-12 | 1 | -0/+18 |
|
|
* | c_char_p.from_param accepts bytes. Fix test_parameters. | Thomas Heller | 2007-07-12 | 1 | -1/+1 |
|
|
* | Accept bytes as parameter to foreign functions without prototype. | Thomas Heller | 2007-07-12 | 1 | -0/+9 |
|
|
* | Accept bytes for c_wchar_p instances and c_wchar array instances. | Thomas Heller | 2007-07-12 | 1 | -2/+2 |
|
|