summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Refactor test_email/test_defect_handling.R David Murray2012-05-292-179/+162
|
* Issue #14930: Make memoryview objects weakrefable.Richard Oudkerk2012-05-285-2/+23
|
* Issue #14775: Fix a potential quadratic dict build-up due to the garbage ↵Antoine Pitrou2012-05-283-3/+61
|\ | | | | | | | | | | collector repeatedly trying to untrack dicts. Additional comments by Tim Silk.
| * Issue #14775: Fix a potential quadratic dict build-up due to the garbage ↵Antoine Pitrou2012-05-283-3/+61
| | | | | | | | | | | | collector repeatedly trying to untrack dicts. Additional comments by Tim Silk.
* | Issue #9041: raised exception is misleadingMeador Inge2012-05-283-25/+19
|\ \ | |/ | | | | | | | | An issue in ctypes.c_longdouble, ctypes.c_double, and ctypes.c_float that caused an incorrect exception to be returned in the case of overflow has been fixed.
| * Issue #9041: raised exception is misleadingMeador Inge2012-05-283-25/+19
| | | | | | | | | | | | An issue in ctypes.c_longdouble, ctypes.c_double, and ctypes.c_float that caused an incorrect exception to be returned in the case of overflow has been fixed.
* | Fixed typo.Vinay Sajip2012-05-281-1/+1
| |
* | Tweaked tests to use launcher executable name on OS X.Vinay Sajip2012-05-281-1/+5
| |
* | Added python3 symlink; removed Distribute-related code, docs and comments; ↵Vinay Sajip2012-05-281-126/+16
| | | | | | | | changed Mac OS X computation to determine framework builds.
* | Merge from 3.2Nick Coghlan2012-05-282-1/+5
|\ \ | |/
| * Issue #14443: Tell rpmbuild to use the correct version of PythonNick Coghlan2012-05-282-1/+5
| |
* | Issue #14660: Install namespace_pkgs test directories and files.Ned Deily2012-05-281-0/+18
| |
* | Merge 3.2 #14929Terry Jan Reedy2012-05-282-1/+4
|\ \ | |/
| * Issue14929: Stop Idle 3.x from closing on Unicode decode errors when grepping.Terry Jan Reedy2012-05-282-1/+4
| | | | | | | | Patch by Roger Serwy.
* | #12515: email now registers a defect if the MIME end boundary is missing.R David Murray2012-05-285-3/+59
| | | | | | | | | | | | 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.)
* | merge headsTerry Jan Reedy2012-05-280-0/+0
|\ \
| * | News item for #1672568.R David Murray2012-05-281-0/+4
| | |
* | | Merge 3.2 closes #12510Terry Jan Reedy2012-05-282-3/+9
|\ \ \ | |/ / |/| / | |/
| * Issue12510: Attempting to get invalid tooltip no longer closes Idle.Terry Jan Reedy2012-05-282-3/+9
| | | | | | | | Original patch by Roger Serwy.
* | #1672568: email now registers defects for base64 payload format errors.R David Murray2012-05-286-275/+344
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | #14925: email now registers a defect for missing header/body separator.R David Murray2012-05-286-18/+61
| | | | | | | | | | | | | | 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.
* | Null merge of email doc patch already applied to this branch.R David Murray2012-05-270-0/+0
|\ \ | |/
| * #11785: fix the :mod: references in email package submodule titles.R David Murray2012-05-2710-20/+20
| |
* | #11785: fix the :mod: references in email package submodule titles.R David Murray2012-05-2713-22/+30
| | | | | | | | Also adds the TOC entry for headerregistry.
* | Make headerregistry fully part of the provisional api.R David Murray2012-05-277-213/+429
| | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Changed executable name computation in test_venv to allow for debug executables.Vinay Sajip2012-05-271-2/+1
| |
* | Refined venv tests.Vinay Sajip2012-05-271-9/+26
| |
* | Add '__all__' to _encoded_words and mark QByteMap as private.R David Murray2012-05-271-2/+12
| |
* | Fixed _sys_home computation and added diagnostics for Windows buildbot failures.Vinay Sajip2012-05-273-2/+8
| |
* | Close #14857: fix regression in references to PEP 3135 implicit __class__ ↵Nick Coghlan2012-05-277-17/+45
| | | | | | | | closure variable. Reopens issue #12370, but also updates unittest.mock to workaround that issue
* | Tweak importlib._bootstrap to avoid zero-argument super so I can work on ↵Nick Coghlan2012-05-272-1858/+1862
| | | | | | | | issue #14857 without breaking imports
* | Fix markup.Georg Brandl2012-05-271-1/+1
| |
* | Merge with 3.2 #10635 whitespaceTerry Jan Reedy2012-05-271-1/+1
|\ \ | |/
| * #10365 Trim trailing whitespaceTerry Jan Reedy2012-05-271-1/+1
| |
* | Merge with 3.2Terry Jan Reedy2012-05-273-6/+17
|\ \ | |/ | | | | | | Issue #10365: File open dialog now works instead of crashing even when parent window is closed. Patch by Roger Serwy.
| * Issue #10365: File open dialog now works instead of crashingTerry Jan Reedy2012-05-273-6/+17
| | | | | | | | even when parent window is closed. Patch by Roger Serwy.
* | Make multiprocessing's shared memory use memoryview instead of raw pointerRichard Oudkerk2012-05-263-26/+5
| |
* | Merge Issue #14876: Use user-selected font for highlight configuration.Terry Jan Reedy2012-05-262-2/+6
|\ \ | |/ | | | | Patch by Roger Serwy.
| * Issue #14876: Use user-selected font for highlight configuration.Terry Jan Reedy2012-05-262-2/+6
| | | | | | | | Patch by Roger Serwy.
* | Merged upstream changes.Vinay Sajip2012-05-2615-1530/+2147
|\ \
| * | #8739: upgrade smtpd to RFC 5321 and 1870.R David Murray2012-05-267-91/+482
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | Recognize '<>' as a special case of an angle-addr in header_value_parser.R David Murray2012-05-262-2/+25
| | | | | | | | | | | | | | | | | | | | | 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.
| * | Remove some redundant decorators.Brett Cannon2012-05-262-1307/+1302
| | |
| * | Issue #14814: Add a basic ipaddress tutorial (thanks to Sandro Tosi for the ↵Nick Coghlan2012-05-262-0/+292
| | | | | | | | | | | | initial conversion from Peter Moody's wiki version)
| * | Issue #14814: Clean out an obsolete property and method from ipaddress ↵Nick Coghlan2012-05-262-14/+2
| | | | | | | | | | | | Network objects
| * | Issue #14814: Cleanup ipaddress header commentsNick Coghlan2012-05-262-28/+2
| | |
| * | Issue #14814: In the spirit of TOOWTDI, ditch the redundant version ↵Nick Coghlan2012-05-262-94/+48
| | | | | | | | | | | | parameter to the factory functions by using the appropriate direct class references instead
* | | Addressed some buildbot errors and comments on the checkin by Antoine on ↵Vinay Sajip2012-05-264-58/+51
|/ / | | | | | | python-dev.
* | #14814: Some PEP8 adjustments and dead code weedingHynek Schlawack2012-05-261-27/+17
| |
* | Add missing versionadded.Georg Brandl2012-05-261-0/+6
| |