| Commit message (Expand) | Author | Age | Files | Lines |
* | Use O_APPEND flag instead of seeking, when append | Walter Dörwald | 2007-06-06 | 1 | -12/+5 |
|
|
* | Fix gzip.py: Use bytes where 8bit strings have been used formerly. | Walter Dörwald | 2007-06-06 | 2 | -29/+31 |
|
|
* | If append mode is specified seek to the end of the file. | Walter Dörwald | 2007-06-06 | 2 | -0/+30 |
|
|
* | Fix test_codeccallbacks.py: bytes has no % operator. | Walter Dörwald | 2007-06-06 | 1 | -3/+3 |
|
|
* | Use PyUnicode_FromFormat() directly. | Walter Dörwald | 2007-06-06 | 1 | -5/+3 |
|
|
* | Change sys.intern() so that unicode strings can be | Walter Dörwald | 2007-06-05 | 2 | -7/+25 |
|
|
* | Change getdefaultencoding() and getfilesystemencoding() | Walter Dörwald | 2007-06-05 | 1 | -2/+2 |
|
|
* | Make the name of the C variables match the Python names | Walter Dörwald | 2007-06-05 | 1 | -7/+7 |
|
|
* | unichr() is named chr() now => fix name in error message. | Walter Dörwald | 2007-06-05 | 1 | -2/+2 |
|
|
* | Change int_oct() and int_hex() to return unicode objects. | Walter Dörwald | 2007-06-05 | 1 | -9/+5 |
|
|
* | Use PyUnicode_FromFormat() directly in | Walter Dörwald | 2007-06-05 | 1 | -8/+4 |
|
|
* | Change category(), bidirectional(), east_asian_width(), | Walter Dörwald | 2007-06-05 | 1 | -6/+6 |
|
|
* | Simplify os_init() implementations by using PyErr_Format() | Walter Dörwald | 2007-06-05 | 1 | -8/+2 |
|
|
* | Remove unused variable. | Walter Dörwald | 2007-06-05 | 1 | -1/+0 |
|
|
* | Simplify socket_repr() by using PyUnicode_FromFormat() | Walter Dörwald | 2007-06-05 | 2 | -3/+5 |
|
|
* | PyUnicode_FromFormat() does support %02x, so use it | Walter Dörwald | 2007-06-05 | 1 | -17/+14 |
|
|
* | Change time.strftime() to return a unicode string. | Walter Dörwald | 2007-05-31 | 1 | -5/+4 |
|
|
* | Change timedelta.__str__() to return a unicode object. | Walter Dörwald | 2007-05-31 | 1 | -36/+19 |
|
|
* | Change isoformat() methods to return unicode strings. | Walter Dörwald | 2007-05-31 | 1 | -48/+32 |
|
|
* | Change format_ctime() to return unicode (i.e. | Walter Dörwald | 2007-05-31 | 1 | -6/+4 |
|
|
* | Change float.__str__() and complex.__str__() to return | Walter Dörwald | 2007-05-31 | 3 | -2/+3 |
|
|
* | Add support for width, precision and zeropadding to the %d, %i, %u and %x | Walter Dörwald | 2007-05-31 | 1 | -30/+86 |
|
|
* | Add a helper to display the various flags and components of code objects | Guido van Rossum | 2007-05-30 | 1 | -0/+56 |
|
|
* | Fix test_openpty. | Guido van Rossum | 2007-05-30 | 1 | -2/+2 |
|
|
* | types.StringType is gone, use str directly instead. | Walter Dörwald | 2007-05-29 | 1 | -1/+4 |
|
|
* | Remove debug print. | Walter Dörwald | 2007-05-29 | 1 | -1/+0 |
|
|
* | Fix typo. | Walter Dörwald | 2007-05-29 | 1 | -1/+2 |
|
|
* | Fix test_pty.py. | Walter Dörwald | 2007-05-29 | 1 | -7/+7 |
|
|
* | Fix file test. | Walter Dörwald | 2007-05-29 | 1 | -1/+1 |
|
|
* | Merged revisions 55588-55630 via svnmerge from | Guido van Rossum | 2007-05-29 | 3 | -1363/+5 |
|
|
* | Get rid of a test for repr() of a file object. | Guido van Rossum | 2007-05-27 | 1 | -8/+0 |
|
|
* | Modernize. Values are now bytes. | Guido van Rossum | 2007-05-27 | 1 | -14/+27 |
|
|
* | Make the binhex test pass on Darwin. | Guido van Rossum | 2007-05-27 | 1 | -4/+4 |
|
|
* | Remove use of types.StringType. | Guido van Rossum | 2007-05-27 | 1 | -5/+3 |
|
|
* | Use input(), not our own fake raw input (in one place). | Guido van Rossum | 2007-05-27 | 1 | -6/+1 |
|
|
* | Make struct tests pass. | Guido van Rossum | 2007-05-27 | 3 | -24/+41 |
|
|
* | Make xmlrpclib fail less (test_sundry passes). | Guido van Rossum | 2007-05-27 | 1 | -30/+19 |
|
|
* | Add isatty() to TextIOWrapper. | Guido van Rossum | 2007-05-27 | 1 | -0/+3 |
|
|
* | Make input9) behave properly with the new I/O library. | Guido van Rossum | 2007-05-27 | 1 | -14/+66 |
|
|
* | Change tp_str implementations of exception classes | Walter Dörwald | 2007-05-26 | 1 | -223/+35 |
|
|
* | Minimal fixes to save the bootstrap on OSX. | Guido van Rossum | 2007-05-25 | 2 | -4/+5 |
|
|
* | Merged revisions 55545-55587 via svnmerge from | Guido van Rossum | 2007-05-25 | 2 | -2/+113 |
|
|
* | Change PyErr_Format() to generate a unicode string (by using | Walter Dörwald | 2007-05-25 | 5 | -45/+33 |
|
|
* | Document the existence of PyUnicode_InternInPlace() and | Walter Dörwald | 2007-05-25 | 1 | -0/+21 |
|
|
* | Add interning of unicode strings by copying the functionality from | Walter Dörwald | 2007-05-25 | 5 | -7/+158 |
|
|
* | This is the last time I fix binhex. If it breaks again it goes in the dustbin. | Guido van Rossum | 2007-05-24 | 1 | -10/+8 |
|
|
* | Simplify %U handling by using Py_UNICODE_COPY. | Walter Dörwald | 2007-05-24 | 1 | -5/+3 |
|
|
* | Fix typo. | Walter Dörwald | 2007-05-24 | 1 | -1/+1 |
|
|
* | Fixed array.fromfile(); removed references to PyFileObject in array.tofile(). | Guido van Rossum | 2007-05-24 | 2 | -78/+59 |
|
|
* | Don't specify an encoding, let open figure out an | Walter Dörwald | 2007-05-24 | 1 | -2/+2 |
|
|