Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #9507: Named tuple repr will now automatically display the right | Raymond Hettinger | 2010-08-08 | 1 | -0/+3 |
| | | | | name in a tuple subclass. | ||||
* | Issue #8433: Fix test_curses failure for platforms with recent versions of ↵ | Mark Dickinson | 2010-08-07 | 1 | -0/+2 |
| | | | | ncurses. | ||||
* | Add xml subpackages, since they are likely to have different maintainers. | R. David Murray | 2010-08-06 | 1 | -1/+8 |
| | | | | And if not they can be merged back together when that becomes apparent. | ||||
* | Fix #9324: Add parameter validation to signal.signal on Windows in order | Brian Curtin | 2010-08-06 | 1 | -0/+3 |
| | | | | to prevent crashes. | ||||
* | In PySlice_IndicesEx, clip the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX] ↵ | Mark Dickinson | 2010-08-06 | 1 | -0/+4 |
| | | | | rather than [PY_SSIZE_T_MIN, PY_SSIZE_T_MAX]. | ||||
* | Misc/NEWS entry for r83751. | Mark Dickinson | 2010-08-06 | 1 | -0/+4 |
| | |||||
* | Issue #9524: Document that two CTRL* signals are meant for use only | Brian Curtin | 2010-08-05 | 1 | -0/+3 |
| | | | | with os.kill. | ||||
* | Issue #6683: For SMTP logins we now try all authentication methods advertised | Gerhard Häring | 2010-08-05 | 1 | -0/+4 |
| | | | | | | | by the server. Many servers are buggy and advertise authentication methods they o not support in reality. This change makes smtplib.auth() work more often in the real world, where we face misconfigured servers and servers that advertise methods they don't support due to the madness that is SASL. | ||||
* | Issue #9337: Make float.__str__ identical to float.__repr__. | Mark Dickinson | 2010-08-04 | 1 | -0/+3 |
| | | | | (And similarly for complex numbers.) | ||||
* | Add Terry Reedy. | Martin v. Löwis | 2010-08-04 | 1 | -0/+3 |
| | |||||
* | Issue #8814: function annotations (the `__annotations__` attribute) | Antoine Pitrou | 2010-08-04 | 2 | -0/+5 |
| | | | | | are now included in the set of attributes copied by default by functools.wraps and functools.update_wrapper. Patch by Terrence Cole. | ||||
* | Issue #9496: Provide a test suite for the rlcompleter module. Patch by | Antoine Pitrou | 2010-08-04 | 2 | -0/+4 |
| | | | | Michele Orrù. | ||||
* | I'm interested in threading issues as well | Antoine Pitrou | 2010-08-04 | 1 | -2/+2 |
| | |||||
* | as per discussion with antoine revert changes made in 83708 as the user ↵ | Giampaolo Rodolà | 2010-08-04 | 2 | -3/+0 |
| | | | | useing ftplib's readline methods is supposed to always use a binary file | ||||
* | Something fun to maintain | Antoine Pitrou | 2010-08-04 | 1 | -1/+1 |
| | |||||
* | fix issue #6822: ftplib's storline method doesn't work with text files | Giampaolo Rodolà | 2010-08-04 | 2 | -0/+3 |
| | |||||
* | issue #8687: provides a test suite for sched.py module | Giampaolo Rodolà | 2010-08-04 | 1 | -0/+5 |
| | |||||
* | fix issue #2944: asyncore doesn't handle connection refused correctly (patch ↵ | Giampaolo Rodolà | 2010-08-04 | 2 | -0/+3 |
| | | | | by Alexander Shigin). Merged from 2.7 branch. | ||||
* | note smtpd module changes in NEWS | Richard Jones | 2010-08-04 | 1 | -0/+3 |
| | |||||
* | #3196: if needed pad a short base64 encoded word before trying to decode. | R. David Murray | 2010-08-03 | 2 | -0/+4 |
| | | | | | | | | | The RFCs encourage following Postel's law: be liberal in what you accept. So if someone forgot to pad the base64 encoded word payload to an even four bytes, we add the padding before handing it to base64mime.decode. Previously, missing padding resulted in a HeaderParseError. Patch by Jason Williams. | ||||
* | Misc/NEWS entry for r83677. | Mark Dickinson | 2010-08-03 | 1 | -0/+2 |
| | |||||
* | #9444: use first of prefix_chars for help opt instead of raising error | R. David Murray | 2010-08-03 | 2 | -0/+5 |
| | | | | | | | | | | | An argparse option parser created with a prefix_chars that did not include a '-' would happily add -h and --help options, and then throw an error when it tried to format the help because the - was an invalid prefix character. This patch makes it use the first character of prefix_chars as the character for the help options if and only if '-' is not one of the valid prefix_chars. Fix by Theodore Turocy, unit tests by Catherine Devlin. | ||||
* | Issue #8867: Fix `Tools/scripts/serve.py` to work with files containing | Antoine Pitrou | 2010-08-03 | 1 | -0/+6 |
| | | | | non-ASCII content. | ||||
* | Issue #8065: Fix another memory leak in readline module, from failure to free | Mark Dickinson | 2010-08-03 | 1 | -0/+3 |
| | | | | the result of a call to history_get_history_state. | ||||
* | Issue #9450: Fix memory leaks in readline.remove/replace_history_entry. | Mark Dickinson | 2010-08-03 | 1 | -0/+3 |
| | |||||
* | #7372: fix regression in pstats: a previous fix to handle cProfile data in ↵ | Georg Brandl | 2010-08-02 | 1 | -0/+3 |
| | | | | add_callers broke handling of profile data. | ||||
* | #9428: fix running scripts from profile/cProfile with their own name and the ↵ | Georg Brandl | 2010-08-02 | 1 | -0/+3 |
| | | | | right namespace. Same fix as for trace.py in #1690103. | ||||
* | #9209 and #7781: fix two crashes in pstats interactive browser. | Georg Brandl | 2010-08-02 | 1 | -0/+6 |
| | |||||
* | Fix ACKS alphabetization. | R. David Murray | 2010-08-01 | 1 | -1/+1 |
| | |||||
* | Fix style of referring to issues. | Georg Brandl | 2010-08-01 | 1 | -8/+8 |
| | |||||
* | Update OrderedDict implementation to match that in Py2.7. | Raymond Hettinger | 2010-08-01 | 1 | -0/+3 |
| | |||||
* | Issue #8397: Raise an error when attempting to mix iteration and regular | Antoine Pitrou | 2010-08-01 | 1 | -0/+3 |
| | | | | reads on a BZ2File object, rather than returning incorrect results. | ||||
* | #5776: fix mistakes in python specfile. (Nobody probably uses it anyway.) | Georg Brandl | 2010-08-01 | 1 | -2/+2 |
| | |||||
* | Issue #9448: Fix a leak of OS resources (mutexes or semaphores) when | Antoine Pitrou | 2010-08-01 | 1 | -0/+3 |
| | | | | re-initializing a buffered IO object by calling its `__init__` method. | ||||
* | #5551: symbolic links never can be mount points. Fixes the fix for #1713. | Georg Brandl | 2010-08-01 | 1 | -0/+3 |
| | |||||
* | Fix #8105. Add validation to mmap.mmap so invalid file descriptors | Brian Curtin | 2010-08-01 | 1 | -0/+2 |
| | | | | don't cause a crash on Windows. | ||||
* | #8046: add context manager protocol support to mmap objects. Also add ↵ | Georg Brandl | 2010-08-01 | 1 | -0/+6 |
| | | | | closed property. | ||||
* | Issue #9416: Fix some issues with complex formatting where the | Mark Dickinson | 2010-08-01 | 1 | -0/+6 |
| | | | | | | | output with no type specifier failed to match the str output: - format(complex(-0.0, 2.0), '-') omitted the real part from the output, - format(complex(0.0, 2.0), '-') included a sign and parentheses. | ||||
* | #8826: the "expires" attribute value is a date string with spaces, but ↵ | Georg Brandl | 2010-08-01 | 1 | -0/+2 |
| | | | | apparently not all user-agents put it in quotes. Handle that as a special case. | ||||
* | #1690103: fix initial namespace for code run with trace.main(). | Georg Brandl | 2010-08-01 | 1 | -0/+2 |
| | |||||
* | Add another news entry. | Georg Brandl | 2010-08-01 | 1 | -0/+2 |
| | |||||
* | #8230: make Lib/test/sortperf.py run on Python 3. | Georg Brandl | 2010-08-01 | 1 | -0/+2 |
| | |||||
* | #8620: Cmd no longer truncates last character if stdin ends without newline | R. David Murray | 2010-08-01 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | | Cmd used to blindly chop off the last character of every input line. If the input reached EOF and there was no final new line, it would truncate the last character of the last command. This fix instead strips trailing \r\n from the input lines. While this is a small behavior change, it should not break any working code, since feeding a '\r\n' terminated file to Cmd would previously leave the \r's on the lines, resulting in failed command execution. I wrote the unit test in preparation for a PyOhio TeachMe session run by Catherine Devlin, and we can thank Catherine and the PyOhio session attendees for the fix. I've added Catherine to the Acks file for organizing and leading the TeachMe session, out of which we will hopefully get some new contributors. | ||||
* | #5146: handle UID THREAD command correctly. | Georg Brandl | 2010-07-31 | 1 | -0/+2 |
| | |||||
* | #5147: revert accidental indentation of header constant for MozillaCookieJar. | Georg Brandl | 2010-07-31 | 1 | -0/+3 |
| | |||||
* | #8198: the Helper class should not save the stdin and stdout objects | Georg Brandl | 2010-07-31 | 1 | -0/+3 |
| | | | | | at import time, rather by default use the current streams like the other APIs that output help. | ||||
* | Fix "Berkeley" name. | Georg Brandl | 2010-07-31 | 1 | -2/+2 |
| | |||||
* | #7909: the prefixes \\.\ and \\?\ indicate special Windows paths, do not try ↵ | Georg Brandl | 2010-07-31 | 1 | -0/+3 |
| | | | | to manipulate them. See http://msdn.microsoft.com/en-us/library/aa365247%28VS.85%29.aspx for details. | ||||
* | #1286: allow using fileinput.FileInput as context manager. | Georg Brandl | 2010-07-31 | 1 | -0/+2 |
| | |||||
* | Move news item to the correct position. | Georg Brandl | 2010-07-31 | 1 | -2/+2 |
| |