Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | move sectionsv2.7 | Benjamin Peterson | 2010-07-03 | 1 | -2/+5 |
| | |||||
* | add another line between sections | Benjamin Peterson | 2010-07-03 | 1 | -0/+1 |
| | |||||
* | update to 2.7 final | Benjamin Peterson | 2010-07-03 | 2 | -2/+2 |
| | |||||
* | add period; rewrap | Benjamin Peterson | 2010-07-03 | 1 | -2/+2 |
| | |||||
* | Issue #7673: Fix security vulnerability (CVE-2010-2089) in the audioop module, | Victor Stinner | 2010-07-03 | 1 | -1/+4 |
| | | | | ensure that the input string length is a multiple of the frame size | ||||
* | fix issue #6589: cleanup asyncore.socket_map if smtpd.SMTPServer constructor ↵ | Giampaolo Rodolà | 2010-06-30 | 1 | -0/+3 |
| | | | | raises an exception | ||||
* | Issue #9125: Update parser module for "except ... as ..." syntax. | Mark Dickinson | 2010-06-30 | 1 | -0/+1 |
| | |||||
* | Issue #9075: In the ssl module, remove the setting of a `debug` flag | Antoine Pitrou | 2010-06-25 | 1 | -0/+3 |
| | | | | on an OpenSSL structure. | ||||
* | prevent assignment to set literals | Benjamin Peterson | 2010-06-24 | 1 | -0/+2 |
| | |||||
* | remove INT_MAX assertions; they can fail with large Py_ssize_t #9058 | Benjamin Peterson | 2010-06-22 | 1 | -0/+2 |
| | |||||
* | keep UserDict an old-style class | Benjamin Peterson | 2010-06-22 | 1 | -2/+0 |
| | | | | Be generous in abc.py to allow this. | ||||
* | towards final release | Benjamin Peterson | 2010-06-21 | 1 | -0/+12 |
| | |||||
* | bump verson to 2.7rc2v2.7rc2 | Benjamin Peterson | 2010-06-21 | 2 | -2/+2 |
| | |||||
* | fix finding visual studio 2008 on 64 bit #8854 | Benjamin Peterson | 2010-06-21 | 1 | -0/+5 |
| | |||||
* | Fix #8959 by reverting revision 80761. | Thomas Heller | 2010-06-21 | 1 | -0/+4 |
| | |||||
* | #8720: fix inspect regression by teaching getsourcefile about linecache. | R. David Murray | 2010-06-17 | 1 | -0/+3 |
| | | | | | | | | | The fix for issue 4050 caused a regression: before that fix, source lines in the linecache would eventually be found by inspect. After the fix inspect reports an error earlier, and the source isn't found. The fix for the fix is to have getsourcefile look in the linecache for the file and return the psuedo-filename if the source is there, just as it already returns it if there is a PEP 302 loader. | ||||
* | Ezio Melotti was missing from Misc/ACKS. | Mark Dickinson | 2010-06-13 | 1 | -0/+1 |
| | |||||
* | Add Éric Araujo to Misc/ACKS for doc work and many patch and commit reviews. | Mark Dickinson | 2010-06-13 | 1 | -0/+1 |
| | |||||
* | Issue #8986: erfc was raising OverflowError on Linux for arguments in | Mark Dickinson | 2010-06-13 | 2 | -0/+5 |
| | | | | | the (approximate) range (-27.3, 30.0), as a result of an escaped errno value. | ||||
* | Revert r80580 due to some unintended side effects. See issue #8202 for details. | Nick Coghlan | 2010-06-13 | 1 | -0/+4 |
| | |||||
* | Issue #8924: logging: Improved error handling for Unicode in exception text. | Vinay Sajip | 2010-06-11 | 1 | -0/+1 |
| | |||||
* | Issue #8941: decoding big endian UTF-32 data in UCS-2 builds could crash | Antoine Pitrou | 2010-06-11 | 1 | -0/+4 |
| | | | | | the interpreter with characters outside the Basic Multilingual Plane (higher than 0x10000). | ||||
* | Issue #8362: Add Misc/maintainers.rst: list of module maintainers | Victor Stinner | 2010-06-11 | 2 | -2/+307 |
| | |||||
* | NEWS update for issue 8948. | Michael Foord | 2010-06-10 | 1 | -2/+5 |
| | |||||
* | kill extra word | Benjamin Peterson | 2010-06-08 | 1 | -2/+2 |
| | |||||
* | correctly overflow when indexes are too large | Benjamin Peterson | 2010-06-07 | 1 | -0/+3 |
| | |||||
* | Fixed #8909: now the doc details the size of the bitmap used in distutils' ↵ | Tarek Ziadé | 2010-06-06 | 1 | -0/+6 |
| | | | | bdist_wininst | ||||
* | careening towards 2.7rc2 we go | Benjamin Peterson | 2010-06-06 | 1 | -0/+12 |
| | |||||
* | bump version to 2.7 rc1 | Benjamin Peterson | 2010-06-06 | 2 | -2/+2 |
| | |||||
* | Updated NEWS file. | Michael Foord | 2010-06-05 | 1 | -0/+7 |
| | |||||
* | Add a NEWS entry for r81758 and clarify a comment. | Ezio Melotti | 2010-06-05 | 1 | -0/+8 |
| | |||||
* | Issue #8899: time.struct_time now has class and atribute docstrings. | Alexander Belopolsky | 2010-06-05 | 1 | -0/+2 |
| | |||||
* | Issue #8627: Fix "XXX undetected error" from unchecked PyErr_WarnPy3k return. | Mark Dickinson | 2010-06-05 | 1 | -1/+4 |
| | | | | | This is just a quick fix: if the warning is turned into an exception, the exception simply gets ignored. | ||||
* | Issue #8627: remove out-of-date warning about overriding __cmp__ | Mark Dickinson | 2010-06-05 | 1 | -0/+3 |
| | |||||
* | #4487: have Charset check with codecs for possible aliases. | R. David Murray | 2010-06-04 | 1 | -0/+3 |
| | | | | | | | | | Previously, unexpected results occurred when email was passed, for example, 'utf8' as a charset name, since email would accept it but would *not* use the 'utf-8' codec for it, even though Python itself recognises that as an alias for utf-8. Now Charset checks with codecs for aliases as well as its own internal table. Issue 8898 has been opened to change this further in py3k so that all aliasing is routed through the codecs module. | ||||
* | Issue #6470: Drop UNC prefix in FixTk.py | Martin v. Löwis | 2010-06-04 | 1 | -0/+2 |
| | | | | Patch by Christop Gohlke and Amaury Forgeot d'Arc. | ||||
* | Display installer warning that Windows 2000 won't | Martin v. Löwis | 2010-06-04 | 1 | -0/+3 |
| | | | | be supported in future releases. | ||||
* | Issue #5464: Implement plural forms in msgfmt.py. | Martin v. Löwis | 2010-06-04 | 1 | -0/+6 |
| | |||||
* | Issue #8864: Define _XOPEN_SOURCE on Solaris for the | Martin v. Löwis | 2010-06-04 | 1 | -1/+2 |
| | | | | multiprocessing module. | ||||
* | #8889: rewrite transient_internet so we don't use EAI_NODATA on FreeBSD. | R. David Murray | 2010-06-03 | 1 | -1/+4 |
| | | | | | | | FreeBSD doesn't have socket.EAI_NODATA. I rewrote the routine because there's no easy way to conditionally include a context manager in a with statement. As a side benefit, instead of a stack of context managers there's now only one. | ||||
* | #5610: use \Z not $ so we don't eat extra chars when body part ends with \r\n. | R. David Murray | 2010-06-03 | 1 | -0/+3 |
| | | | | | | | | | | If a body part ended with \r\n, feedparser, using '$' to terminate its search for the newline, would match on the \r\n, and think that it needed to strip two characters in order to account for the line end before the boundary. That made it chop one too many characters off the end of the body part. Using \Z makes the match correct. Patch and test by Tony Nelson. | ||||
* | Issue #7384: If the system readline library is linked against ncurses, | Stefan Krah | 2010-06-03 | 1 | -0/+4 |
| | | | | | | | | the curses module must be linked against ncurses as well. Otherwise it is not safe to load both the readline and curses modules in an application. Thanks Thomas Dickey for answering questions about ncurses/ncursesw and readline! | ||||
* | Issue #8833: tarfile created hard link entries with a size | Lars Gustäbel | 2010-06-03 | 1 | -0/+3 |
| | | | | | field != 0 by mistake. The associated testcase did not expose this bug because it was broken too. | ||||
* | #1368247: make set_charset/MIMEText automatically encode unicode _payload. | R. David Murray | 2010-06-02 | 1 | -0/+3 |
| | | | | | | | | Fixes (mysterious, to the end user) UnicodeErrors when using utf-8 as the charset and unicode as the _text argument. Also makes the way in which unicode gets encoded to quoted printable for other charsets more sane (it only worked by accident previously). The _payload now is encoded to the charset.output_charset if it is unicode. | ||||
* | Fix for issue8868: without this patch 'MacOS.WMAvailable()' will return | Ronald Oussoren | 2010-06-02 | 1 | -0/+3 |
| | | | | | False on MacOSX 10.5 or earlier and scripts won't be able to access GUI functionality. | ||||
* | Issue #8748: Fix incorrect results from comparisons between an integer | Mark Dickinson | 2010-05-30 | 1 | -0/+7 |
| | | | | and a complex instance. Based on a patch by Meador Inge. | ||||
* | Issue #5211: Complete removal of implicit coercions for the complex | Mark Dickinson | 2010-05-30 | 1 | -0/+4 |
| | | | | | type. Coercion for arithmetic operations was already removed in r78280, but that commit didn't remove coercion for rich comparisons. | ||||
* | Issue #1759169: Drop _XOPEN_SOURCE on Solaris. | Martin v. Löwis | 2010-05-28 | 1 | -0/+4 |
| | |||||
* | Issue #8835: test_support.transient_internet() catchs gaierror(EAI_NONAME) and | Victor Stinner | 2010-05-27 | 1 | -0/+3 |
| | | | | gaierror(EAI_NODATA) | ||||
* | Issue #7150: Raise OverflowError if the result of adding or subtracting | Alexander Belopolsky | 2010-05-27 | 1 | -0/+3 |
| | | | | timedelta from date or datetime falls outside of the MINYEAR:MAXYEAR range. |