summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Issue #8373: The filesystem path of AF_UNIX sockets now uses the filesystemAntoine Pitrou2011-12-161-1/+62
| | | | | encoding and the surrogateescape error handler, rather than UTF-8. Patch by David Watson.
* fix this test to actually test something (closes #13606)Benjamin Peterson2011-12-151-2/+4
| | | | Thanks Mark Shannon.
* improve abstract property support (closes #11610)Benjamin Peterson2011-12-152-10/+185
| | | | Thanks to Darren Dale for patch.
* Fix OSError.__init__ and OSError.__new__ so that each of them can beAntoine Pitrou2011-12-151-5/+55
| | | | overriden and take additional arguments (followup to issue #12555).
* Issue #13453: Fix a race condition in test_poplib.Charles-François Natali2011-12-141-10/+12
|\
| * Issue #13453: Fix a race condition in test_poplib.Charles-François Natali2011-12-141-10/+12
| |
* | Fix #13449: add 'blocking' parameter to sched.scheduler.run() so that the ↵Giampaolo Rodola'2011-12-141-0/+10
| | | | | | | | scheduler can be used in non-blocking applications
* | Merge 3.2Alexandre Vassalotti2011-12-131-3/+9
|\ \ | |/
| * Issue #13505: Make pickling of bytes object compatible with Python 2.Alexandre Vassalotti2011-12-131-3/+9
| | | | | | | | Initial patch by sbt.
* | Issue #13577: various kinds of descriptors now have a __qualname__ attribute.Antoine Pitrou2011-12-122-4/+22
| | | | | | | | Patch by sbt.
* | Issue #13544: Add __qualname__ to functools.WRAPPER_ASSIGNMENTS.Meador Inge2011-12-121-3/+9
| | | | | | | | Patch by Filip Gruszczyński.
* | Fix imports in xml.dom.Florent Xicluna2011-12-101-1/+1
| |
* | Issue #5689: Add support for lzma compression to the tarfile module.Lars Gustäbel2011-12-101-10/+68
| |
* | merge 3.2Benjamin Peterson2011-12-101-6/+1
|\ \ | |/
| * we're always going to have gcBenjamin Peterson2011-12-101-6/+1
| |
* | merge 3.2Benjamin Peterson2011-12-101-11/+17
|\ \ | |/
| * you can't get resource.error if you can't import resourceBenjamin Peterson2011-12-101-11/+17
| |
* | Issue #11886: Fix also test_time for the non-DST timezone name (EST/AEST)Victor Stinner2011-12-101-4/+6
| |
* | Issue #13453: Catch EAI_FAIL in support.transient_internet.Charles-François Natali2011-12-101-0/+1
|\ \ | |/
| * Issue #13453: Catch EAI_FAIL in support.transient_internet.Charles-François Natali2011-12-101-0/+1
| |
* | Issue #13248: turn 3.2's PendingDeprecationWarning into 3.3's ↵Florent Xicluna2011-12-101-22/+22
| | | | | | | | DeprecationWarning (cgi, importlib, nntplib, smtpd).
* | Closes #2979: add parameter 'use_builtin_types' to the SimpleXMLRPCServer.Florent Xicluna2011-12-091-0/+34
| |
* | Write tests for invalid characters (U+00110000)Victor Stinner2011-12-091-0/+16
| | | | | | | | | | | | | | | | | | Test the following functions: * codecs.raw_unicode_escape_decode() * PyUnicode_FromWideChar() * PyUnicode_FromUnicode() * "unicode_internal" and "unicode_escape" decoders
* | Issue #13441: Enable the workaround for Solaris locale bugVictor Stinner2011-12-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Skip locales triggering the mbstowcs() bug. I collected the locale list thanks my previous commit: * hu_HU (ISO8859-2): character U+30000020 * de_AT (ISO8859-1): character U+30000076 * cs_CZ (ISO8859-2): character U+30000020 * sk_SK (ISO8859-2): character U+30000020 * pl_PL (ISO8859-2): character U+30000020 * fr_CA (ISO8859-1): character U+30000020
* | Issue #13441: Skip some locales (e.g. cs_CZ and hu_HU) on Solaris to workaroundVictor Stinner2011-12-091-13/+30
| | | | | | | | | | | | | | | | | | a mbstowcs() bug. For example, on Solaris, the hu_HU locale uses the locale encoding ISO-8859-2, the thousauds separator is b'\xA0' and it is decoded as U+30000020 (an invalid character) by mbstowcs(). The workaround is not enabled yet (commented): I would like first to get more information about the failing locales.
* | Issue #13441: Don't test the hu_HU locale on Solaris to workaround a mbstowcs()Victor Stinner2011-12-091-1/+8
| | | | | | | | | | | | bug. On Solaris, if the locale is hu_HU (and if the locale encoding is not UTF-8), the thousauds separator is b'\xA0' which is decoded as U+30000020 instead of U+0020 by mbstowcs().
* | Issue #13441: Log the locale when localeconv() failsVictor Stinner2011-12-081-1/+5
| |
* | (Merge 3.2) Issue #11886: workaround an OS bug (time zone data) in test_timeVictor Stinner2011-12-071-1/+6
|\ \ | |/ | | | | | | | | | | Australian Eastern Standard Time (UTC+10) is called "EST" (as Eastern Standard Time, UTC-5) instead of "AEST" on some operating systems (e.g. FreeBSD), which is wrong. See for example this bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=93810
| * Issue #11886: workaround an OS bug (time zone data) in test_timeVictor Stinner2011-12-071-1/+6
| | | | | | | | | | | | | | Australian Eastern Standard Time (UTC+10) is called "EST" (as Eastern Standard Time, UTC-5) instead of "AEST" on some operating systems (e.g. FreeBSD), which is wrong. See for example this bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=93810
* | #13531: merge with 3.2.Ezio Melotti2011-12-071-0/+3
|\ \ | |/
| * #13531: add a test for defaultdict with a non-callable arg. Patch by Mike ↵Ezio Melotti2011-12-071-0/+3
| | | | | | | | Cheng.
* | Issue #13464: Add a readinto() method to http.client.HTTPResponse.Antoine Pitrou2011-12-061-0/+86
| | | | | | | | Patch by Jon Kuhn.
* | Remove no longer needed work-around for bz2 file object support.Lars Gustäbel2011-12-061-0/+3
| |
* | Merge with 3.2: Correctly detect bzip2 compressed streams with blocksizes ↵Lars Gustäbel2011-12-061-4/+18
|\ \ | |/ | | | | other than 900k.
| * Correctly detect bzip2 compressed streams with blocksizes other than 900k.Lars Gustäbel2011-12-061-4/+18
| |
* | Corrected order of parameters to HTTPError in test_urllib2.py.Jason R. Coombs2011-12-041-1/+1
| |
* | Pass positional arguments - HTTPError is not accepting keyword arguments. ↵Jason R. Coombs2011-12-041-1/+3
| | | | | | | | Reference #13211 and #12555.
* | Merged fix for #13211 from 3.2Jason R. Coombs2011-12-031-0/+11
|\ \ | |/
| * Issue #13211: Add .reason attribute to HTTPError to implement parent class ↵Jason R. Coombs2011-11-071-0/+11
| | | | | | | | (URLError) interface.
* | #8414: merge with 3.2.Ezio Melotti2011-12-021-2/+24
|\ \ | |/
| * #8414: add more tests for "assert". Initial patch by Gregory Nofi.Ezio Melotti2011-12-021-2/+24
| |
* | Make error handling in BZ2File.{readable,seekable,writable,fileno} ↵Nadeem Vawda2011-11-301-1/+56
| | | | | | | | | | | | consistent with TextIOWrapper. Also, add tests for these methods.
* | Issue #6715: Add module for compression using the LZMA algorithm.Nadeem Vawda2011-11-291-0/+1335
| |
* | Merge 3.2Éric Araujo2011-11-291-0/+18
|\ \ | |/
| * Add a regrtest cleanup check for shutil registriesÉric Araujo2011-11-291-0/+19
| |
* | Merge test_xmlrpc_net fixes (issue #13434)Antoine Pitrou2011-11-281-1/+2
|\ \ | |/
| * Fix resource warning in test_xmlrpc_netAntoine Pitrou2011-11-281-0/+1
| |
| * Issue #13434: skip the time.xmlrpc.com test, and reenable the buildbot test.Antoine Pitrou2011-11-281-1/+1
| |
* | Issue #7111: Python can now be run without a stdin, stdout or stderr stream.Antoine Pitrou2011-11-281-0/+39
|\ \ | |/ | | | | | | It was already the case with Python 2. However, the corresponding sys module entries are now set to None (instead of an unusable file object).
| * Issue #7111: Python can now be run without a stdin, stdout or stderr stream.Antoine Pitrou2011-11-281-0/+39
| | | | | | | | | | It was already the case with Python 2. However, the corresponding sys module entries are now set to None (instead of an unusable file object).