- 28 May, 2012 14 commits
-
-
Vinay Sajip authored
-
Vinay Sajip authored
Added python3 symlink; removed Distribute-related code, docs and comments; changed Mac OS X computation to determine framework builds.
-
Nick Coghlan authored
-
Nick Coghlan authored
-
Ned Deily authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
Patch by Roger Serwy.
-
R David Murray authored
This commit also restores the news item for 167256 that it looks like Terry inadvertently deleted. (Either that, or I don't understand now merging works...which is equally possible.)
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
Original patch by Roger Serwy.
-
R David Murray authored
-
R David Murray authored
Which also means that it is now producing *something* for any base64 payload, which is what leads to the couple of older test changes in test_email. This is a slightly backward incompatible behavior change, but the new behavior is so much more useful than the old (you can now *reliably* detect errors, and any program that was detecting errors by sniffing for a base64 return from get_payload(decode=True) and then doing its own error-recovery decode will just get the error-recovery decode right away). So this seems to me to be worth the small risk inherent in this behavior change. This patch also refactors the defect tests into a separate test file, since they are no longer just parser tests.
-
R David Murray authored
This patch also deprecates the MalformedHeaderDefect. My best guess is that this defect was rendered obsolete by a refactoring of the parser, and the corresponding defect for the new parser (which this patch introduces) was overlooked.
-
- 27 May, 2012 15 commits
-
-
R David Murray authored
-
R David Murray authored
-
R David Murray authored
Also adds the TOC entry for headerregistry.
-
R David Murray authored
When I made the checkin of the provisional email policy, I knew that Address and Group needed to be made accessible from somewhere. The more I looked at it, though, the more it became clear that since this is a provisional API anyway, there's no good reason to hide headerregistry as a private API. It was designed to ultimately be part of the public API, and so it should be part of the provisional API. This patch fully documents the headerregistry API, and deletes the abbreviated version of those docs I had added to the provisional policy docs.
-
Vinay Sajip authored
-
Vinay Sajip authored
-
R David Murray authored
-
Vinay Sajip authored
-
Nick Coghlan authored
Close #14857: fix regression in references to PEP 3135 implicit __class__ closure variable. Reopens issue #12370, but also updates unittest.mock to workaround that issue
-
Nick Coghlan authored
Tweak importlib._bootstrap to avoid zero-argument super so I can work on issue #14857 without breaking imports
-
Georg Brandl authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
Issue #10365: File open dialog now works instead of crashing even when parent window is closed. Patch by Roger Serwy.
-
Terry Jan Reedy authored
even when parent window is closed. Patch by Roger Serwy.
-
- 26 May, 2012 11 commits
-
-
Richard Oudkerk authored
-
Terry Jan Reedy authored
Patch by Roger Serwy.
-
Terry Jan Reedy authored
Patch by Roger Serwy.
-
Vinay Sajip authored
-
Vinay Sajip authored
-
R David Murray authored
smtpd now handles EHLO and has infrastructure for extended smtp command mode. The SIZE extension is also implemented. In order to support parameters on MAIL FROM, the RFC 5322 parser from the email package is used to parse the address "token". Logging subclasses things and overrides __init__, so it was necessary to update those __init__ functions in the logging tests to make the logging tests pass. The original suggestion and patch were by Alberto Trevino. Juhana Jauhiainen added the --size argument and SIZE parameter support. Michele Orrù improved the patch and added more tests. Dan Boswell conditionalized various bits of code on whether or not we are in HELO or EHLO mode, as well as some other improvements and tests. I finalized the patch and added the address parsing.
-
R David Murray authored
Although '<>' is invalid according to RFC 5322, SMTP uses it for various things, and it sometimes ends up in email headers. This patch changes get_angle_addr to recognize it and just register a Defect instead of raising a parsing error.
-
Brett Cannon authored
-
Nick Coghlan authored
Issue #14814: Add a basic ipaddress tutorial (thanks to Sandro Tosi for the initial conversion from Peter Moody's wiki version)
-
Nick Coghlan authored
-
Nick Coghlan authored
-