summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
...
* | Solved a potential deadlock in test_telnetlib.py. Related to issue #11812Jesus Cea2011-11-081-8/+0
| |
* | Closes #13361: Raise correct exception type.Vinay Sajip2011-11-072-2/+2
| |
* | Closes #13661: Check added for type of logger name.Vinay Sajip2011-11-072-0/+4
| |
* | Closes #13356. Thanks to Florent Xicluna for the patch.Vinay Sajip2011-11-072-2/+5
| |
* | Revert "Accept None as start and stop parameters for list.index() and ↵Petri Lehtinen2011-11-062-14/+0
| | | | | | | | | | | | tuple.index()" Issue #13340.
* | Silence a couple of warnings.Ezio Melotti2011-11-062-2/+5
| |
* | Fix another callable warning.Ezio Melotti2011-11-061-3/+2
| |
* | Fix tests now that the callable warning is gone.Ezio Melotti2011-11-062-4/+2
| |
* | Accept None as start and stop parameters for list.index() and tuple.index()Petri Lehtinen2011-11-052-0/+14
| | | | | | | | Closes #13340.
* | Issue #3067: Enhance the documentation and docstring of locale.setlocale()Petri Lehtinen2011-11-051-2/+3
| |
* | Fix Maildir initialization so that maildir contents are read correctly.Petri Lehtinen2011-11-052-5/+24
| | | | | | | | Closes #13254.
* | Revert commit that was not a bugfix (#5301).Éric Araujo2011-11-041-1/+0
| | | | | | | | | | I won’t revert in 3.2, since Georg pulled this change in 3.2.2 and released it.
* | Issue #13140: Fix the daemon_threads attribute of ThreadingMixIn.Florent Xicluna2011-11-042-3/+1
| |
* | Issue #13308: Fix test_httpservers failures when run as root.Charles-François Natali2011-11-021-2/+7
| |
* | Fix merge in changeset e1dde980a92c.Florent Xicluna2011-11-011-1/+1
| |
* | Issue #2892: preserve iterparse events in case of SyntaxErrorFlorent Xicluna2011-11-012-15/+24
| |
* | #670664: Fix HTMLParser to correctly handle the content of ↵Ezio Melotti2011-11-012-16/+48
| | | | | | | | ``<script>...</script>`` and ``<style>...</style>``.
* | Issue #13304: Skip test case if user site-packages disabled (-s orNed Deily2011-10-311-1/+3
| | | | | | | | PYTHONNOUSERSITE). (Patch by Carl Meyer)
* | Backout redundant changeset 1de4d92cd6a4Antoine Pitrou2011-10-311-2/+0
| |
* | Port to 2.7 - issue 10817 - Fix urlretrieve function to raiseSenthil Kumaran2011-10-312-22/+73
| | | | | | | | ContentTooShortError even when reporthook is None. Patch by Jyrki Pulliainen.
* | test_protocol_sslv2(): Skip this test if ssl.PROTOCOL_SSLv2 is notBarry Warsaw2011-10-311-0/+2
| | | | | | | | defined (as is the case with Ubuntu 11.10).
* | Closes #13283: removal of two unused variable in locale.pyJesus Cea2011-10-311-2/+0
| |
* | Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart.Ned Deily2011-10-311-0/+2
| | | | | | | | (Patch by Roger Serwy)
* | Issue 13274: Make the pure python code for heapq more closely match the C ↵Raymond Hettinger2011-10-301-0/+4
| | | | | | | | implementation for an undefined corner case.
* | Remove unstable SSL tests in the absence of ssl.OP_NO_{SSLv2,SSLv3,TLSv1}Antoine Pitrou2011-10-301-12/+2
| |
* | #13289: fix typo.Ezio Melotti2011-10-291-1/+1
| |
* | Closes #7334: close source files on ElementTree.parse and iterparse (partial ↵Florent Xicluna2011-10-291-11/+22
| | | | | | | | backport of issue #10093 from 3.2).
* | bring is_integer into tested existenceBenjamin Peterson2011-10-281-0/+6
| |
* | - Issue #13218: Fix test_ssl failures on Debian/Ubuntu.Barry Warsaw2011-10-281-2/+4
| |
* | adjust for change in assert bytecodeBenjamin Peterson2011-10-271-4/+5
| |
* | add a test for an assertion with tuple msgBenjamin Peterson2011-10-271-0/+6
| |
* | Issue #10860: Skip the new test if HTTPS is not availablePetri Lehtinen2011-10-261-0/+1
| |
* | Corrected typo in comment.Vinay Sajip2011-10-251-1/+1
| |
* | Closes #13232: Handle multiple encodings in exception logging.Vinay Sajip2011-10-241-2/+6
| |
* | Issue #10332: multiprocessing: fix a race condition when a Pool is closedCharles-François Natali2011-10-242-1/+19
| | | | | | | | before all tasks have completed.
* | Issue #1548891: The cStringIO.StringIO() constructor now encodes unicodeAntoine Pitrou2011-10-221-0/+21
| | | | | | | | | | arguments with the system default encoding just like the write() method does, instead of converting it to a raw buffer.
* | Oops, forgot issue numberAntoine Pitrou2011-10-211-1/+1
| |
* | Add test for fix of issue #1730114.Antoine Pitrou2011-10-211-0/+8
| |
* | Issue #9168: now smtpd is able to bind privileged port.Florent Xicluna2011-10-201-10/+10
| |
* | Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelatedSenthil Kumaran2011-10-192-0/+14
| | | | | | | | | | exceptions, when a document with timestamp earlier than 1980 is provided to zipfile. Patch contributed by Petri Lehtinen.
* | Fix closes Issue12529 - cgi.parse_header failure on double quotes andSenthil Kumaran2011-10-192-1/+4
| | | | | | | | semicolons. Patch by Ben Darnell and Petri Lehtinen.
* | Remove duplication.Ezio Melotti2011-10-199-12/+12
| |
* | Fixes #10860: Handle empty port after port delimiter in httplibŁukasz Langa2011-10-182-2/+28
| | | | | | | | | | | | Thanks, Shawn Ligocki! 3.x version will come as a separate patch.
* | normalize whitespace in Lib/distutils/msvc9compiler.pyMark Hammond2011-10-171-2/+2
| |
* | Issue #7833: Ext. modules built using distutils on Windows no longer get a ↵Mark Hammond2011-10-172-22/+102
| | | | | | | | manifest
* | PyEval_CallObject requires a tuple of args (closes #13186)Benjamin Peterson2011-10-151-0/+13
| |
* | Increase test coverage for distutils.filelist (#11751).Éric Araujo2011-10-141-10/+197
| | | | | | | | Patch by Justin Love.
* | Fix distutils’ check and register Unicode handling (#13114).Éric Araujo2011-10-094-13/+52
| | | | | | | | | | | | | | | | | | The check command was fixed by Kirill Kuzminykh. The register command was using StringIO.getvalue, which uses “''.join” and thus coerces to str using the default encoding (ASCII), so I changed the code to use one extra intermediary list and correctly encode to UTF-8.
* | Branch mergeÉric Araujo2011-10-092-7/+10
|\ \
| * | Fix test_sysconfig when prefix != exec-prefix (#9100).Éric Araujo2011-10-081-5/+8
| | | | | | | | | | | | Reported by Zsolt Cserna.