summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 81687 via svnmerge fromSenthil Kumaran2010-06-041-0/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81687 | senthil.kumaran | 2010-06-04 22:02:14 +0530 (Fri, 04 Jun 2010) | 3 lines Fix issue6312 - close the resp object for HEAD response. ........
* #4768: store base64 encoded email body parts as text, not binary.R. David Murray2010-06-044-4/+10
| | | | Patch and tests by Forest Bond.
* Issue8810: Clearing up docstring for tzinfo.utcoffset.Sean Reifscheider2010-06-041-2/+2
|
* Merged revisions 81662 via svnmerge fromRonald Oussoren2010-06-032-21/+128
| | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81662 | ronald.oussoren | 2010-06-03 11:47:21 +0200 (Thu, 03 Jun 2010) | 9 lines Fix for issue #7724: ensure that distutils and python's own setup.py 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. ........
* Merged revisions 81667 via svnmerge fromLars Gustäbel2010-06-033-26/+90
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81667 | lars.gustaebel | 2010-06-03 14:34:14 +0200 (Thu, 03 Jun 2010) | 8 lines Issue #8741: Fixed the TarFile.makelink() method that is responsible for extracting symbolic and hard link entries as regular files as a work-around on platforms that do not support filesystem links. This stopped working reliably after a change in r74571. I also added a few tests for this functionality. ........
* Merged revisions 81663 via svnmerge fromLars Gustäbel2010-06-033-2/+9
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81663 | lars.gustaebel | 2010-06-03 11:56:22 +0200 (Thu, 03 Jun 2010) | 4 lines Issue #8833: tarfile created hard link entries with a size field != 0 by mistake. The associated testcase did not expose this bug because it was broken too. ........
* Fix Charset.body_encode to encode to output_charset before calling base64mime.R. David Murray2010-06-033-1/+34
| | | | | | | | | | | | | | | | | | | | | | | | | This means that what gets encoded in base64 is the encoded version of the unicode payload. This bug was revealed by a forward port of the tests from Issue 1368247, but the fix was completely different. Note that the merge is only of the tests, the doc changes were inappropriate since email5 expects unicode, not bytes. I'm also not convinced that quopri works correctly in email5, but that's a different issue. Merged revisions 81658 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r81658 | r.david.murray | 2010-06-02 18:03:15 -0400 (Wed, 02 Jun 2010) | 9 lines #1368247: make set_charset/MIMEText automatically encode unicode _payload. 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. ........
* remove description of LOAD_LOCALS #8874Benjamin Peterson2010-06-021-7/+0
|
* Merged revisions 81652 via svnmerge fromAntoine Pitrou2010-06-021-0/+6
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81652 | antoine.pitrou | 2010-06-02 19:08:47 +0200 (mer., 02 juin 2010) | 4 lines Issue #8873: add a documentation note about possible performance issues with the default of unbuffered IO in subprocess.Popen. ........
* Merged revisions 81649 via svnmerge fromRonald Oussoren2010-06-021-0/+8
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81649 | ronald.oussoren | 2010-06-02 05:47:14 +0200 (Wed, 02 Jun 2010) | 5 lines Fix for issue8868: without this patch 'MacOS.WMAvailable()' will return False on MacOSX 10.5 or earlier and scripts won't be able to access GUI functionality. ........
* Merged revisions 81645 via svnmerge fromSenthil Kumaran2010-06-021-13/+15
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81645 | senthil.kumaran | 2010-06-02 07:49:15 +0530 (Wed, 02 Jun 2010) | 3 lines Fix issue8788 - description of doseq parameter in urllib.urlencode ........
* Merged revisions 81640 via svnmerge fromBrian Curtin2010-06-011-0/+6
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81640 | brian.curtin | 2010-06-01 08:29:13 -0500 (Tue, 01 Jun 2010) | 3 lines Fix #8618. Ask the Windows mixer API if there are any playback devices configured before attempting to test PlaySound. ........
* Merged revisions 81636 via svnmerge fromSenthil Kumaran2010-06-012-1/+9
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81636 | senthil.kumaran | 2010-06-01 18:10:07 +0530 (Tue, 01 Jun 2010) | 3 lines Fix Issue8797 - urllib2 basic authentication fix for wrong passwords. It fails after 5 retries. ........
* #8845: expose sqlite3 inTransaction as RO in_transaction Connection attribute.R. David Murray2010-06-016-1/+50
| | | | Patch by R. David Murray, unit tests by Shashwat Anand.
* Merged revisions 81586 via svnmerge fromR. David Murray2010-06-011-1/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81586 | r.david.murray | 2010-05-28 14:08:11 -0400 (Fri, 28 May 2010) | 2 lines Make reference to Generic Attribute Management a hyperlink. ........
* Merged revisions 81587 via svnmerge fromR. David Murray2010-05-311-2/+5
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81587 | r.david.murray | 2010-05-28 14:17:20 -0400 (Fri, 28 May 2010) | 2 lines Make the ctl-C shutdown of serve.py prettier. ........
* Issue #1289118: datetime.timedelta objects can now be multiplied by floatAlexander Belopolsky2010-05-314-13/+191
| | | | and divided by float and int objects.
* Merged revisions 81621 via svnmerge fromAntoine Pitrou2010-05-311-16/+33
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81621 | antoine.pitrou | 2010-05-31 19:01:01 +0200 (lun., 31 mai 2010) | 4 lines Improve documentation for getaddrinfo() (part of #8857) ........
* Remove conditional import of 'ic', that moduleRonald Oussoren2010-05-301-12/+0
| | | | | was removed in the transition from python 2.x to python 3.x.
* use atomic structures in non-thread versionBenjamin Peterson2010-05-301-1/+1
|
* Recorded merge of revisions 81610 via svnmerge fromMark Dickinson2010-05-300-0/+0
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81610 | mark.dickinson | 2010-05-30 14:18:10 +0100 (Sun, 30 May 2010) | 3 lines Issue #8748: Fix incorrect results from comparisons between an integer and a complex instance. Based on a patch by Meador Inge. ........
* Blocked revisions 81608 via svnmergeMark Dickinson2010-05-300-0/+0
| | | | | | | | ........ r81608 | mark.dickinson | 2010-05-30 13:17:11 +0100 (Sun, 30 May 2010) | 1 line Remove declaration for unused variable. ........
* Blocked revisions 81606 via svnmergeMark Dickinson2010-05-300-0/+0
| | | | | | | | | | ........ r81606 | mark.dickinson | 2010-05-30 13:12:25 +0100 (Sun, 30 May 2010) | 4 lines Issue #5211: Complete removal of implicit coercions for the complex type. Coercion for arithmetic operations was already removed in r78280, but that commit didn't remove coercion for rich comparisons. ........
* Merged revisions 81602 via svnmerge fromMark Dickinson2010-05-291-16/+16
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81602 | mark.dickinson | 2010-05-29 22:00:52 +0100 (Sat, 29 May 2010) | 1 line Untabify Modules/config.c.in. ........
* Merged revisions 81598 via svnmerge fromStefan Krah2010-05-291-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81598 | stefan.krah | 2010-05-29 14:54:35 +0200 (Sat, 29 May 2010) | 1 line Fix typo ........
* Merged revisions 81594 via svnmerge fromAntoine Pitrou2010-05-291-4/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81594 | antoine.pitrou | 2010-05-29 14:06:13 +0200 (sam., 29 mai 2010) | 3 lines Issue #8840: Make documentation for truncate() clearer ........
* Remove dead codeVictor Stinner2010-05-291-12/+1
|
* Issue #8837: Remove "O?" format of PyArg_Parse*() functions. The format is noVictor Stinner2010-05-282-11/+3
| | | | used anymore and it was never documented.
* Merged revisions 81584 via svnmerge fromBrian Curtin2010-05-281-6/+50
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81584 | brian.curtin | 2010-05-28 10:49:21 -0500 (Fri, 28 May 2010) | 3 lines Fix #8405 for slow buildbots. Remove the sleep on startup and move the pipe communication into a loop to retry in case a buildbot gets even slower. ........
* Merged revisions 81582 via svnmerge fromMartin v. Löwis2010-05-283-56/+23
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81582 | martin.v.loewis | 2010-05-28 17:28:47 +0200 (Fr, 28 Mai 2010) | 2 lines Issue #1759169: Drop _XOPEN_SOURCE on Solaris. ........
* Blocked revisions 81578-81579 via svnmergeBenjamin Peterson2010-05-280-0/+0
| | | | | | | | | | | | ........ r81578 | benjamin.peterson | 2010-05-27 21:12:36 -0500 (Thu, 27 May 2010) | 1 line remove non-ascii coding per PEP 8 ........ r81579 | benjamin.peterson | 2010-05-27 22:10:31 -0500 (Thu, 27 May 2010) | 1 line 2to3 doesn't fix test_support #6583 ........
* Merged revisions 81318 via svnmerge fromEzio Melotti2010-05-271-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81318 | ezio.melotti | 2010-05-19 03:32:52 +0300 (Wed, 19 May 2010) | 1 line Fix typo in argparse doc. ........
* correct default value in signatureBenjamin Peterson2010-05-271-1/+1
|
* Merged revisions 81566 via svnmerge fromAlexander Belopolsky2010-05-273-22/+29
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81566 | alexander.belopolsky | 2010-05-27 16:55:27 -0400 (Thu, 27 May 2010) | 3 lines Issue #7150: Raise OverflowError if the result of adding or subtracting timedelta from date or datetime falls outside of the MINYEAR:MAXYEAR range. ........
* Stefan Krah was missing from Misc/ACKS in the py3k branch.Mark Dickinson2010-05-271-0/+1
|
* Merged revisions 81512 via svnmerge fromMark Dickinson2010-05-271-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81512 | brett.cannon | 2010-05-25 03:53:04 +0100 (Tue, 25 May 2010) | 1 line Make the contributor list alphabetical again. ........
* Merged revisions 81559 via svnmerge fromAlexander Belopolsky2010-05-261-7/+2
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81559 | alexander.belopolsky | 2010-05-26 16:45:37 -0400 (Wed, 26 May 2010) | 3 lines Issue #7879: Skip negative timestamps test on any Windows platform using unittest.skipIf decorator. ........
* Issue #2844: Make int('42', n) consistently raise ValueError forMark Dickinson2010-05-263-9/+33
| | | | invalid integers n (including n = -909).
* Merged revisions 81555 via svnmerge fromAlexander Belopolsky2010-05-261-3/+3
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81555 | alexander.belopolsky | 2010-05-26 15:43:16 -0400 (Wed, 26 May 2010) | 3 lines Issue #7879: Do not test negative timestamps on any Windows platform including Windows CE. ........
* Merged revisions 81551 via svnmerge fromMark Dickinson2010-05-261-0/+15
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81551 | mark.dickinson | 2010-05-26 20:06:33 +0100 (Wed, 26 May 2010) | 1 line Issue #8825: additional testcases for int(string, 0) and long(string, 0). ........
* fix wrong assertIs contextGiampaolo Rodolà2010-05-261-1/+1
|
* Fix issue #8806: add SSL contexts support to ftplibGiampaolo Rodolà2010-05-264-6/+49
|
* Fix #2810 - handle the case where some registry calls returnBrian Curtin2010-05-263-28/+147
| | | | | | ERROR_MORE_DATA, requiring another call to get the remaining data. Patch by Daniel Stutzbach
* Merged revisions 81543 via svnmerge fromVictor Stinner2010-05-262-0/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81543 | victor.stinner | 2010-05-26 19:25:28 +0200 (mer., 26 mai 2010) | 2 lines Issue #7449: Skip test_socketserver if threading support is disabled ........
* Issue #8817: Expose round-to-nearest variant of divmod in _PyLong_Divmod_NearMark Dickinson2010-05-262-111/+148
| | | | for use by the datetime module; also refactor long_round to use this function.
* Blocked revisions 81537 via svnmergeVictor Stinner2010-05-250-0/+0
| | | | | | | | | | | ........ r81537 | victor.stinner | 2010-05-26 00:30:32 +0200 (mer., 26 mai 2010) | 3 lines Issue #3798: Write sys.exit() message to sys.stderr to use stderr encoding and error handler, instead of writing to the C stderr file in utf-8 ........ py3k was already fixed by r81252.
* Fix the new TestMain.test_decode() of test_base64 for WindowsVictor Stinner2010-05-251-1/+1
|
* Issue #4769: Fix main() function of the base64 module, use sys.stdin.buffer andVictor Stinner2010-05-253-2/+40
| | | | sys.stdout.buffer (instead of sys.stdin and sys.stdout) to use the bytes API
* Merged revisions 81531 via svnmerge fromMartin v. Löwis2010-05-251-0/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81531 | martin.v.loewis | 2010-05-25 22:06:02 +0200 (Di, 25 Mai 2010) | 2 lines Add Alexander Belopolsky. ........
* Merged revisions 81527 via svnmerge fromMark Dickinson2010-05-251-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81527 | mark.dickinson | 2010-05-25 20:44:49 +0100 (Tue, 25 May 2010) | 1 line Fix a NameError in test_enumerate. ........