summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* Change read() on SSL socket to return bytes.Jeremy Hylton2007-08-041-4/+7
* Get rid of a bogus assert when recv_into() is called with a zero-lengthGuido van Rossum2007-08-031-1/+4
* SF patch# 1766592 by Paul Colomiets.Guido van Rossum2007-08-031-11/+20
* Revert previous checkin.Martin v. Löwis2007-07-281-7/+7
* Return bytes, not str8.Martin v. Löwis2007-07-281-7/+7
* Return bytes, not string from read(). Makes test_mmap.py pass.Guido van Rossum2007-07-261-1/+1
* Fix two bad type identifiers that caused crashes on OSX (icglue and Nav).Guido van Rossum2007-07-251-1/+1
* ccMake test_curses pass.Guido van Rossum2007-07-241-35/+74
* Make test_tcl.py pass, by accepting unicode strings as variable names.Guido van Rossum2007-07-231-0/+4
* SF patch# 1759016 by Joe Gregorio, who writes:Guido van Rossum2007-07-231-77/+17
* Fix merge breakage.Martin v. Löwis2007-07-213-9/+9
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-2158-551/+435
* Make audioop and its tests use bytes throughout.Martin v. Löwis2007-07-201-35/+34
* Merged revisions 56443-56466 via svnmerge fromGuido van Rossum2007-07-201-4/+5
* Getting rid of cPickle. Mmm, feels good!Guido van Rossum2007-07-201-5548/+0
* Merged revisions 56301-56442 via svnmerge fromGuido van Rossum2007-07-184-11/+15
* Change Py_BuildValue to generate Unicode objects forMartin v. Löwis2007-07-183-30/+131
* Fix for cProfile.Guido van Rossum2007-07-161-0/+3
* SF patch# 1752647 by Joe Gregorio.Guido van Rossum2007-07-161-9/+9
* For easier merging, revert ths change; it will be brought back in whenThomas Heller2007-07-131-0/+2
* c_char, c_char_p objects and c_char array structure fields returnThomas Heller2007-07-131-31/+16
* Do not accept str8 type in function calls any longer.Thomas Heller2007-07-132-10/+1
* Remove all the Python 2.3 compatibility markers (the Python 3 ctypesThomas Heller2007-07-131-46/+0
* Remove all the Python 2.3 compatibility markers (the Python 3 ctypesThomas Heller2007-07-137-152/+0
* Structure fields of type c_char array or c_wchar array accept bytes orThomas Heller2007-07-131-2/+21
* c_void_p.from_param accepts bytes. Fix test_prototypes.Thomas Heller2007-07-121-0/+18
* c_char_p.from_param accepts bytes. Fix test_parameters.Thomas Heller2007-07-121-1/+1
* Accept bytes as parameter to foreign functions without prototype.Thomas Heller2007-07-121-0/+9
* Accept bytes for c_wchar_p instances and c_wchar array instances.Thomas Heller2007-07-121-2/+2
* Change the StgDictObject's proto member to a PyUnicode_Object (was aThomas Heller2007-07-121-17/+9
* Accept bytes in c_char_p and c_wchar_p types.Thomas Heller2007-07-121-9/+10
* ctypes.c_char and ctypes.c_wchar now accept initialization from byte objects.Thomas Heller2007-07-121-2/+23
* Use a unicode string as unique_key instead of 8-bit string.Thomas Heller2007-07-121-1/+1
* Fix typo in docstring.Walter Dörwald2007-07-121-1/+1
* Rename PyTclObject_unicode to PyTclObject_str and use thisWalter Dörwald2007-07-121-22/+3
* Second part of sf# 1752225: On windows, emulate ftruncate with Win32Thomas Heller2007-07-121-4/+37
* First part of sf# 1752225: Support for wide filenames on Windows.Thomas Heller2007-07-121-9/+12
* Py_USING_UNICODE is no longer defined on Windows (on posix it is stillThomas Heller2007-07-122-80/+1
* Use unicode instead of 8-bit strings.Guido van Rossum2007-07-121-6/+6
* Must create heaptypes with unicode names.Thomas Heller2007-07-111-5/+1
* PyUnicode_AsEncodedString() returns a bytes object.Thomas Heller2007-07-111-1/+2
* Merged revisions 56154-56264 via svnmerge fromGuido van Rossum2007-07-111-0/+6
* See SF# 1751801: Windows: Add the _fileio builtin module, and undefineThomas Heller2007-07-111-1/+7
* Repair ctypes Structures.Thomas Heller2007-07-111-5/+5
* Avoid compiler warnings about 'const char*'.Thomas Heller2007-07-112-2/+2
* PyType_stgdict() returns a borrowed reference which must not be Py_DECREF'd.Thomas Heller2007-07-111-2/+0
* Make _ctypes_test.c compile on Windows.Thomas Heller2007-07-111-2/+2
* Make sure hexdigest() returns str, not str8.Guido van Rossum2007-07-101-11/+6
* Made test_file pass. This meant adding support for read(-1) and read()Guido van Rossum2007-07-101-7/+70
* Change hashlib to return bytes from digest() instead of str8.Guido van Rossum2007-07-093-8/+8