summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Bump version to 3.3.0a4.v3.3.0a4Georg Brandl2012-05-302-2/+2
|
* Close #14690: Use monotonic clock instead of system clock in the sched,Victor Stinner2012-05-301-0/+3
| | | | subprocess and trace modules.
* Issue #14958: Change IDLE systax highlighting to recognize all string andNed Deily2012-05-301-0/+3
| | | | byte literals supported in Python 3.3.
* Merge 3.2 news itemBrian Curtin2012-05-291-0/+2
|\
| * Add news item for #14943Brian Curtin2012-05-291-0/+3
| |
* | Issue #10997: merge from 3.2Ned Deily2012-05-291-0/+2
|\ \ | |/
| * Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.Ned Deily2012-05-291-0/+2
| |
* | Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args ↵Victor Stinner2012-05-291-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and str.format(args) * Formatting string, int, float and complex use the _PyUnicodeWriter API. It avoids a temporary buffer in most cases. * Add _PyUnicodeWriter_WriteStr() to restore the PyAccu optimization: just keep a reference to the string if the output is only composed of one string * Disable overallocation when formatting the last argument of str%args and str.format(args) * Overallocation allocates at least 100 characters: add min_length attribute to the _PyUnicodeWriter structure * Add new private functions: _PyUnicode_FastCopyCharacters(), _PyUnicode_FastFill() and _PyUnicode_FromASCII() The speed up is around 20% in average.
* | #14835: Make plistlib output empty arrays & dicts like OS XHynek Schlawack2012-05-292-0/+4
| | | | | | | | Patch by Sidney San Martín.
* | Issue #14930: Make memoryview objects weakrefable.Richard Oudkerk2012-05-281-0/+2
| |
* | Issue #14775: Fix a potential quadratic dict build-up due to the garbage ↵Antoine Pitrou2012-05-282-0/+4
|\ \ | |/ | | | | | | | | 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-282-0/+4
| | | | | | | | | | | | collector repeatedly trying to untrack dicts. Additional comments by Tim Silk.
* | Issue #9041: raised exception is misleadingMeador Inge2012-05-281-0/+4
|\ \ | |/ | | | | | | | | 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-281-0/+4
| | | | | | | | | | | | 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.
* | Merge from 3.2Nick Coghlan2012-05-281-0/+3
|\ \ | |/
| * Issue #14443: Tell rpmbuild to use the correct version of PythonNick Coghlan2012-05-281-0/+3
| |
* | Merge 3.2 #14929Terry Jan Reedy2012-05-281-0/+3
|\ \ | |/
| * Issue14929: Stop Idle 3.x from closing on Unicode decode errors when grepping.Terry Jan Reedy2012-05-281-0/+3
| | | | | | | | Patch by Roger Serwy.
* | #12515: email now registers a defect if the MIME end boundary is missing.R David Murray2012-05-281-0/+7
| | | | | | | | | | | | 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 3.2 closes #12510Terry Jan Reedy2012-05-281-0/+3
|\ \ | |/
| * Issue12510: Attempting to get invalid tooltip no longer closes Idle.Terry Jan Reedy2012-05-281-0/+3
| | | | | | | | Original patch by Roger Serwy.
* | #14925: email now registers a defect for missing header/body separator.R David Murray2012-05-281-0/+4
| | | | | | | | | | | | | | 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.
* | Close #14857: fix regression in references to PEP 3135 implicit __class__ ↵Nick Coghlan2012-05-271-0/+3
| | | | | | | | closure variable. Reopens issue #12370, but also updates unittest.mock to workaround that issue
* | Merge with 3.2Terry Jan Reedy2012-05-271-0/+3
|\ \ | |/ | | | | | | 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-271-0/+3
| | | | | | | | even when parent window is closed. Patch by Roger Serwy.
* | Merge Issue #14876: Use user-selected font for highlight configuration.Terry Jan Reedy2012-05-261-0/+2
|\ \ | |/ | | | | Patch by Roger Serwy.
| * Issue #14876: Use user-selected font for highlight configuration.Terry Jan Reedy2012-05-261-0/+2
| | | | | | | | Patch by Roger Serwy.
* | #8739: upgrade smtpd to RFC 5321 and 1870.R David Murray2012-05-262-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | #665194: Add a localtime function to email.utils.R David Murray2012-05-262-0/+4
| | | | | | | | | | | | | | | | Without this function people would be tempted to use the other date functions in email.utils to compute an aware localtime, and those functions are not as good for that purpose as this code. The code is Alexander Belopolsy's from his proposed patch for issue 9527, with a fix (and additional tests) by Brian K. Jones.
* | Merged upstream changes.Vinay Sajip2012-05-261-0/+13
|\ \
| * | Add news entries for #14731 and #12586.R David Murray2012-05-261-0/+8
| | |
| * | Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just ↵Senthil Kumaran2012-05-261-0/+3
| |\ \ |/ / / | | _ | | have ascii in help msg
| * Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just ↵Senthil Kumaran2012-05-261-0/+3
| | | | | | | | have ascii in help msg
* | Issue #14548: Make multiprocessing finalizers check pid before runningRichard Oudkerk2012-05-251-0/+3
| | | | | | | | This protects from possibilty of gc running just after fork.
* | issue 14660: Implement PEP 420, namespace packages.Eric V. Smith2012-05-251-0/+2
| |
* | #14863: Update the documentation of os.fdopen()Petri Lehtinen2012-05-241-0/+3
|\ \ | |/
| * #14863: Update the documentation of os.fdopen()Petri Lehtinen2012-05-241-0/+3
| | | | | | | | | | | | There's no bufsize argument anymore, and os.fdopen() is only a very thin wrapper around open() anymore. Change the documentation to reflect that.
* | Issue #14036: return None when port in urlparse cross 65535Senthil Kumaran2012-05-241-0/+3
|\ \ | |/
| * Issue #14036: return None when port in urlparse cross 65535Senthil Kumaran2012-05-241-0/+3
| |
| * Remove duplicate entries in Misc/NEWS.Florent Xicluna2012-05-231-20/+0
| |
| * #14472: Update .gitignorePetri Lehtinen2012-05-222-0/+3
| | | | | | | | Patch by Matej Cepl.
* | #14862: Add missing names to os.__all__Petri Lehtinen2012-05-231-0/+2
| |
* | #14472: Update .gitignorePetri Lehtinen2012-05-222-0/+3
| | | | | | | | Patch by Matej Cepl.
* | #14875: merge with 3.2.Ezio Melotti2012-05-211-0/+2
|\ \ | |/
| * #14875: Use float('inf') instead of float('1e66666') in the json module.Ezio Melotti2012-05-211-0/+2
| |
* | Close #13585: add contextlib.ExitStack to replace the ill-fated ↵Nick Coghlan2012-05-211-0/+2
| | | | | | | | contextlib.nested API
* | Issue #14814: addition of the ipaddress module (stage 1 - code and tests)Nick Coghlan2012-05-202-0/+3
| |
* | news for Issue14426Senthil Kumaran2012-05-201-0/+3
|\ \ | |/
| * news for Issue14426Senthil Kumaran2012-05-201-0/+3
| |
* | Close #14588: added a PEP 3115 compliant dynamic type creation mechanismNick Coghlan2012-05-191-0/+11
| |