]> granicus.if.org Git - python/shortlog
python
2007-08-05 Brett CannonMove tempfile over to the io module. Makes test_thread...
2007-08-05 Martin v. LöwisChange PyUnicode_FromString[AndSize] to expect UTF-8.
2007-08-05 Martin v. LöwisMake bsddb use bytes as keys and values. Add StringKeys
2007-08-05 Guido van RossumMerged revisions 56492-56752 via svnmerge from
2007-08-04 Jeremy HyltonFix test for new version of urllib that uses HTTPConnec...
2007-08-04 Jeremy HyltonChange urllib to use HTTPConnection rather than old...
2007-08-04 Guido van RossumMake test_tokenize really pass -- don't add extra output.
2007-08-04 Guido van RossumMake test_tokenize pass again:
2007-08-04 Guido van RossumFix an obvious bug caused by a switch to Unicode.
2007-08-04 Jeremy HyltonFix test: readline() now returns bytes
2007-08-04 Jeremy HyltonFix tests that tried to sneak strings through httplib.
2007-08-04 Jeremy HyltonMake sure LineAndFileWrapper gets bytes() as its first...
2007-08-04 Jeremy HyltonUse BytesIO instead of StringIO.
2007-08-04 Jeremy HyltonFix several more paths from the SSL code.
2007-08-04 Jeremy HyltonChange read() on SSL socket to return bytes.
2007-08-04 Jeremy HyltonHTTPResponse should not inherit from io.IOBase.
2007-08-03 Guido van RossumGet rid of a bogus assert when recv_into() is called...
2007-08-03 Guido van RossumFix failure do to outlawing complex floordiv/mod.
2007-08-03 Jeremy HyltonFix an absurdly invasive test.
2007-08-03 Jeremy HyltonFix tests to use bytes() where the actual sockets retur...
2007-08-03 Guido van RossumMake test_complex pass again now that floordiv and...
2007-08-03 Jeremy HyltonMake sure socket.close() doesn't interfere with socket...
2007-08-03 Jeremy HyltonTreat HTTP status line as ISO-8859-1 as in httplib...
2007-08-03 Jeremy HyltonHack: Fix some test_urllib2.net tests by getting them...
2007-08-03 Jeremy HyltonA few local changes for consistency of string literals.
2007-08-03 Guido van RossumSF patch# 1762940 by Joe Gregorio.
2007-08-03 Guido van RossumSF patch# 1764815 by Paul Colomiets.
2007-08-03 Guido van RossumSF patch# 1766592 by Paul Colomiets.
2007-08-03 Collin WinterConvert print statements to function calls in Tools/.
2007-08-03 Jeremy HyltonMake consistent use of "" for string literals in new...
2007-08-03 Jeremy HyltonFix status line parsing for http response.
2007-08-02 Guido van RossumAdd a default __prepare__() method to 'type', so it...
2007-08-02 Georg BrandlRemove useless \withsubitem.
2007-08-01 Guido van RossumChanges to long and float by Jeffrey Jasskin to conform...
2007-08-01 Guido van RossumWhen testing all stdlib modules, ignore test_pep263...
2007-08-01 Guido van RossumTests for @abstractproperty by Jeffrey Yasskin.
2007-08-01 Guido van RossumKill div, mod and divmod on complex (already deprecated...
2007-08-01 Guido van RossumAdd @abstractproperty.
2007-07-30 Walter DörwaldBytes (which are the input for decoding) are mutable...
2007-07-30 Brett CannonIn cases where dealing with base64, do the conversion...
2007-07-30 Brett CannonDon't try to use a bytes sequence for file paths. ...
2007-07-30 Guido van RossumAdd a missing "rf.depth = 0;" to marshal_load().
2007-07-29 Martin v. LöwisImplement PEP 3120.
2007-07-29 Brett CannonTesting against a different default encoding is meaning...
2007-07-29 Brett CannonExpat parser no longer has a returns_unicode attribute...
2007-07-28 Martin v. LöwisUse BytesIO instead of cStringIO.StringIO.
2007-07-28 Martin v. LöwisRevert previous checkin.
2007-07-28 Martin v. LöwisFix quopri to operate consistently on bytes.
2007-07-28 Martin v. LöwisReturn bytes, not str8.
2007-07-28 Martin v. LöwisPatch #1762412: Fix test case for struni branch.
2007-07-27 Guido van RossumFix the minidom test.
2007-07-27 Guido van RossumSF patch# 1759922 by Alexandre Vassalotti.
2007-07-27 Guido van RossumMake test_sgmllib pass on OSX. Hopefully it still passe...
2007-07-27 Guido van RossumFix the docstrings for keys(), items(), values() (espec...
2007-07-27 Guido van RossumSF patch# 1757839 by Alexandre Vassalotti (part 2).
2007-07-27 Guido van RossumSF patch# 1761465 by Jeffrey Yasskin.
2007-07-27 Guido van RossumDelete redundant read() and close() methods from Socket...
2007-07-26 Guido van RossumDon't redirect stdout for test_curses.
2007-07-26 Guido van RossumReturn bytes, not string from read(). Makes test_mmap...
2007-07-26 Brett CannonMove xdrlib over to the bytes type.
2007-07-26 Brett CannonMove shelve over to BytesIO as pickle.(Pickler | Unpick...
2007-07-25 Guido van RossumFix two bad type identifiers that caused crashes on...
2007-07-24 Guido van RossumMake the last two curses demos work again -- they were...
2007-07-24 Guido van RossumccMake test_curses pass.
2007-07-23 Guido van RossumMake test_wave.py pass.
2007-07-23 Guido van RossumMake test_tcl.py pass, by accepting unicode strings...
2007-07-23 Guido van RossumTweaks to make the codecmaps tests pass again.
2007-07-23 Guido van RossumSF patch# 1759016 by Joe Gregorio, who writes:
2007-07-23 Guido van RossumSF patch# 1758570 by Jeffrey Yasskin, who writes:
2007-07-23 Guido van RossumDon't use cwnon-ASCII characters in the source; use...
2007-07-23 Guido van RossumFix import of frozen package submodules to use Unicode...
2007-07-23 Guido van RossumAdd a command line option to set the -u flag.
2007-07-23 Guido van RossumDon't use a sleep to wait for the server to be ready...
2007-07-23 Collin WinterFix test_largefile by changing some string literals...
2007-07-23 Collin WinterFix test_poplib failures.
2007-07-22 Guido van RossumMake close() (all versions) ignore IOError from flush().
2007-07-22 Guido van RossumRemove this test; it checked for a single old bug and...
2007-07-22 Guido van RossumMake test_compile not fail.
2007-07-22 Martin v. LöwisDrop cPickle from Windows build process.
2007-07-22 Martin v. LöwisMerged revisions 56483-56491 via svnmerge from
2007-07-21 Martin v. LöwisFix merge breakage.
2007-07-21 Martin v. LöwisMerged revisions 56467-56482 via svnmerge from
2007-07-21 Guido van RossumSF patch# 1757683 by Alexandre Vassalotti. Add support for
2007-07-21 Guido van RossumSF patch# 1757839 by Alexandre Vassalotti -- make test_...
2007-07-21 Guido van RossumSF patch# 1757758 by Alexandre Vassalotti, fixing test_ucn.
2007-07-20 Collin WinterMake doctest pass by specifying the right encoding.
2007-07-20 Guido van RossumFix test_uuid.py.
2007-07-20 Guido van RossumDelete failing test that was checking that a slot decla...
2007-07-20 Martin v. LöwisMake audioop and its tests use bytes throughout.
2007-07-20 Martin v. LöwisFix test_doctest: drop u prefixes; explicitly declare
2007-07-20 Guido van RossumMerged revisions 56443-56466 via svnmerge from
2007-07-20 Guido van RossumFix test_cookie.py.
2007-07-20 Guido van RossumGetting rid of cPickle. Mmm, feels good!
2007-07-19 Guido van RossumMake test_datetime.py pass by killing all references...
2007-07-19 Guido van RossumFix test_pickle, by reverting the string opcodes (S...
2007-07-19 Guido van RossumFix a bug in PyUnicode_FromStringAndSize() with signed...
2007-07-18 Guido van RossumFix test_zipfile.py. (Why was it passing before?)
2007-07-18 Guido van RossumMake test_unicode pass after the lexer was fixed to...
2007-07-18 Guido van RossumMake test_parser pass after merge.
2007-07-18 Guido van RossumFix test_asyncore after merge. It needs to use bytes.
next