Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #14937: Fix typo. Patch by Roger Serwy. | Martin v. Löwis | 2012-06-14 | 1 | -1/+1 |
| | |||||
* | Issue #15060: better fix, thanks to review on #python-dev | Sandro Tosi | 2012-06-13 | 1 | -1/+1 |
| | |||||
* | Issue #15060: fix typo in socket doc; Patch by anatoly techtonik | Sandro Tosi | 2012-06-13 | 1 | -1/+1 |
| | |||||
* | Issue #10133: Make multiprocessing deallocate buffer if socket read fails. | Richard Oudkerk | 2012-06-11 | 2 | -13/+19 |
| | | | | Patch by Hallvard B Furuseth. | ||||
* | Issue #12510: Revise and triple # of calltip tests, with an eye to unittest | Terry Jan Reedy | 2012-06-07 | 3 | -76/+138 |
| | | | | | | use. Make the get_entity 'method' a module function as it did not use 'self'. Delete buggy _find_constructor function that is not needed, at least in 3.x. Revise get_argspec so all tests pass. Add and fix NEWS entries. | ||||
* | Issue #13854: Properly handle non-integer, non-string arg to SystemExit | Richard Oudkerk | 2012-06-06 | 3 | -3/+36 |
| | | | | | Previously multiprocessing only expected int or str. It also wrongly used an exit code of 1 when the argument was a string instead of zero. | ||||
* | Issue #12157: pool.map() does not handle empty iterable correctly | Richard Oudkerk | 2012-06-06 | 3 | -3/+19 |
| | | | | Initial patch by mouad | ||||
* | Nudge readers towards a more accurate mental model for loop else clauses | Nick Coghlan | 2012-06-07 | 1 | -0/+7 |
| | |||||
* | Fixes issue #15000: support the odd x32 abi on posixsubprocess's system call. | Gregory P. Smith | 2012-06-05 | 2 | -0/+9 |
| | |||||
* | Revert the modification of e.strerror in 3.2 as that kind of change could | Gregory P. Smith | 2012-06-03 | 1 | -3/+0 |
| | | | | break someone's over specified test that depends on the exact error message. | ||||
* | Move the 14992 note to the correct section. | Gregory P. Smith | 2012-06-03 | 1 | -5/+5 |
| | |||||
* | Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError | Gregory P. Smith | 2012-06-03 | 3 | -8/+53 |
| | | | | | | when the path existed and had the S_ISGID mode bit set when it was not explicitly asked for. This is no longer an exception as mkdir cannot control if the OS sets that bit for it or not. | ||||
* | PEP 3131: support non-ASCII characters in auto-completion of identifiers. | Martin v. Löwis | 2012-06-03 | 2 | -2/+2 |
| | |||||
* | Do not try to insert control characters. | Martin v. Löwis | 2012-06-03 | 1 | -1/+1 |
| | |||||
* | Issue #14937: Perform auto-completion of filenames in strings even for ↵ | Martin v. Löwis | 2012-06-03 | 3 | -2/+24 |
| | | | | non-ASCII filenames. | ||||
* | Issue 12510: Expand 2 bare excepts. Improve comments. Change deceptive name | Terry Jan Reedy | 2012-06-03 | 1 | -15/+17 |
| | | | | | | 'name' to 'expression' as the latter is what the string actually represents. The bug in this issue was only catching NameError and AttributeError when evaluating an expression that was not necessarily a name. | ||||
* | Issue 10365: Add and replace comments; condense defaulted attribute access. | Terry Jan Reedy | 2012-06-03 | 1 | -16/+13 |
| | | | | Code patch by Roger Serwy. | ||||
* | backport c4bd68be5fc6 to 3.2 | Sandro Tosi | 2012-06-02 | 1 | -1/+1 |
| | |||||
* | Issue #14926: fix docstring highlight | Sandro Tosi | 2012-06-02 | 1 | -1/+1 |
| | |||||
* | refer to time.strftime | Sandro Tosi | 2012-06-02 | 1 | -8/+8 |
| | |||||
* | #14957: fix doc typo. | R David Murray | 2012-06-02 | 1 | -1/+1 |
| | |||||
* | don't leak if the __class__ closure is set | Benjamin Peterson | 2012-06-02 | 1 | -4/+2 |
| | |||||
* | #14957: clarify splitlines docs. | R David Murray | 2012-06-01 | 1 | -1/+7 |
| | | | | Initial patch by Michael Driscoll, I added the example. | ||||
* | Issue #14968: set 'Inplace Operators' as subsection; patch by Lars Buitinck | Sandro Tosi | 2012-06-01 | 1 | -1/+1 |
| | |||||
* | Issue #14962: Update text coloring in IDLE shell window after changing | Ned Deily | 2012-05-31 | 2 | -0/+8 |
| | | | | options. Patch by Roger Serwy. | ||||
* | Added test skip under Windows, as not applicable there. | Vinay Sajip | 2012-05-31 | 1 | -0/+1 |
| | |||||
* | Add news item for #14943 | Brian Curtin | 2012-05-29 | 1 | -0/+3 |
| | |||||
* | Fix #14943. Update the proper default value and list the proper argument ↵ | Brian Curtin | 2012-05-29 | 1 | -3/+3 |
| | | | | names in the explanation. | ||||
* | Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu. | Ned Deily | 2012-05-29 | 2 | -1/+3 |
| | |||||
* | Issue #14775: Fix a potential quadratic dict build-up due to the garbage ↵ | Antoine Pitrou | 2012-05-28 | 3 | -3/+61 |
| | | | | | | collector repeatedly trying to untrack dicts. Additional comments by Tim Silk. | ||||
* | Issue #9041: raised exception is misleading | Meador Inge | 2012-05-28 | 3 | -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 #14443: Tell rpmbuild to use the correct version of Python | Nick Coghlan | 2012-05-28 | 2 | -1/+5 |
| | |||||
* | Issue14929: Stop Idle 3.x from closing on Unicode decode errors when grepping. | Terry Jan Reedy | 2012-05-28 | 2 | -1/+4 |
| | | | | Patch by Roger Serwy. | ||||
* | Issue12510: Attempting to get invalid tooltip no longer closes Idle. | Terry Jan Reedy | 2012-05-28 | 2 | -3/+9 |
| | | | | Original patch by Roger Serwy. | ||||
* | #11785: fix the :mod: references in email package submodule titles. | R David Murray | 2012-05-27 | 10 | -20/+20 |
| | |||||
* | #10365 Trim trailing whitespace | Terry Jan Reedy | 2012-05-27 | 1 | -1/+1 |
| | |||||
* | Issue #10365: File open dialog now works instead of crashing | Terry Jan Reedy | 2012-05-27 | 3 | -6/+17 |
| | | | | even when parent window is closed. Patch by Roger Serwy. | ||||
* | Issue #14876: Use user-selected font for highlight configuration. | Terry Jan Reedy | 2012-05-26 | 2 | -2/+6 |
| | | | | Patch by Roger Serwy. | ||||
* | Issue #14920: Fix the help(urllib.parse) failure on locale C terminals. Just ↵ | Senthil Kumaran | 2012-05-26 | 2 | -1/+4 |
| | | | | have ascii in help msg | ||||
* | Issue #14881: Allow normal non-main thread to spawn a dummy process | Richard Oudkerk | 2012-05-25 | 1 | -1/+2 |
| | | | | Fix suggested by Itay Brandes | ||||
* | #4841: Fix FileIO constructor to honor closefd when called repeatedly | Hynek Schlawack | 2012-05-25 | 2 | -3/+20 |
| | | | | Patch by Victor Stinner. | ||||
* | #14863: Update the documentation of os.fdopen() | Petri Lehtinen | 2012-05-24 | 2 | -15/+8 |
| | | | | | | 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 65535 | Senthil Kumaran | 2012-05-24 | 3 | -0/+11 |
| | |||||
* | Remove duplicate entries in Misc/NEWS. | Florent Xicluna | 2012-05-23 | 1 | -20/+0 |
| | |||||
* | #14472: Update .gitignore | Petri Lehtinen | 2012-05-22 | 3 | -0/+22 |
| | | | | Patch by Matej Cepl. | ||||
* | Restore [] where default arguments are not keywords | Hynek Schlawack | 2012-05-22 | 4 | -4/+4 |
| | | | | Reverts some changes of d13fdd97cc8e. | ||||
* | #14875: Use float('inf') instead of float('1e66666') in the json module. | Ezio Melotti | 2012-05-21 | 2 | -2/+3 |
| | |||||
* | #14804: Remove [] around optional arguments with default values | Hynek Schlawack | 2012-05-21 | 8 | -11/+11 |
| | |||||
* | Fix `versionchanged` tags for json.load | Hynek Schlawack | 2012-05-20 | 1 | -1/+1 |
| | | | | `versionchanged` tags about 2.7 are useless in 3.x branches. | ||||
* | Fixes #14864: Added documentation on how to undo the effects of a ↵ | Vinay Sajip | 2012-05-20 | 1 | -1/+2 |
| | | | | logging.disable() call. |