summaryrefslogtreecommitdiff
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #8909: now the doc details the size of the bitmap used in distutils' ↵Tarek Ziadé2010-06-061-0/+6
| | | | bdist_wininst
* careening towards 2.7rc2 we goBenjamin Peterson2010-06-061-0/+12
|
* bump version to 2.7 rc1Benjamin Peterson2010-06-062-2/+2
|
* Updated NEWS file.Michael Foord2010-06-051-0/+7
|
* Add a NEWS entry for r81758 and clarify a comment.Ezio Melotti2010-06-051-0/+8
|
* Issue #8899: time.struct_time now has class and atribute docstrings.Alexander Belopolsky2010-06-051-0/+2
|
* Issue #8627: Fix "XXX undetected error" from unchecked PyErr_WarnPy3k return.Mark Dickinson2010-06-051-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 Dickinson2010-06-051-0/+3
|
* #4487: have Charset check with codecs for possible aliases.R. David Murray2010-06-041-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.pyMartin v. Löwis2010-06-041-0/+2
| | | | Patch by Christop Gohlke and Amaury Forgeot d'Arc.
* Display installer warning that Windows 2000 won'tMartin v. Löwis2010-06-041-0/+3
| | | | be supported in future releases.
* Issue #5464: Implement plural forms in msgfmt.py.Martin v. Löwis2010-06-041-0/+6
|
* Issue #8864: Define _XOPEN_SOURCE on Solaris for theMartin v. Löwis2010-06-041-1/+2
| | | | multiprocessing module.
* #8889: rewrite transient_internet so we don't use EAI_NODATA on FreeBSD.R. David Murray2010-06-031-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 Murray2010-06-031-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 Krah2010-06-031-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 sizeLars Gustäbel2010-06-031-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 Murray2010-06-021-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 returnRonald Oussoren2010-06-021-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 integerMark Dickinson2010-05-301-0/+7
| | | | and a complex instance. Based on a patch by Meador Inge.
* Issue #5211: Complete removal of implicit coercions for the complexMark Dickinson2010-05-301-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öwis2010-05-281-0/+4
|
* Issue #8835: test_support.transient_internet() catchs gaierror(EAI_NONAME) andVictor Stinner2010-05-271-0/+3
| | | | gaierror(EAI_NODATA)
* Issue #7150: Raise OverflowError if the result of adding or subtractingAlexander Belopolsky2010-05-271-0/+3
| | | | timedelta from date or datetime falls outside of the MINYEAR:MAXYEAR range.
* Added Andrej Krpic. (Thanks for issue #7879 patch.)Alexander Belopolsky2010-05-261-0/+1
|
* Issue #7449: Skip test_socketserver if threading support is disabledVictor Stinner2010-05-261-0/+2
|
* Issue #3798: Write sys.exit() message to sys.stderr to use stderr encoding andVictor Stinner2010-05-251-0/+3
| | | | error handler, instead of writing to the C stderr file in utf-8
* Add Alexander Belopolsky.Martin v. Löwis2010-05-251-0/+3
|
* Fix #2810 - handle the case where some registry calls returnBrian Curtin2010-05-251-0/+3
| | | | | | ERROR_MORE_DATA, requiring another call to get the remaining data. Patch by Daniel Stutzbach
* Make the contributor list alphabetical again.Brett Cannon2010-05-251-1/+1
|
* Add the author of the last fix (Issue #6662)Victor Stinner2010-05-242-1/+3
|
* Issue #6662: Fix parsing of malformatted charref (&#bad;)Victor Stinner2010-05-241-0/+2
|
* #8016: add the CP858 codec (approved by Benjamin). (Also add CP720 to the ↵Georg Brandl2010-05-241-0/+2
| | | | tests, it was missing there.)
* NEWS rewrap and punctuation consistency.Georg Brandl2010-05-221-212/+206
|
* Issue #6268: More bugfixes about BOM, UTF-16 and UTF-32Victor Stinner2010-05-221-2/+3
| | | | | | | * Fix seek() method of codecs.open(), don't write the BOM twice after seek(0) * Fix reset() method of codecs, UTF-16, UTF-32 and StreamWriter classes * test_codecs: use "w+" mode instead of "wt+". "t" mode is not supported by Solaris or Windows, but does it really exist? I found it the in the issue.
* Issue #3924: Ignore cookies with invalid "version" field in cookielib.Georg Brandl2010-05-221-0/+2
|
* Issue #6268: Fix seek() method of codecs.open(), don't read the BOM twiceVictor Stinner2010-05-221-0/+3
| | | | after seek(0)
* Issue #5640: Fix Shift-JIS incremental encoder for error handlers differentVictor Stinner2010-05-211-0/+3
| | | | than strict
* typoGeorg Brandl2010-05-211-1/+1
|
* ensure the last line has a trailing newline #8782Benjamin Peterson2010-05-211-0/+3
|
* return NotImplemented from Mapping when comparing to a non-mapping #8729Benjamin Peterson2010-05-211-0/+3
|
* Issue #5753: A new C API function, :cfunc:`PySys_SetArgvEx`, allowsAntoine Pitrou2010-05-211-0/+8
| | | | | | embedders of the interpreter to set sys.argv without also modifying sys.path. This helps fix `CVE-2008-5983 <http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-5983>`_.
* Turned out that if you used explicit relative import syntaxBrett Cannon2010-05-201-0/+3
| | | | | | | | | (e.g. from .os import sep) and it failed, import would still try the implicit relative import semantics of an absolute import (from os import sep). That's not right, so when level is negative, only do explicit relative import semantics. Fixes issue #7902. Thanks to Meador Inge for the patch.
* #8759: Fixed user paths in sysconfig for posix and os2 schemesTarek Ziadé2010-05-191-0/+2
|
* Issue #7079: Fix a possible crash when closing a file object while usingAntoine Pitrou2010-05-171-0/+3
| | | | it from another thread. Patch by Daniel Stutzbach.
* Issue #1285086: Speed up urllib.quote and urllib.unquote for simple cases.Florent Xicluna2010-05-171-0/+2
|
* Fixed #8688: Distutils now recalculates MANIFEST everytime.Tarek Ziadé2010-05-171-0/+2
|
* NEWS: strip trailing spacesVictor Stinner2010-05-151-7/+7
|
* subprocess.Popen.__del__ referenced global objects, which is a no-no thanks toBrett Cannon2010-05-141-0/+4
| | | | | | | | | | | | | | | | interpreter shutdown semantics. Same issue goes for the methods that __del__ called. Now all the methods capture the global objects it needs as default values to private parameters (could have stuck them on the class object itself, but since the objects have nothing directly to do with the class that seemed wrong). There is no test as making one that works is hard. This patch was verified against a consistently failing test in Mercurial's test suite, though, so it has been tested in some regard. Closes issue #5099. Thanks to Mary Stern for the bug report and Gabriel Genellina for writing another patch for the same issue and attempting to write a test.
* test_site was failing under darwin for non-framework builds because a test wasBrett Cannon2010-05-131-0/+8
| | | | assuming framework-specific site-packages directories were being used.