summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* 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
* Forgot to submit this earlier; it's needed to make test_threading pass.Guido van Rossum2007-07-091-4/+4
* Changes to ctypes and Mac toolbox glue that fix test_threading and test_platf...Guido van Rossum2007-07-091-17/+48
* Fix the code for stripping the leading 's' from str8 and bytes literals.Guido van Rossum2007-07-031-1/+3
* Creating an array with a bytes object as initializerGuido van Rossum2007-07-031-1/+3
* Revert r56044 (which changed the %c format specifier to accept aWalter Dörwald2007-07-012-2/+2
* Fix a failure that was only apparent on big-endian machines:Guido van Rossum2007-06-301-2/+1
* Make array.typecode a unicode string.Walter Dörwald2007-06-221-2/+2
* Change readbuffer_encode() and charbuffer_encode() toWalter Dörwald2007-06-221-8/+4
* Make "thread.local" key a unicode object.Walter Dörwald2007-06-201-1/+1
* Make pickle errror message unicode objects.Walter Dörwald2007-06-201-2/+2
* Change %c format specifier for PyArg_ParseTuple() so that it acceptsWalter Dörwald2007-06-201-1/+1