- 7aa02e6 More email package fixes. by Barry Warsaw · 18 years ago
- 8b2af27 More email package fixes. by Barry Warsaw · 18 years ago
- 00b3422 More email package fixes. by Barry Warsaw · 18 years ago
- 3bcc42a Changed signature of string.Formatter.get_field, per suggestion by Ron Adam. by Eric Smith · 18 years ago
- 11fe3e0 Fixed test name. by Eric Smith · 18 years ago
- 8193669 Added test cases for string.Formatter subclassing. by Eric Smith · 18 years ago
- 812567d Cut test_raise down to size. by Collin Winter · 18 years ago
- 74e68c7 Fix test_smtplib by munging asynchat some more. by Thomas Wouters · 18 years ago
- 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 18 years ago
- d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 18 years ago
- 582b586 Merged revisions 57772-57777 via svnmerge from by Thomas Wouters · 18 years ago
- 185e30c Added format tests. by Eric Smith · 18 years ago
- bc3b345 IDLE's py3k NEWS by Kurt B. Kaiser · 18 years ago
- 47b49bf Merged revisions 57620-57771 via svnmerge from by Thomas Wouters · 18 years ago
- 623d372 Don't ascii encode eol_convention. Was causing file write to fail. by Kurt B. Kaiser · 18 years ago
- 234a34a Explicitly use UTF-8 as the encoding for the normalization file. by Martin v. Löwis · 18 years ago
- 5495957 Bump IDLE version. by Kurt B. Kaiser · 18 years ago
- 8c57104 More email package fixes. by Barry Warsaw · 18 years ago
- fd51975 Fix a typo in the distutils cleanup. by Collin Winter · 18 years ago
- 4902e69 More raise statement normalization. by Collin Winter · 18 years ago
- 6cd2a20 Kill more lingering string exceptions in Lib/plat-mac/. by Collin Winter · 18 years ago
- b9678e7 1/0 -> True/False cleanup. by Collin Winter · 18 years ago
- bd315c5 Calling execvp with an empty argument list raises ValueError, but we by Thomas Heller · 18 years ago
- 080b2b2 Enable the trunc() test. by Guido van Rossum · 18 years ago
- 1daf954 Add numbers.py. I suspect this is an old version, but Jeffrey is out by Guido van Rossum · 18 years ago
- 6790d60 Forbid an empty argument list in execv call. by Thomas Heller · 18 years ago
- 2cc1f6d More email package related repairs. This fixes smtplib's import and use of by Barry Warsaw · 18 years ago
- 5a23cc5 Two changes (not enough to make the test pass though) having to do with by Guido van Rossum · 18 years ago
- a79f125 Stop testing for encoded file names, as Python 3 does not support them, anyway. by Martin v. Löwis · 18 years ago
- eaa16f9 Try to fix test_plistlib so it uses bytes consistently in this call by Neal Norwitz · 18 years ago
- 152b3c2 Use inspect.py and clean up. by Kurt B. Kaiser · 18 years ago
- f40080f Try to fix test_aepack by comparing bytes with bytes. by Neal Norwitz · 18 years ago
- 9a92310 Write bytes instead of unicode by Neal Norwitz · 18 years ago
- 78a70bd Try to get test_pep352 and maybe test_platform to work on a Windows buildbot by Neal Norwitz · 18 years ago
- 09cff64 Since the filename is encoded, we must add bytes to it. The test by Neal Norwitz · 18 years ago
- cabac0a Stop using the find function on the string module, use the string method. by Neal Norwitz · 18 years ago
- c247e51 Make this module importable, this gets test___all__ to pass. by Neal Norwitz · 18 years ago
- 5b7e9d7 General cleanup, raise normalization in Lib/distutils. by Collin Winter · 18 years ago
- a73bfee Raise statement normalization in Lib/ctypes/. by Collin Winter · 18 years ago
- 9604e66 Oops. I copied a slightly older version of the email package from the sandbox. by Guido van Rossum · 18 years ago
- 2c440a1 Use the new name for the parser module. by Neal Norwitz · 18 years ago
- 315d845 Revert revisions 57472, 57474, and 57477 which disabled some tests by Neal Norwitz · 18 years ago
- 8b3d659 Fix a more bytes/str confusion. by Barry Warsaw · 18 years ago
- ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 18 years ago
- 8b3febe Copying the email package back, despite its failings. by Guido van Rossum · 18 years ago
- 95fb569 Revert r57685 (weird merge result). by Collin Winter · 18 years ago
- 3add4d7 Raise statement normalization in Lib/test/. by Collin Winter · 18 years ago
- e0281ca by Collin Winter · 18 years ago
- f7f3deb Andother bytes/str comparison caught by Jeremy's change. by Guido van Rossum · 18 years ago
- 9ff05b2 Change string literal to bytes. by Jeremy Hylton · 18 years ago
- 88d06a7 Make terminator constants bytes. by Jeremy Hylton · 18 years ago
- a5dc3db Change string literals to bytes, since they are compared to bytes. by Jeremy Hylton · 18 years ago
- 18c3ff8 Make it an error to compare a bytes object and a Unicode object. by Jeremy Hylton · 18 years ago
- 991bf5d Patch # 1050 by Amaury Forgeot d'Arc. by Guido van Rossum · 18 years ago
- cf3c421 1. Debugger was failing to start due to DictProxy limitations. by Kurt B. Kaiser · 18 years ago
- fb67be2 Three patches from issue #1047, by Amaury Forgeot d'Arc: by Guido van Rossum · 18 years ago
- e86254e In rseponse to bug# 1029, force the newline default for StringIO to "\n", by Guido van Rossum · 18 years ago
- dcce839 Insist that the argument to TextIOWrapper.write() is a basestring by Guido van Rossum · 18 years ago
- da3f228 Convert various string literals to bytes. by Jeremy Hylton · 18 years ago
- b4df71f Fix test failures caused by missing/incorrect conversion to bytes. by Jeremy Hylton · 18 years ago
- 8136014 Fix up brokenness with hashing, now hashlib is strict in requiring bytes too. by Guido van Rossum · 18 years ago
- 04c70ad Fix the one failing test (can't decode twice). by Guido van Rossum · 18 years ago
- 9befa93 Fix test_pyclbr -- _https_connection is optional. by Guido van Rossum · 18 years ago
- 8c74614 Fix failure in error handler -- exc[-1] -> exc.args[-1]. by Guido van Rossum · 18 years ago
- 39dce30 Get test_bsddb3 passing by Neal Norwitz · 18 years ago
- e14841c strings vs bytes, bytes wins again by Gregory P. Smith · 18 years ago
- a74184e Commit strict str/bytes distinction. by Guido van Rossum · 18 years ago
- 245b42e Found a different, more direct way to disable ssl support until it's fixed. by Guido van Rossum · 18 years ago
- 1b81e7b Change the way the encoding parameter is handled. by Guido van Rossum · 18 years ago
- a1c42a9 Make test_cmd_line work with strict str/bytes. by Guido van Rossum · 18 years ago
- a8be92b Fix the sqlite test. Blobs should be created using buffer(b"blob"), by Guido van Rossum · 18 years ago
- 625cbf2 Modified parsing of format strings, so that we always return by Eric Smith · 18 years ago
- 9600f93 Make gettext work with strict str/bytes. by Guido van Rossum · 18 years ago
- 83800a6 Fix this test. How could it ever have worked?! by Guido van Rossum · 18 years ago
- 083e20c Forgot one. This makes test_urllib2.py pass. by Guido van Rossum · 18 years ago
- 022c474 Make test_httplib pass. by Guido van Rossum · 18 years ago
- 70d0dda Make test_urllib be strict about str/bytes. by Guido van Rossum · 18 years ago
- 7436a06 Disable this test too. by Guido van Rossum · 18 years ago
- 47229db Disable test_ssl until ssl.py has been fixed. by Guido van Rossum · 18 years ago
- 3e57b52 Fix buglet in sliceobjects, they were not returning Py_NotImplemented when by Thomas Wouters · 18 years ago
- ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 18 years ago
- 9e7c8da Simplified tuple returned by string._formatter_parser to only have by Eric Smith · 18 years ago
- 3fd22da some test suite cleanup, use tempfile.mkdtemp() in setUp and by Gregory P. Smith · 18 years ago
- a280ca7 Conform to strict str/bytes distinction. by Lars Gustäbel · 18 years ago
- 6665cef Apply this change from 2.6. Hopefully it doesn't cause a conflict. by Neal Norwitz · 18 years ago
- 6d199ef Remove unneeded import. by Collin Winter · 18 years ago
- 8ef94e8 Remove unneeded imports from bsddb's test_dbshelve. by Collin Winter · 18 years ago
- 115cde3 Style/idiom cleanup of binhex module. by Collin Winter · 18 years ago
- 1b261df Make this work on Mac as well (where Type and Creator are bytes instead of str). by Guido van Rossum · 18 years ago
- 92bab81 My wish for TempFile is fulfilled. by Guido van Rossum · 18 years ago
- f0c7416 Patch # 1033 by Adam Hupp: by Guido van Rossum · 18 years ago
- a1a6852 Make test_cgi pass. I changed the internal file created by make_file() by Guido van Rossum · 18 years ago
- 7b4beea Make dumbdbm use bytes for keys consistently. by Guido van Rossum · 18 years ago
- bb839ef More str/bytes goodness. by Guido van Rossum · 18 years ago
- ec42ffd More str/bytes strictness. by Guido van Rossum · 18 years ago
- 199fc75 str/bytes strictness. by Guido van Rossum · 18 years ago
- b644fb4 str/bytes strictness. by Guido van Rossum · 18 years ago
- 7dcb844 More str/bytes strictness. by Guido van Rossum · 18 years ago
- 26d95c3 More str/bytes fixes. by Guido van Rossum · 18 years ago
- e22905a More changes needed to make things work once bytes and str are truly divorced. by Guido van Rossum · 18 years ago