summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Finish GC code for SSLSession and increase test coverageChristian Heimes2016-09-241-0/+3
|\
| * Finish GC code for SSLSession and increase test coverageChristian Heimes2016-09-241-0/+3
| |
* | Issue #28221: Merge SSL test cleanup from 3.6Martin Panter2016-09-241-2/+0
|\ \ | |/
| * Issue #28221: Merge SSL test cleanup from 3.5 into 3.6Martin Panter2016-09-241-2/+0
| |\
| | * Issue #28221: Remove unused assignment from test_asyncore_server()Martin Panter2016-09-231-2/+0
| | | | | | | | | | | | | | | The later value of FOO is fine. The test just needs to verify that the server converted it to lowercase.
* | | Add test cases for internal SHA3 helpersChristian Heimes2016-09-231-0/+21
|\ \ \ | |/ /
| * | Add test cases for internal SHA3 helpersChristian Heimes2016-09-231-0/+21
| | |
* | | Merge 3.6 (issue #27829)Victor Stinner2016-09-231-1/+1
|\ \ \ | |/ /
| * | Merge 3.5 (issue #27829)Victor Stinner2016-09-231-1/+1
| |\ \ | | |/
| | * Issue #27829: regrtest -W displays stderr if env changedVictor Stinner2016-09-231-1/+1
| | | | | | | | | | | | | | | | | | regrtest -W hides output if a test pass, but also when env changed and so the env changed warning is hidden. So it's hard to debug. With this change, stderr is now always displayed when a test doesn't pass.
* | | Issue #28086: Single var-positional argument of tuple subtype was passedSerhiy Storchaka2016-09-221-1/+1
|\ \ \ | |/ / | | | | | | unscathed to the C-defined function. Now it is converted to exact tuple.
| * | Issue #28086: Single var-positional argument of tuple subtype was passedSerhiy Storchaka2016-09-221-1/+1
| | | | | | | | | | | | unscathed to the C-defined function. Now it is converted to exact tuple.
* | | Make Lib/test/ssltests.py more useful and faster for OpenSSL testingChristian Heimes2016-09-221-6/+21
|\ \ \ | |/ /
| * | Make Lib/test/ssltests.py more useful and faster for OpenSSL testingChristian Heimes2016-09-221-6/+21
| |\ \ | | |/
| | * Make Lib/test/ssltests.py more useful and faster for OpenSSL testingChristian Heimes2016-09-221-6/+21
| | |
* | | Merge socketserver fixes from 3.6Martin Panter2016-09-222-2/+2
|\ \ \ | |/ /
| * | Merge socketserver fixes from 3.5 into 3.6Martin Panter2016-09-222-2/+2
| |\ \ | | |/
| | * Fix references to Python 3’s socketserver (lowercase) moduleMartin Panter2016-09-222-2/+2
| | |
* | | Issue #27348: Merge exception formatting fix from 3.6Martin Panter2016-09-221-5/+12
|\ \ \ | |/ /
| * | Issue #27348: Merge exception formatting fix from 3.5 into 3.6Martin Panter2016-09-221-5/+12
| |\ \ | | |/
| | * Issue #27348: Restore “Exception: None” formatting in traceback moduleMartin Panter2016-09-221-5/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes a regression caused by revision 73afda5a4e4c. Also reverts the decimal test workaround added in revision 5f3dd0a2b1ab. Remove test_without_exception(). According to revision ecaafc32c500, this was added in Python 2 so that print_exc() would output “None” when called with no exception set. However print_exc() never worked like this in Python 3, and the use case is not documented. Restore TracebackCases class name (instead of SyntaxTracebackCases), because the class also tests other exceptions.
* | | Extend the test to lower pickle protocols.Serhiy Storchaka2016-09-221-1/+1
|\ \ \ | |/ /
| * | Extend the test to lower pickle protocols.Serhiy Storchaka2016-09-221-1/+1
| |\ \ | | |/
| | * Extend the test to lower pickle protocols.Serhiy Storchaka2016-09-221-1/+1
| | |
* | | regrtest: add -u for unbuffered stdout/stderrVictor Stinner2016-09-211-1/+1
| | |
* | | Issue #28214: Now __set_name__ is looked up on the class instead of theSerhiy Storchaka2016-09-211-0/+12
|\ \ \ | |/ / | | | | | | instance.
| * | Issue #28214: Now __set_name__ is looked up on the class instead of theSerhiy Storchaka2016-09-211-0/+12
| | | | | | | | | | | | instance.
* | | Merge 3.6Victor Stinner2016-09-211-1/+1
|\ \ \ | |/ /
| * | Merge 3.5Victor Stinner2016-09-211-1/+1
| |\ \ | | |/
| | * test_asynico: fix test_sock_connect_sock_write_race()Victor Stinner2016-09-211-1/+1
| | | | | | | | | | | | Issue #28176: Increase timeout from 10 seconds to 60 seconds.
| | * Issue #28189: dictitems_contains no longer swallows compare errors.Raymond Hettinger2016-09-191-0/+26
| | | | | | | | | | | | (Patch by Xiang Zhang)
| | * Issue #26610: Skip test_with_pip if _ctypes is not available in OpenIndianaBerker Peksag2016-09-181-0/+7
| | |
| | * Issue #28075: Fix test_access_denied in Python 3.5Berker Peksag2016-09-181-12/+14
| | | | | | | | | | | | I forgot there two variations of os.stat() in Python 3.5.
* | | mergeRaymond Hettinger2016-09-191-0/+26
|\ \ \ | |/ /
| * | mergeRaymond Hettinger2016-09-191-0/+26
| | |
* | | Merge 3.6 (test_regrtest)Victor Stinner2016-09-181-5/+2
|\ \ \ | |/ /
| * | Fix test_huntrleaks_fd_leak() of test_regrtestVictor Stinner2016-09-181-5/+2
| | | | | | | | | | | | | | | Issue #28195: Don't expect the fd leak message to be on a specific line number, just make sure that the line is present in the output.
* | | issue23591: fix flag decomposition and reprEthan Furman2016-09-181-28/+77
|\ \ \ | |/ /
| * | issue23591: fix flag decomposition and reprEthan Furman2016-09-181-28/+77
| | |
* | | Issue #25400: Merge from 3.6Berker Peksag2016-09-181-18/+36
|\ \ \ | |/ /
| * | Issue #25400: RobotFileParser now correctly returns default values for ↵Berker Peksag2016-09-181-18/+36
| | | | | | | | | | | | | | | | | | crawl_delay and request_rate Initial patch by Peter Wirtz.
* | | Issue #28151: Merge from 3.6Berker Peksag2016-09-181-7/+36
|\ \ \ | |/ /
| * | Issue #28151: Use pythontest.net in test_robotparserBerker Peksag2016-09-181-7/+36
| | |
* | | Issue #28176: Merge from 3.6Berker Peksag2016-09-171-1/+1
|\ \ \ | |/ /
| * | Issue #28176: Merge from 3.5Berker Peksag2016-09-171-1/+1
| |\ \ | | |/
| | * Issue #28176: Increase timeout for test_sock_connect_sock_write_raceBerker Peksag2016-09-171-1/+1
| | |
* | | Issue #28192: Adds tests for hook in isolated modeSteve Dower2016-09-171-0/+18
|\ \ \ | |/ /
| * | Issue #28192: Adds tests for hook in isolated modeSteve Dower2016-09-171-0/+18
| | |
* | | Issue #26384: Merge from 3.6Berker Peksag2016-09-171-0/+19
|\ \ \ | |/ /
| * | Issue #26384: Merge from 3.5Berker Peksag2016-09-171-0/+19
| |\ \ | | |/