]> git.ipfire.org Git - thirdparty/Python/cpython.git/shortlog
thirdparty/Python/cpython.git
2007-05-12  Walter DörwaldReuse static global hexdigits array.
2007-05-12  Walter DörwaldChange PyUnicode_EncodeUnicodeEscape() to return a...
2007-05-11  Walter DörwaldThere's no longer a u prefix for unicode objects
2007-05-11  Walter DörwaldSimplify PyObject_Unicode(NULL) by using
2007-05-11  Guido van RossumMerged revisions 55225-55227,55229-55269 via svnmerge...
2007-05-11  Guido van RossumRemove support for u"..." literals.
2007-05-11  Walter DörwaldEnhance the punycode decoder so that it can decode
2007-05-10  Guido van RossumFix the array tests. Only a minor change to the C...
2007-05-10  Guido van RossumFix some miscellaneous places that incorrectly insisted...
2007-05-10  Guido van RossumMerged revisions 55228 via svnmerge from
2007-05-10  Walter DörwaldUse io.BytesIO instead of StringIO.StringIO in all
2007-05-10  Guido van RossumMerged revisions 55184-55224 via svnmerge from
2007-05-10  Walter DörwaldFix punycode codec and tests.
2007-05-09  Guido van RossumDon't insist on cStringIO.
2007-05-09  Guido van RossumDon't insist on cStringIO.
2007-05-09  Guido van RossumFix code depending on exception unpacking.
2007-05-09  Guido van RossumDon't insist on cStringIO.
2007-05-09  Guido van RossumAdd to an XXX comment.
2007-05-09  Guido van RossumRandom modifications that slightly improve the chances...
2007-05-09  Guido van RossumUse AsCharBuffer to get a C string out of a Python...
2007-05-09  Guido van RossumUse AsCharBuffer to get C strings out of Python strings.
2007-05-09  Guido van RossumThe NULL pointer for empty strings turns out to be...
2007-05-09  Guido van RossumBe more robust around bytes for e[st]#? formats.
2007-05-09  Guido van RossumMore uniform approach to getting (UTF8) bytes out of...
2007-05-09  Guido van RossumSupport PEP-263-style coding declarations.
2007-05-09  Guido van RossumI don't know how come bytes.join() was a class method...
2007-05-09  Walter DörwaldForwardport checkin:
2007-05-09  Guido van RossumFix trivial bug in idna encoding.
2007-05-09  Walter Dörwaldtest_codeccallbacks.py passes again.
2007-05-09  Walter DörwaldMention type in the exception message.
2007-05-09  Guido van RossumMake test_marshal pass. Not my best work. :-(
2007-05-08  Guido van RossumMake the StringIO test pass.
2007-05-08  Guido van RossumGot test_pickletools and test_pickle working.
2007-05-08  Guido van RossumGiven that ord() of a bytes object of length 1 is defin...
2007-05-08  Guido van RossumFix a few places where a str instead of a bytes object...
2007-05-08  Guido van Rossumrepr(b"\0") should return b"\x00", not the (unusual...
2007-05-08  Guido van RossumKill u"..." string quotes. Thought I already did that.
2007-05-08  Guido van RossumGot test_exceptions.py working.
2007-05-08  Guido van RossumGet rid of 'file' built-in. Get rid of types.StringTyp...
2007-05-08  Guido van RossumMerged revisions 55180-55183 via svnmerge from
2007-05-07  Guido van RossumCheckpoint. A b it closer to working pickles and pickl...
2007-05-07  Guido van RossumMerged revisions 55007-55179 via svnmerge from
2007-05-07  Guido van RossumInitialized merge tracking via "svnmerge" with revision...
2007-05-07  Guido van RossumFix some trivial things in cPickle due to the renaming...
2007-05-07  Neal NorwitzVerify checkins to py3k branches go to 3000 list.
2007-05-06  Walter DörwaldCheck whether the strlen() result overflows Py_ssize_t.
2007-05-05  Walter DörwaldAdd two more space tests.
2007-05-05  Walter DörwaldRemove duplicate tests.
2007-05-05  Walter DörwaldChange PyUnicode_EncodeUTF7() to return a bytes object.
2007-05-05  Walter DörwaldSilence gcc warnings.
2007-05-05  Walter DörwaldWhen creating a unicode object from a char * characters
2007-05-05  Walter DörwaldFix %c overflow test.
2007-05-05  Walter Dörwaldtest_unicode.py passes again 9except for problems
2007-05-05  Walter DörwaldAdd PyUnicode_FromString(), which create a unicode...
2007-05-04  Guido van RossumMuch more pickling now works.
2007-05-04  Guido van RossumCheckpoint. Make pickle.py read/write bytes.
2007-05-04  Walter DörwaldChange UnicodeDecodeError objects so that the 'object...
2007-05-04  Guido van RossumDon't use StringType -- always test for basestring.
2007-05-04  Guido van RossumAdd 8-bit chr() back as chr8().
2007-05-04  Walter DörwaldMake the BOM constants in codecs.py bytes.
2007-05-04  Walter DörwaldChange PyUnicode_EncodeUTF16() so that it returns
2007-05-04  Walter DörwaldUse basestring instead of (str, str8) to test whether
2007-05-04  Guido van RossumIt's ok for __repr__ to return unicode.
2007-05-04  Guido van Rossumtest_exceptions.py passes, except for pickling of course.
2007-05-04  Guido van RossumMake test_types.py pass.
2007-05-04  Guido van RossumMake all of test_bytes pass (except pickling, which...
2007-05-04  Guido van RossumAdd trailing null bytes to a few more places.
2007-05-04  Guido van RossumCompare and hash unicode objects like their UTF-8 repre...
2007-05-04  Guido van RossumMore coding by random modification.
2007-05-03  Walter DörwaldTemporary fix: Module names are still 8bit strings...
2007-05-03  Walter DörwaldFix various spots where int/long and str/unicode unific...
2007-05-03  Walter DörwaldFix type name (str has been renamed to str8).
2007-05-03  Guido van RossumGet rid of all #ifdef Py_USING_UNICODE (it is always...
2007-05-03  Guido van RossumKill unichr() itself.
2007-05-03  Guido van RossumRename 'unicode' to 'str' in its tp_name field. Rename...
2007-05-02  Guido van RossumRip out all the u"..." literals and calls to unicode().
2007-04-27  Guido van RossumCheckpoint. Manipulated things so that string literals...
2007-04-27  Guido van RossumStart working on the str/unicode unification.
2007-04-27  Guido van RossumMerged revisions 53952-54987 via svnmerge from
2007-04-27  Guido van RossumFix print syntax so this runs using 3.0.
2007-04-26  Fred Drakefix some markup errors
2007-04-23  Nick CoghlanAllow decorators and return annotations to be used...
2007-04-23  Nick CoghlanDon't crash when nonlocal is used at module level ...
2007-04-21  Neal NorwitzAdd a note to this file that it might be out of date...
2007-04-21  Georg BrandlPEP 3114: rename .next() to .__next__() and add next...
2007-04-17  Guido van RossumMake it compile with C89.
2007-04-17  Guido van RossumIf $PYTHONNEWIO is set and nonempty,
2007-04-17  Neal NorwitzRemove functions in string module that are also string...
2007-04-17  Neal NorwitzRemove the SlowParser class because it depended on...
2007-04-17  Neal NorwitzRemove the xmllib module that was obsolete.
2007-04-17  Neal NorwitzRemove old string module
2007-04-17  Neal NorwitzRemove ancient platforms: AIX 3 and Irix 5. (AIX 4...
2007-04-17  Guido van RossumInstead of pickling the whole decoder, use the new...
2007-04-16  Walter DörwaldApply SF patch #1698994: Add getstate() and setstate()
2007-04-16  Guido van RossumCheck in the inevitable change to the version number.
2007-04-15  Nick CoghlanHide list comp variables and support set comprehensions
2007-04-13  Guido van RossumOops, don't test for a name attribute here. That's...
2007-04-13  Guido van RossumSupport name and mode attributes on all file types.
2007-04-13  Guido van Rossumstruct.unpack() allows a bytes string too (if it has...
2007-04-13  Guido van RossumSupport marshal.dump(x, f) where f is not a real file.
next