summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* restore test data READMEBenjamin Peterson2014-12-071-0/+2
|
* remove HTTPSConnection's check_hostname parameter (#22959)Benjamin Peterson2014-12-072-10/+5
|
* allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935)Benjamin Peterson2014-12-062-8/+17
| | | | Patch by Kurt Roeckx.
* add a default limit for the amount of data xmlrpclib.gzip_decode will return ↵Benjamin Peterson2014-12-061-1/+18
| | | | (closes #16043)
* smtplib: limit amount read from the network (closes #16042)Benjamin Peterson2014-12-061-1/+29
|
* in poplib, limit maximum line length that we read from the network (closes ↵Benjamin Peterson2014-12-061-0/+4
| | | | | | #16041) Patch from Berker Peksag.
* backout fac649bf2d10 (#9179) for further considerationBenjamin Peterson2014-11-301-37/+1
|
* use more ugly but hopefully more robust methodBenjamin Peterson2014-11-251-1/+1
|
* handle errors without a reason attributeBenjamin Peterson2014-11-251-1/+1
|
* don't fail tests when www.python.org can't be validated by the systemBenjamin Peterson2014-11-253-5/+17
|
* debugging: print ca certs loaded into default ctxBenjamin Peterson2014-11-251-0/+3
|
* Issue #16056: Rename test methods to avoid conflict.Berker Peksag2014-11-243-59/+1
|
* is OpenIndiana actually sunos?Benjamin Peterson2014-11-241-1/+1
|
* loosen solaris testBenjamin Peterson2014-11-241-1/+1
|
* skip test_gdb on OpenIndianaBenjamin Peterson2014-11-241-0/+3
|
* pep 476: verify certificates by default (#22417)Benjamin Peterson2014-11-242-4/+26
|
* give urllib.urlopen a context parameter (closes #22927)Benjamin Peterson2014-11-241-1/+19
|
* allow hostname to be passed to SSLContext even if OpenSSL doesn't support ↵Benjamin Peterson2014-11-241-6/+2
| | | | | | SNI (closes #22921) Patch from Donald Stufft.
* fix this test when sizeof(long) < sizeof(size_t)Benjamin Peterson2014-11-231-1/+1
|
* remove py3k warning guardBenjamin Peterson2014-11-231-2/+1
|
* allow passing cert/ssl information to urllib2.urlopen and ↵Benjamin Peterson2014-11-236-27/+259
| | | | | | httplib.HTTPSConnection This is basically a backport of issues #9003 and #22366.
* Issue #21963: backout issue #1856 patch (avoid crashes and lockups whenAntoine Pitrou2014-11-211-43/+0
| | | | | | daemon threads run while the interpreter is shutting down; instead, these threads are now killed when they try to take the GIL), as it seems to break some existing code.
* Issue #22193: Fixed integer overflow error in sys.getsizeof().Serhiy Storchaka2014-11-151-0/+25
| | | | Fixed an error in _PySys_GetSizeOf declaration.
* Define a __hash__ to quiet down a -3 warningDonald Stufft2014-11-111-0/+5
|
* Implement PEP 477 - Backport ensurepip (PEP 453) to 2.7Donald Stufft2014-11-112-0/+2704
| | | | | | | | | | | | | | | | | | | * Backports ensurepip to the 2.7 branch * Backports some of the improved documentation to the 2.7 branch. * Adds a private backport of the 3.x mock library as test._mock_backport to enable saner testing of ensurepip. Key Differences from 3.x: * Ensurepip does not have any Makefile integration, specifically it is not ran by default in the Makefile. * There is no venv module in 2.7, so downstream distributors can completely disable ensurepip, ideally with a message redirecting to the correct way to install pip. * To match the ``python`` command in 2.7, ensurepip will install the unversioned ``pip`` command as well. * No-op and hide --default-pip and add --no-default-pip to restore the 3.x behavor on 2.7.
* Issue #12728: Different Unicode characters having the same uppercase butSerhiy Storchaka2014-11-101-0/+45
| | | | different lowercase are now matched in case-insensitive regular expressions.
* Silence the failure of test_pyclbr after adding a property in sre_parseSerhiy Storchaka2014-11-071-1/+1
| | | | (issue #814253).
* Issues #814253, #9179: Group references and conditional group references nowSerhiy Storchaka2014-11-071-1/+37
| | | | work in lookbehind assertions in regular expressions.
* Backported tests for issue #22406.Serhiy Storchaka2014-11-072-0/+24
|
* Issue #17293: uuid.getnode() now determines MAC address on AIX using netstat.Serhiy Storchaka2014-11-071-0/+18
| | | | Based on patch by Aivars Kalvāns.
* #22650: test suite: load Unicode test data files from www.pythontest.netGeorg Brandl2014-11-066-23/+15
|
* use pythontest.net for url fragment testBenjamin Peterson2014-11-051-2/+2
|
* Issue #19753: Fix test_gdb on SystemZ buildbot, ignore warningsVictor Stinner2014-11-051-0/+4
|
* Issue #22773: fix failing test with old readline versions due to issue #19884.Antoine Pitrou2014-11-041-0/+4
|
* test that keyfile can be NoneBenjamin Peterson2014-11-041-1/+1
|
* Issue #22775: Fixed unpickling of Cookie.SimpleCookie with protocol 2.Serhiy Storchaka2014-11-021-0/+13
| | | | Patch by Tim Graham.
* #22751: fix test___all__ warning about modified environment in the tests. ↵Ezio Melotti2014-11-021-3/+4
| | | | Patch by Michael Cetrulo.
* Issue #22770: Prevent some Tk segfaults on OS X when running gui tests.Ned Deily2014-11-021-3/+2
| | | | | | | When running tests in subprocesses with the regrtest -j option, a bug in Cocoa Tk can result in a Tcl segfault. Avoid the problem by forcing Tk to fully initialize as an OS X gui process before destroying the Tcl instance and creating another. (Original patch by Serhiy Storchaka)
* Issue #17381: Fixed ranges handling in case-insensitive regular expressions.Serhiy Storchaka2014-10-311-0/+37
|
* Issue #22410: Module level functions in the re module now cache compiledSerhiy Storchaka2014-10-301-0/+37
| | | | locale-dependent regular expressions taking into account the locale.
* Issue #20155: Fix non-buildbot test failure on Windows. Patch by Claudiu Popa,Terry Jan Reedy2014-10-181-1/+1
| | | | revised by R. David Murray.
* #9351: set_defaults on subparser is no longer ignored if set on parent.R David Murray2014-10-181-0/+7
| | | | | | | | Before, if a default was set on the parent parser, any default for that variable set via set_defaults on a subparser would be ignored. Now the subparser set_defaults is honored. Patch by Jyrki Pullianinen.
* Issue #21855: Fixed the decimal module in unicode disabled build.Serhiy Storchaka2014-10-141-4/+5
|
* Merge.Charles-François Natali2014-10-1361-890/+3956
|\
| * Fixed the test of issue #13664 on platforms without unicode filenames support.Serhiy Storchaka2014-10-131-0/+4
| |
| * Change deprecated Exception.message to Exception.args-[0] where the use ofTerry Jan Reedy2014-10-133-3/+3
| | | | | | | | .message is not an essential part of the test.
| * Issue #13664: GzipFile now supports non-ascii Unicode filenames.Serhiy Storchaka2014-10-121-0/+11
| |
| * #11973: add test for previously fixed kevent signed/unsigned bug.R David Murray2014-10-121-0/+25
| | | | | | | | Patch by David Naylor.
| * Fixed and optimized a test of issue #22526.Serhiy Storchaka2014-10-121-6/+8
| |
| * Issue #22604: Fix assertion error in debug mode when dividing a complex ↵Antoine Pitrou2014-10-101-2/+7
| | | | | | | | number by (nan+0j).