| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix for issue #7724: ensure that distutils and python's own setup.py | Ronald Oussoren | 2010-06-03 | 2 | -22/+133 |
| | | | | | | | | | | | honor the MacOSX SDK when one is specified. This is needed to be able to build using the 10.4u SDK while running on OSX 10.6. This is a fixed version of the patch in r80963, I've tested this patch on OSX and Linux. | ||||
| * | #1368247: make set_charset/MIMEText automatically encode unicode _payload. | R. David Murray | 2010-06-02 | 5 | -6/+39 |
| | | | | | | | | | 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. | ||||
| * | Issue #8873: add a documentation note about possible performance issues with the | Antoine Pitrou | 2010-06-02 | 1 | -0/+6 |
| | | | | | default of unbuffered IO in subprocess.Popen. | ||||
| * | Logging: improved error reporting for BaseConfigurator.resolve(). | Vinay Sajip | 2010-06-02 | 1 | -9/+15 |
| | | |||||
| * | Fix for issue8868: without this patch 'MacOS.WMAvailable()' will return | Ronald Oussoren | 2010-06-02 | 2 | -0/+11 |
| | | | | | | False on MacOSX 10.5 or earlier and scripts won't be able to access GUI functionality. | ||||
| * | Fix issue8788 - description of doseq parameter in urllib.urlencode | Senthil Kumaran | 2010-06-02 | 1 | -11/+13 |
| | | |||||
| * | Fix #8618. Ask the Windows mixer API if there are any playback devices | Brian Curtin | 2010-06-01 | 1 | -0/+6 |
| | | | | | configured before attempting to test PlaySound. | ||||
| * | Fix Issue8797 - urllib2 basic authentication fix for wrong passwords. It ↵ | Senthil Kumaran | 2010-06-01 | 2 | -1/+9 |
| | | | | | fails after 5 retries. | ||||
| * | Put docs for RegexObject.search() before RegexObject.match() to mirror ↵ | Georg Brandl | 2010-06-01 | 1 | -23/+27 |
| | | | | | re.search() and re.match() order. | ||||
| * | #7583: clarify discussion of hard tab expansion in doctests. | R. David Murray | 2010-06-01 | 1 | -10/+17 |
| | | |||||
| * | Improve documentation for getaddrinfo() (part of #8857) | Antoine Pitrou | 2010-05-31 | 1 | -15/+33 |
| | | |||||
| * | Issue #8748: Fix incorrect results from comparisons between an integer | Mark Dickinson | 2010-05-30 | 3 | -10/+79 |
| | | | | | and a complex instance. Based on a patch by Meador Inge. | ||||
| * | Remove declaration for unused variable. | Mark Dickinson | 2010-05-30 | 1 | -1/+0 |
| | | |||||
| * | Issue #5211: Complete removal of implicit coercions for the complex | Mark Dickinson | 2010-05-30 | 3 | -19/+19 |
| | | | | | | type. Coercion for arithmetic operations was already removed in r78280, but that commit didn't remove coercion for rich comparisons. | ||||
| * | Untabify Modules/config.c.in. | Mark Dickinson | 2010-05-29 | 1 | -18/+17 |
| | | |||||
| * | Fix typo | Stefan Krah | 2010-05-29 | 1 | -1/+1 |
| | | |||||
| * | Issue #8840: Make documentation for truncate() clearer | Antoine Pitrou | 2010-05-29 | 1 | -4/+6 |
| | | |||||
| * | #8616: add new turtle demo "nim". | Georg Brandl | 2010-05-29 | 1 | -0/+227 |
| | | |||||
| * | Make the ctl-C shutdown of serve.py prettier. | R. David Murray | 2010-05-28 | 1 | -2/+5 |
| | | |||||
| * | Make reference to Generic Attribute Management a hyperlink. | R. David Murray | 2010-05-28 | 1 | -1/+3 |
| | | |||||
| * | Fix #8405 for slow buildbots. Remove the sleep on startup and move the | Brian Curtin | 2010-05-28 | 1 | -11/+16 |
| | | | | | pipe communication into a loop to retry in case a buildbot gets even slower. | ||||
| * | Issue #1759169: Drop _XOPEN_SOURCE on Solaris. | Martin v. Löwis | 2010-05-28 | 3 | -52/+21 |
| | | |||||
| * | 2to3 doesn't fix test_support #6583 | Benjamin Peterson | 2010-05-28 | 1 | -5/+1 |
| | | |||||
| * | remove non-ascii coding per PEP 8 | Benjamin Peterson | 2010-05-28 | 1 | -2/+1 |
| | | |||||
| * | Issue #8835: test_support.transient_internet() catchs gaierror(EAI_NONAME) and | Victor Stinner | 2010-05-27 | 2 | -1/+6 |
| | | | | | gaierror(EAI_NODATA) | ||||
| * | Add item | Andrew M. Kuchling | 2010-05-27 | 1 | -0/+6 |
| | | |||||
| * | Issue #7150: Raise OverflowError if the result of adding or subtracting | Alexander Belopolsky | 2010-05-27 | 3 | -22/+29 |
| | | | | | timedelta from date or datetime falls outside of the MINYEAR:MAXYEAR range. | ||||
| * | Remove top-level 'General Questions' section, pushing up the questions it ↵ | Andrew M. Kuchling | 2010-05-27 | 1 | -12/+9 |
| | | | | | contains | ||||
| * | Rewrite wxWidgets section | Andrew M. Kuchling | 2010-05-27 | 1 | -10/+15 |
| | | |||||
| * | Added Andrej Krpic. (Thanks for issue #7879 patch.) | Alexander Belopolsky | 2010-05-26 | 1 | -0/+1 |
| | | |||||
| * | Issue #7879: Skip negative timestamps test on any Windows platform | Alexander Belopolsky | 2010-05-26 | 1 | -7/+2 |
| | | | | | using unittest.skipIf decorator. | ||||
| * | Issue #7879: Do not test negative timestamps on any Windows platform | Alexander Belopolsky | 2010-05-26 | 1 | -3/+3 |
| | | | | | including Windows CE. | ||||
| * | Issue #8825: additional testcases for int(string, 0) and long(string, 0). | Mark Dickinson | 2010-05-26 | 2 | -0/+23 |
| | | |||||
| * | Issue #7449: Skip test_socketserver if threading support is disabled | Victor Stinner | 2010-05-26 | 2 | -0/+3 |
| | | |||||
| * | Issue #3798: Write sys.exit() message to sys.stderr to use stderr encoding and | Victor Stinner | 2010-05-25 | 3 | -1/+30 |
| | | | | | error handler, instead of writing to the C stderr file in utf-8 | ||||
| * | Add Alexander Belopolsky. | Martin v. Löwis | 2010-05-25 | 1 | -0/+3 |
| | | |||||
| * | Fix a NameError in test_enumerate. | Mark Dickinson | 2010-05-25 | 1 | -1/+1 |
| | | |||||
| * | Issue #8816: Extra tests for some built-in functions. These tests are | Mark Dickinson | 2010-05-25 | 3 | -14/+84 |
| | | | | | ports of IronPython tests. Thanks Gregory Nofi. | ||||
| * | Issue 8818: urlparse/urlsplit keyword is 'scheme', not 'default_scheme'. | R. David Murray | 2010-05-25 | 1 | -3/+3 |
| | | |||||
| * | Issue 8143: sync unquote in urlparse with urllib; add comment about doing so. | R. David Murray | 2010-05-25 | 2 | -10/+18 |
| | | | | | | | | unquote is duplicated in the two files to avoid a circular reference. (This is fixed in Python3.) Updates keep getting made to the public unquote without fixing the urlparse one, however, so this fix syncs the two and adds a comment to both to make sure changes are applied to both. | ||||
| * | Fix #2810 - handle the case where some registry calls return | Brian Curtin | 2010-05-25 | 3 | -33/+159 |
| | | | | | | | ERROR_MORE_DATA, requiring another call to get the remaining data. Patch by Daniel Stutzbach | ||||
| * | Add three items | Andrew M. Kuchling | 2010-05-25 | 1 | -3/+16 |
| | | |||||
| * | Make the contributor list alphabetical again. | Brett Cannon | 2010-05-25 | 1 | -1/+1 |
| | | |||||
| * | correct default docs | Benjamin Peterson | 2010-05-25 | 2 | -7/+7 |
| | | |||||
| * | set svn:eol-style | Benjamin Peterson | 2010-05-24 | 0 | -0/+0 |
| | | |||||
| * | #8616: update module name | Georg Brandl | 2010-05-24 | 1 | -1/+1 |
| | | |||||
| * | Add the author of the last fix (Issue #6662) | Victor Stinner | 2010-05-24 | 2 | -1/+3 |
| | | |||||
| * | Issue #6662: Fix parsing of malformatted charref (&#bad;) | Victor Stinner | 2010-05-24 | 3 | -0/+12 |
| | | |||||
| * | #8016: add the CP858 codec (approved by Benjamin). (Also add CP720 to the ↵ | Georg Brandl | 2010-05-24 | 6 | -4/+713 |
| | | | | | tests, it was missing there.) | ||||
| * | Fix default value for version help. Approved by Benjamin on python-dev: ↵ | Steven Bethard | 2010-05-24 | 2 | -1/+20 |
| | | | | | http://mail.python.org/pipermail/python-dev/2010-May/100231.html | ||||
