Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
7aa02e6 More email package fixes. Fix a couple of tests since .body_encode()'s arguments have changed. Also, I think body_encode() should take a string not a byte array for consistency with the rest of the api (but I'm not positive about this). In quoprimime.body_encode(), body_check() must be passed an int. Current status: 7F (no errors!) 31 August 2007, 03:26:19 UTC
0616b79 Tutorial update for 3.0 by Paul Dubois. I had to fix a few markup issues in controlflow.rst and modules.rst. There's a unicode issue on line 448 in introduction.rst that someone else needs to fix. 31 August 2007, 03:25:11 UTC
8b2af27 More email package fixes. MIMEApplication() requires a bytes object for its _data, so fix the tests. We no longer need utils._identity() or utils._bdecode(). The former isn't used anywhere AFAICT (where's "make test's" lint? <wink>) and the latter is a kludge that is eliminated by base64.b64encode(). Current status: 5F/5E 31 August 2007, 03:04:26 UTC
00b3422 More email package fixes. This repairs the linear whitespace insertion between RFC 2047 encoded words without leaving bogus trailing spaces at the end lines that end in encoded words. Current status: 7F/9E 31 August 2007, 02:35:00 UTC
3bcc42a Changed signature of string.Formatter.get_field, per suggestion by Ron Adam. Added test case for using all parameters in string.Formatter. 31 August 2007, 02:26:31 UTC
11fe3e0 Fixed test name. 31 August 2007, 01:33:06 UTC
8193669 Added test cases for string.Formatter subclassing. Made format_spec parameter to builtin format optional, defaults to empty string. Added test cases. 31 August 2007, 01:14:01 UTC
231ff0e Fix a compile error on Windows. 31 August 2007, 00:59:38 UTC
812567d Cut test_raise down to size. 31 August 2007, 00:47:26 UTC
32347fb Update import.c's MAGIC value for the new raise syntax (as opposed to merely updating the comment). 31 August 2007, 00:42:15 UTC
7576583 Minor tweaks. 31 August 2007, 00:38:53 UTC
b197f3c First draft of a what's new document. (There's something wrong with my network right now so I can't build it.) 31 August 2007, 00:37:00 UTC
6deb1bf Use pow() instead of repeated multiplication by 10 in round(x, n). 31 August 2007, 00:27:03 UTC
74e68c7 Fix test_smtplib by munging asynchat some more. 31 August 2007, 00:20:14 UTC
828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. 31 August 2007, 00:04:24 UTC
150b7d7 Remove curses temp file consistently. 30 August 2007, 23:34:01 UTC
d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. 30 August 2007, 22:57:53 UTC
582b586 Merged revisions 57772-57777 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r57776 | thomas.wouters | 2007-08-31 00:35:31 +0200 (Fri, 31 Aug 2007) | 4 lines One more fix to consider missing SSL support. ........ 30 August 2007, 22:39:17 UTC
185e30c Added format tests. Fixed bug in alignment of negative numbers. Whitespace normalization. 30 August 2007, 22:23:08 UTC
bc3b345 IDLE's py3k NEWS 30 August 2007, 22:16:49 UTC
47b49bf Merged revisions 57620-57771 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r57771 | thomas.wouters | 2007-08-30 23:54:39 +0200 (Thu, 30 Aug 2007) | 5 lines Don't lie in __all__ attributes when SSL is not available: only add the SSL classes when they are actually created. ........ r57620 | walter.doerwald | 2007-08-28 18:38:26 +0200 (Tue, 28 Aug 2007) | 5 lines Fix title endtag in HTMLCalender.formatyearpage(). Fix documentation for HTMLCalender.formatyearpage() (there's no themonth parameter). This fixes issue1046. ........ r57622 | georg.brandl | 2007-08-28 20:54:44 +0200 (Tue, 28 Aug 2007) | 2 lines Add a crasher for the thread-unsafety of file objects. ........ r57626 | skip.montanaro | 2007-08-29 01:22:52 +0200 (Wed, 29 Aug 2007) | 1 line fixes 813986 ........ r57628 | walter.doerwald | 2007-08-29 01:35:33 +0200 (Wed, 29 Aug 2007) | 2 lines Fix test output. ........ r57631 | skip.montanaro | 2007-08-29 03:24:11 +0200 (Wed, 29 Aug 2007) | 2 lines Install pygettext (once the scriptsinstall target is working again). ........ r57633 | skip.montanaro | 2007-08-29 03:33:45 +0200 (Wed, 29 Aug 2007) | 2 lines Recent items. ........ r57650 | neal.norwitz | 2007-08-29 08:15:33 +0200 (Wed, 29 Aug 2007) | 1 line Add Bill as a developer ........ r57651 | facundo.batista | 2007-08-29 12:28:28 +0200 (Wed, 29 Aug 2007) | 5 lines Ignore test failures caused by 'resource temporarily unavailable' exceptions raised during FailingServerTestCase tests. [GSoC - Alan McIntyre] ........ r57680 | bill.janssen | 2007-08-30 00:35:05 +0200 (Thu, 30 Aug 2007) | 17 lines This contains a number of things: 1) Improve the documentation of the SSL module, with a fuller explanation of certificate usage, another reference, proper formatting of this and that. 2) Fix Windows bug in ssl.py, and general bug in sslsocket.close(). Remove some unused code from ssl.py. Allow accept() to be called on sslsocket sockets. 3) Use try-except-else in import of ssl in socket.py. Deprecate use of socket.ssl(). 4) Remove use of socket.ssl() in every library module, except for test_socket_ssl.py and test_ssl.py. ........ r57714 | georg.brandl | 2007-08-30 12:09:42 +0200 (Thu, 30 Aug 2007) | 2 lines Stronger urge to convert filenames to str before using them as argument to ZipFile.write(). ........ r57716 | georg.brandl | 2007-08-30 12:38:56 +0200 (Thu, 30 Aug 2007) | 2 lines Patch #1680959: add test suite for pipes module. ........ r57717 | georg.brandl | 2007-08-30 14:32:23 +0200 (Thu, 30 Aug 2007) | 3 lines * Skip test_pipes on non-POSIX. * Don't raise TestSkipped within a test function. ........ r57723 | mark.summerfield | 2007-08-30 17:03:03 +0200 (Thu, 30 Aug 2007) | 3 lines Added more cross-references. ........ r57726 | walter.doerwald | 2007-08-30 17:30:09 +0200 (Thu, 30 Aug 2007) | 2 lines Rewrap line. ........ r57727 | walter.doerwald | 2007-08-30 17:34:55 +0200 (Thu, 30 Aug 2007) | 2 lines Set startinpos before calling the error handler. ........ r57730 | bill.janssen | 2007-08-30 19:07:28 +0200 (Thu, 30 Aug 2007) | 3 lines Added docstrings to methods and functions. ........ r57743 | bill.janssen | 2007-08-30 20:08:06 +0200 (Thu, 30 Aug 2007) | 1 line added note on new ssl module and deprecation of socket.ssl ........ r57747 | martin.v.loewis | 2007-08-30 20:14:01 +0200 (Thu, 30 Aug 2007) | 1 line Fix popen usage. ........ r57748 | martin.v.loewis | 2007-08-30 20:15:22 +0200 (Thu, 30 Aug 2007) | 1 line Fix typo. ........ r57750 | martin.v.loewis | 2007-08-30 20:25:47 +0200 (Thu, 30 Aug 2007) | 1 line Bug #1746880: Correctly install DLLs into system32 folder on Win64. ........ r57760 | martin.v.loewis | 2007-08-30 21:04:09 +0200 (Thu, 30 Aug 2007) | 1 line Bug #1709599: Run test_1565150 only if the file system is NTFS. ........ r57762 | martin.v.loewis | 2007-08-30 22:10:57 +0200 (Thu, 30 Aug 2007) | 2 lines Bump autoconf minimum version to 2.61. ........ r57764 | lars.gustaebel | 2007-08-30 22:24:31 +0200 (Thu, 30 Aug 2007) | 2 lines Warn about possible risks when extracting untrusted archives. ........ r57769 | thomas.wouters | 2007-08-30 23:01:17 +0200 (Thu, 30 Aug 2007) | 7 lines Somewhat-preliminary slice-object and extended slicing support for ctypes. The exact behaviour of omitted and negative indices for the Pointer type may need a closer look (especially as it's subtly different from simple slices) but there's time yet before 2.6, and not enough before 3.0a1 :-) ........ 30 August 2007, 22:15:33 UTC
cf1be88 Add some miscellanea. 30 August 2007, 22:07:17 UTC
2c7f314 Fix a typo and a trailing space. N.B. NEWS doesn't mention that map() and filter() return iterators. 30 August 2007, 21:52:19 UTC
623d372 Don't ascii encode eol_convention. Was causing file write to fail. 30 August 2007, 21:00:19 UTC
234a34a Explicitly use UTF-8 as the encoding for the normalization file. 30 August 2007, 20:58:02 UTC
5495957 Bump IDLE version. 30 August 2007, 20:51:49 UTC
e5e8eff Add a note about the openssl dependency. Switch to '*' bullets for easier copying into the website. 30 August 2007, 20:18:10 UTC
8c57104 More email package fixes. 30 August 2007, 19:17:18 UTC
b13c493 Fix more lingering print statements. 30 August 2007, 18:50:25 UTC
fd51975 Fix a typo in the distutils cleanup. 30 August 2007, 18:46:25 UTC
845702c Small updates. 30 August 2007, 18:44:53 UTC
e7bf59f Run 2to3's print fixer over some places that had been missed. 30 August 2007, 18:39:28 UTC
716c3ac Add 3.0 to the silly list in license.rst too, and update the Doc README. 30 August 2007, 18:34:23 UTC
f4780d0 Fix #1753395. 30 August 2007, 18:29:48 UTC
47cc2a0 Bug #1746880: Correctly install DLLs into system32 folder on Win64. 30 August 2007, 18:27:06 UTC
4902e69 More raise statement normalization. 30 August 2007, 18:18:27 UTC
6cd2a20 Kill more lingering string exceptions in Lib/plat-mac/. 30 August 2007, 18:11:48 UTC
b9678e7 1/0 -> True/False cleanup. 30 August 2007, 18:11:17 UTC
bd315c5 Calling execvp with an empty argument list raises ValueError, but we want to test for OSError. 30 August 2007, 17:57:21 UTC
080b2b2 Enable the trunc() test. 30 August 2007, 17:46:57 UTC
1daf954 Add numbers.py. I suspect this is an old version, but Jeffrey is out of town, and it will have to do for now. 30 August 2007, 17:45:54 UTC
3cd6537 Fix a lingering string exception. 30 August 2007, 17:37:22 UTC
bf2604c Fix typo 30 August 2007, 17:22:44 UTC
b365c15 Add 2.6 and 3.0 to the silly list. 30 August 2007, 17:21:12 UTC
0cfc8bd Update patch level to 3.0a1. We're close enough. 30 August 2007, 17:20:01 UTC
4405cf3 Update Misc/NEWS. Add RELNOTES. 30 August 2007, 17:16:55 UTC
6790d60 Forbid an empty argument list in execv call. Fixes issue 1039. 30 August 2007, 17:15:14 UTC
8a7c866 Move definition of TZNAME_ENCODING further up. 30 August 2007, 15:40:24 UTC
2b65c75 Set startinpos before calling the error handler. 30 August 2007, 15:35:26 UTC
a651d3d Rewrap line. 30 August 2007, 15:29:21 UTC
4c6c7ca Port to Python 3.0. 30 August 2007, 15:23:04 UTC
945362c Implement PYTHONNOERRORWINDOW. 30 August 2007, 14:57:25 UTC
ef0f129 Move the copyright and license stuff to the end. 30 August 2007, 14:51:05 UTC
3bb0070 Explicitly convert tzname to Unicode. Fixes #1040. 30 August 2007, 14:37:48 UTC
2cc1f6d More email package related repairs. This fixes smtplib's import and use of email.base64mime, but test_smtplib still has failures for me. They are timeout errors so think they're more related to my current wacky network setup than bugs remaining in the code related to the email package. This also r57693 that got clobbered with the sandbox sync, and fixes a couple of other minor problems that cropped up. I will kill the sandbox branch next. The email package now has 11F/11E. 30 August 2007, 14:28:55 UTC
5a23cc5 Two changes (not enough to make the test pass though) having to do with the bytes() constructor when passing str. 30 August 2007, 14:02:43 UTC
d24fdbc Use s# instead of t# for nis_match. 30 August 2007, 10:21:51 UTC
a79f125 Stop testing for encoded file names, as Python 3 does not support them, anyway. 30 August 2007, 10:08:57 UTC
eaa16f9 Try to fix test_plistlib so it uses bytes consistently in this call 30 August 2007, 06:37:08 UTC
152b3c2 Use inspect.py and clean up. 30 August 2007, 06:35:15 UTC
f40080f Try to fix test_aepack by comparing bytes with bytes. 30 August 2007, 06:32:09 UTC
9a92310 Write bytes instead of unicode 30 August 2007, 06:20:05 UTC
78a70bd Try to get test_pep352 and maybe test_platform to work on a Windows buildbot 30 August 2007, 06:16:26 UTC
09cff64 Since the filename is encoded, we must add bytes to it. The test still fails, but gets a little further with this change. 30 August 2007, 05:59:15 UTC
f739991 Add uuids for 3.0. 30 August 2007, 05:45:17 UTC
16596dd Try to fix the problem on the Windows buildbot where this code: b * sys.maxint # from test_bytes.py line 379 Caused: SystemError: error return without exception set 30 August 2007, 05:44:54 UTC
ff0940f Bump version numbers. 30 August 2007, 05:40:17 UTC
cabac0a Stop using the find function on the string module, use the string method. This will hopefully fix the problem on a Windows buildbot with test_sundry. 30 August 2007, 05:35:41 UTC
0c3842f Forward Windows build instructions to PCbuild. 30 August 2007, 05:34:10 UTC
c247e51 Make this module importable, this gets test___all__ to pass. 30 August 2007, 05:19:29 UTC
5b7e9d7 General cleanup, raise normalization in Lib/distutils. 30 August 2007, 03:52:21 UTC
a73bfee Raise statement normalization in Lib/ctypes/. 30 August 2007, 03:47:13 UTC
9604e66 Oops. I copied a slightly older version of the email package from the sandbox. This should restore the email package in the py3k branch to exactly what's in the sandbox. This wipes out 1-2 fixes made post-copy, which I'll re-apply shortly. 30 August 2007, 03:46:43 UTC
2c440a1 Use the new name for the parser module. 30 August 2007, 03:10:46 UTC
315d845 Revert revisions 57472, 57474, and 57477 which disabled some tests when the email package was removed. Email was restored, so restore the tests. 30 August 2007, 03:06:59 UTC
8b3d659 Fix a more bytes/str confusion. Use str.encode('raw-unicode-escape') consistently instead of bytes(string). Remove the convert_eols argument from base64mime.decode(). This matches previous API changes done to the quoprimime module. 30 August 2007, 02:10:49 UTC
ce36ad8 Raise statement normalization in Lib/. 30 August 2007, 01:19:48 UTC
8b3febe Copying the email package back, despite its failings. 30 August 2007, 01:15:14 UTC
21b731f Fix an outdated URL in a SyntaxError message. 30 August 2007, 00:10:46 UTC
8188e63 When clobbering, also clean the docs. 29 August 2007, 23:48:29 UTC
95fb569 Revert r57685 (weird merge result). 29 August 2007, 23:41:34 UTC
ba1fffa Make it work with Py3k. 29 August 2007, 23:37:34 UTC
3add4d7 Raise statement normalization in Lib/test/. 29 August 2007, 23:37:32 UTC
e0281ca 29 August 2007, 23:37:10 UTC
98e0d4c 29 August 2007, 23:36:47 UTC
5420bc3 Don't delete test output when "make clean" is run -- only when "make clobber" is run. (Thanks Thomas W. for pointing this out!) 29 August 2007, 23:35:30 UTC
77b5e33 Modernize clean and funny targets. 29 August 2007, 23:24:02 UTC
1c896e3 Mostly rewritten, much shorter README for Py3k. 29 August 2007, 23:03:30 UTC
63175a1 [Oops, I forgot half of the patch.] Patch # 1050 by Amaury Forgeot d'Arc. On Windows, debug builds insert stack probes, and recursive functions tend to exhaust the stack faster. This patch reduces the marshal maximum depth from 2000 to 1500 for debug builds only. Optimized builds are not affected. This allows test_marshal to pass with debug builds. 29 August 2007, 20:39:13 UTC
f7f3deb Andother bytes/str comparison caught by Jeremy's change. 29 August 2007, 20:24:57 UTC
9ff05b2 Change string literal to bytes. 29 August 2007, 19:09:54 UTC
88d06a7 Make terminator constants bytes. 29 August 2007, 19:08:30 UTC
a5dc3db Change string literals to bytes, since they are compared to bytes. 29 August 2007, 19:07:40 UTC
e3e3701 Fix issue # 1037 (sort of). 29 August 2007, 18:54:41 UTC
18c3ff8 Make it an error to compare a bytes object and a Unicode object. 29 August 2007, 18:47:16 UTC
991bf5d Patch # 1050 by Amaury Forgeot d'Arc. On Windows, debug builds insert stack probes, and recursive functions tend to exhaust the stack faster. This patch reduces the marshal maximum depth from 2000 to 1500 for debug builds only. Optimized builds are not affected. This allows test_marshal to pass with debug builds. 29 August 2007, 18:44:54 UTC
cf3c421 1. Debugger was failing to start due to DictProxy limitations. 2. Fix some debug prints in RemoteDebugger.py - use py3k syntax. 29 August 2007, 18:44:24 UTC
39342f4 Patch # 1048 by Amaury Forgeot d'Arc. test_float crashes on Windows, because the %zd format is used in a call to PyOS_snprintf(). The attached patch properly uses PY_FORMAT_SIZE_T. 29 August 2007, 18:42:15 UTC
fb67be2 Three patches from issue #1047, by Amaury Forgeot d'Arc: 1/ getargs.diff adds the 'Z' and 'Z#' format specifiers for PyArg_ParseTuple. They mimic z and z# for unicode strings, by accepting a Unicode or None (in which case the Py_UNICODE* pointer is set to NULL). With doc and tests. 2/ subprocess.diff converts file PC/_subprocess.c to unicode. We use the Unicode version of the win32 api (and Z conversion from previous patch) 3/ stdout.diff: sys.stdout must not convert the line endings, Windows already does it. Without this patch, when redirecting the output of python, the file contains \r\r\n for each line. (test_subprocess did catch this) However, I (GvR) removed the change to _fileio.c (included in the patches) that prevents closing file descripors < 3 from being closed; I think that needs to be solved in a different way. 29 August 2007, 18:38:11 UTC
e86254e In rseponse to bug# 1029, force the newline default for StringIO to "\n", so that even on Windows, after s.write("x\n"), s.getvalue() == "x\n". 29 August 2007, 18:31:16 UTC
back to top