2007-06-07 |
Alexandre Vassalotti | Fix pdb help command. |
commit | commitdiff | tree | snapshot |
2007-06-07 |
Guido van Rossum | The bufsize argument to Popen() should accept None... |
commit | commitdiff | tree | snapshot |
2007-06-07 |
Guido van Rossum | Change normalize_encodings() to avoid using .translate... |
commit | commitdiff | tree | snapshot |
2007-06-07 |
Walter Dörwald | Fix libc_ver(): libc_ver() was reading sys.executable |
commit | commitdiff | tree | snapshot |
2007-06-07 |
Walter Dörwald | Change most sys attributes that were str8 objects into... |
commit | commitdiff | tree | snapshot |
2007-06-07 |
Guido van Rossum | Don't lie in error messages from str8. |
commit | commitdiff | tree | snapshot |
2007-06-07 |
Walter Dörwald | Fix test_str.py so that it tests the str8 class. |
commit | commitdiff | tree | snapshot |
2007-06-07 |
Walter Dörwald | Register a dispatcher for str8. (This makes test_copy... |
commit | commitdiff | tree | snapshot |
2007-06-07 |
Walter Dörwald | Fix test_deque.py: Read and write file in text mode, |
commit | commitdiff | tree | snapshot |
2007-06-07 |
Walter Dörwald | Fix tests for unicode-internal codec. |
commit | commitdiff | tree | snapshot |
2007-06-07 |
Guido van Rossum | tokenizer.c: make coding markup work again. |
commit | commitdiff | tree | snapshot |
2007-06-06 |
Guido van Rossum | Merged revisions 55631-55794 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-06-06 |
Walter Dörwald | Use O_APPEND flag instead of seeking, when append |
commit | commitdiff | tree | snapshot |
2007-06-06 |
Walter Dörwald | Fix gzip.py: Use bytes where 8bit strings have been... |
commit | commitdiff | tree | snapshot |
2007-06-06 |
Walter Dörwald | If append mode is specified seek to the end of the... |
commit | commitdiff | tree | snapshot |
2007-06-06 |
Walter Dörwald | Fix test_codeccallbacks.py: bytes has no % operator. |
commit | commitdiff | tree | snapshot |
2007-06-06 |
Walter Dörwald | Use PyUnicode_FromFormat() directly. |
commit | commitdiff | tree | snapshot |
2007-06-05 |
Walter Dörwald | Change sys.intern() so that unicode strings can be |
commit | commitdiff | tree | snapshot |
2007-06-05 |
Walter Dörwald | Change getdefaultencoding() and getfilesystemencoding() |
commit | commitdiff | tree | snapshot |
2007-06-05 |
Walter Dörwald | Make the name of the C variables match the Python names |
commit | commitdiff | tree | snapshot |
2007-06-05 |
Walter Dörwald | unichr() is named chr() now => fix name in error message. |
commit | commitdiff | tree | snapshot |
2007-06-05 |
Walter Dörwald | Change int_oct() and int_hex() to return unicode objects. |
commit | commitdiff | tree | snapshot |
2007-06-05 |
Walter Dörwald | Use PyUnicode_FromFormat() directly in |
commit | commitdiff | tree | snapshot |
2007-06-05 |
Walter Dörwald | Change category(), bidirectional(), east_asian_width(), |
commit | commitdiff | tree | snapshot |
2007-06-05 |
Walter Dörwald | Simplify os_init() implementations by using PyErr_Format() |
commit | commitdiff | tree | snapshot |
2007-06-05 |
Walter Dörwald | Remove unused variable. |
commit | commitdiff | tree | snapshot |
2007-06-05 |
Walter Dörwald | Simplify socket_repr() by using PyUnicode_FromFormat() |
commit | commitdiff | tree | snapshot |
2007-06-05 |
Walter Dörwald | PyUnicode_FromFormat() does support %02x, so use it |
commit | commitdiff | tree | snapshot |
2007-05-31 |
Walter Dörwald | Change time.strftime() to return a unicode string. |
commit | commitdiff | tree | snapshot |
2007-05-31 |
Walter Dörwald | Change timedelta.__str__() to return a unicode object. |
commit | commitdiff | tree | snapshot |
2007-05-31 |
Walter Dörwald | Change isoformat() methods to return unicode strings. |
commit | commitdiff | tree | snapshot |
2007-05-31 |
Walter Dörwald | Change format_ctime() to return unicode (i.e. |
commit | commitdiff | tree | snapshot |
2007-05-31 |
Walter Dörwald | Change float.__str__() and complex.__str__() to return |
commit | commitdiff | tree | snapshot |
2007-05-31 |
Walter Dörwald | Add support for width, precision and zeropadding to... |
commit | commitdiff | tree | snapshot |
2007-05-30 |
Guido van Rossum | Add a helper to display the various flags and component... |
commit | commitdiff | tree | snapshot |
2007-05-30 |
Guido van Rossum | Fix test_openpty. |
commit | commitdiff | tree | snapshot |
2007-05-29 |
Walter Dörwald | types.StringType is gone, use str directly instead. |
commit | commitdiff | tree | snapshot |
2007-05-29 |
Walter Dörwald | Remove debug print. |
commit | commitdiff | tree | snapshot |
2007-05-29 |
Walter Dörwald | Fix typo. |
commit | commitdiff | tree | snapshot |
2007-05-29 |
Walter Dörwald | Fix test_pty.py. |
commit | commitdiff | tree | snapshot |
2007-05-29 |
Walter Dörwald | Fix file test. |
commit | commitdiff | tree | snapshot |
2007-05-29 |
Guido van Rossum | Merged revisions 55588-55630 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-05-27 |
Guido van Rossum | Get rid of a test for repr() of a file object. |
commit | commitdiff | tree | snapshot |
2007-05-27 |
Guido van Rossum | Modernize. Values are now bytes. |
commit | commitdiff | tree | snapshot |
2007-05-27 |
Guido van Rossum | Make the binhex test pass on Darwin. |
commit | commitdiff | tree | snapshot |
2007-05-27 |
Guido van Rossum | Remove use of types.StringType. |
commit | commitdiff | tree | snapshot |
2007-05-27 |
Guido van Rossum | Use input(), not our own fake raw input (in one place). |
commit | commitdiff | tree | snapshot |
2007-05-27 |
Guido van Rossum | Make struct tests pass. |
commit | commitdiff | tree | snapshot |
2007-05-27 |
Guido van Rossum | Make xmlrpclib fail less (test_sundry passes). |
commit | commitdiff | tree | snapshot |
2007-05-27 |
Guido van Rossum | Add isatty() to TextIOWrapper. |
commit | commitdiff | tree | snapshot |
2007-05-27 |
Guido van Rossum | Make input9) behave properly with the new I/O library. |
commit | commitdiff | tree | snapshot |
2007-05-26 |
Walter Dörwald | Change tp_str implementations of exception classes |
commit | commitdiff | tree | snapshot |
2007-05-25 |
Guido van Rossum | Minimal fixes to save the bootstrap on OSX. |
commit | commitdiff | tree | snapshot |
2007-05-25 |
Guido van Rossum | Merged revisions 55545-55587 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-05-25 |
Walter Dörwald | Change PyErr_Format() to generate a unicode string... |
commit | commitdiff | tree | snapshot |
2007-05-25 |
Walter Dörwald | Document the existence of PyUnicode_InternInPlace(... |
commit | commitdiff | tree | snapshot |
2007-05-25 |
Walter Dörwald | Add interning of unicode strings by copying the functio... |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Guido van Rossum | This is the last time I fix binhex. If it breaks again... |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Walter Dörwald | Simplify %U handling by using Py_UNICODE_COPY. |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Walter Dörwald | Fix typo. |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Guido van Rossum | Fixed array.fromfile(); removed references to PyFileObj... |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Walter Dörwald | Don't specify an encoding, let open figure out an |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Guido van Rossum | Fix test_set. |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Guido van Rossum | Add an encoding property to TextIOBase instances. |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Guido van Rossum | Fix tset_bytes.py. |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Walter Dörwald | Fix test_exceptions.py: There were still str8 objects |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Guido van Rossum | Link _fileio statically -- it is needed during initiali... |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Walter Dörwald | Fix list_test.py::test_print(): Read and write the |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Walter Dörwald | Fix test_funcattrs.py: __name__ attribute must be str8. |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Guido van Rossum | Fix test_bool and test_bufio. |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Guido van Rossum | Enable new I/O. Disable creation of old files. |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Guido van Rossum | Make test_subprocess work. Fix universal newlines... |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Guido van Rossum | Merged revisions 55514-55544 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-05-24 |
Guido van Rossum | Remove native popen() and fdopen(), replacing them... |
commit | commitdiff | tree | snapshot |
2007-05-23 |
Guido van Rossum | Refactor to avoid ultra-deeply-nested code. |
commit | commitdiff | tree | snapshot |
2007-05-23 |
Guido van Rossum | Fix datetime and its test. |
commit | commitdiff | tree | snapshot |
2007-05-23 |
Walter Dörwald | Add a format character %S to PyUnicode_FromFormat(... |
commit | commitdiff | tree | snapshot |
2007-05-23 |
Guido van Rossum | Make gdbm and dumbdbm use byte strings. Updated their... |
commit | commitdiff | tree | snapshot |
2007-05-23 |
Walter Dörwald | Simplify append_keyword_tzinfo() by using |
commit | commitdiff | tree | snapshot |
2007-05-23 |
Walter Dörwald | Fix test_unicodedata.py. |
commit | commitdiff | tree | snapshot |
2007-05-23 |
Walter Dörwald | Fix testcodec.py and test_charmapcodec.py |
commit | commitdiff | tree | snapshot |
2007-05-23 |
Guido van Rossum | This is how I run the tests. |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Guido van Rossum | bz2 uses bytes everywhere (even for the 'newlines'... |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Guido van Rossum | zlib now uses bytes everywhere, and the test passes. |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Guido van Rossum | Make test_binhex pass. (Do we really want to support... |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Guido van Rossum | Make test_base64 pass. |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Guido van Rossum | Make binascii use byte strings everywhere (in and out). |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Guido van Rossum | obcheckin. |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Guido van Rossum | Merged revisions 55407-55513 via svnmerge from |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Guido van Rossum | There's no need to default file to sys.stdout -- print... |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Walter Dörwald | The HTMLCalendar outputs bytes now, so fix the test |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Walter Dörwald | Remove have_unicode checks and merge those tests into the |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Walter Dörwald | Remove unused import. |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Walter Dörwald | Remove tests for have_unicode. |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Walter Dörwald | The unicode builtin is gone now. Fix setup.py so that |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Guido van Rossum | Make test_zipfile pass. |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Guido van Rossum | linecache.py was still struggling with unicode vs.... |
commit | commitdiff | tree | snapshot |
2007-05-22 |
Guido van Rossum | Oops. unicode() builtin was still around. |
commit | commitdiff | tree | snapshot |
2007-05-21 |
Guido van Rossum | Sockets facelift. APIs that could return binary data... |
commit | commitdiff | tree | snapshot |
2007-05-21 |
Walter Dörwald | Make test_format.py pass again (error messages have... |
commit | commitdiff | tree | snapshot |
next |