summaryrefslogtreecommitdiff
path: root/Lib/test/test_socket.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #28815: Merge test tweak from 3.6Martin Panter2017-01-081-12/+30
|\
| * Issue #28815: Merge test_socket fix from 3.6Martin Panter2016-12-241-3/+11
| |\
| * \ Issue #28683: Merge 3.6.Xavier de Gaye2016-12-141-6/+15
| |\ \
| * | | Issue #26936: Fix the test_socket failures on Android - getservbyname(),Xavier de Gaye2016-12-131-4/+12
| * | | Merge 3.6Xavier de Gaye2016-11-131-8/+18
| |\ \ \
| | * \ \ Merge test suite fixes from 3.6Martin Panter2016-10-201-8/+18
| | |\ \ \
| | | * \ \ Merge 3.6 (issue #28471)Yury Selivanov2016-10-181-8/+18
| | | |\ \ \
| | | | * | | Issue #28332: Deprecated silent truncations in socket.htons and socket.ntohs.Serhiy Storchaka2016-10-021-8/+18
* | | | | | | Issue #28815: Merge test tweak from 3.5Martin Panter2017-01-081-7/+3
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | |
| * | | | | | Issue #28815: Use new exception subclassesMartin Panter2017-01-081-7/+3
* | | | | | | Issue #28815: Merge test_socket fix from 3.5Martin Panter2016-12-241-3/+11
|\ \ \ \ \ \ \ | |/ / / / / / | | | | | | / | |_|_|_|_|/ |/| | | | |
| * | | | | Issue #28815: Skip TIPC tests if /proc/modules is not readableMartin Panter2016-12-241-3/+11
* | | | | | Issue #28683: Fix the tests that bind() a unix socket and raise PermissionErrorXavier de Gaye2016-12-141-6/+15
| |/ / / / |/| | | |
* | | | | Merge 3.5Xavier de Gaye2016-11-131-1/+231
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / /
| * | | Issue #28471: Avoid ResourceWarning by detaching test socketMartin Panter2016-10-201-0/+1
| |/ /
| * | Issue #28471: Fix crash (GIL state related) in socket.setblockingYury Selivanov2016-10-181-0/+12
| |/
| * Issue #20254: Merge from 3.5Berker Peksag2016-10-021-2/+4
| |\
| * \ Issue #26384: Merge from 3.5Berker Peksag2016-09-171-0/+19
| |\ \
| * | | Issue 27744: test_aes_cbc is blocking x86-64 Ubuntu 15.10 Skylake CPU 3.x for...Christian Heimes2016-09-111-3/+5
| * | | Issue #28078: Add missing colonChristian Heimes2016-09-111-1/+1
| * | | Issue #28078: Silence resource warnings in test_socket. Initial patch by Xian...Christian Heimes2016-09-111-11/+15
| * | | Issue 27744: skip test if AF_ALG socket bind failsChristian Heimes2016-09-061-1/+5
| * | | Issue 27744: AES-CBC and DRBG need Kernel 3.19+Christian Heimes2016-09-061-0/+2
| * | | Issue 27744: Check for AF_ALG support in KernelChristian Heimes2016-09-061-1/+14
| * | | Issue #27744: Add AF_ALG (Linux Kernel crypto) to socket module.Christian Heimes2016-09-051-0/+165
| * | | Merge spelling and grammar fixes from 3.5Martin Panter2016-08-051-1/+1
| |\ \ \
| * | | | Issue #26536: Skip test_sio_loopback_fast_path under Windows 7Berker Peksag2016-06-181-2/+8
| * | | | Issue #26536: socket.ioctl now supports SIO_LOOPBACK_FAST_PATH. Patch by Dani...Steve Dower2016-06-171-0/+10
| * | | | Issue #27171: Merge typo fixes from 3.5Martin Panter2016-06-021-1/+12
| |\ \ \ \
| | * \ \ \ Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-301-1/+12
| | |\ \ \ \
| | | * \ \ \ Issue #27076: Merge spelling from 3.5Martin Panter2016-05-261-2/+2
| | | |\ \ \ \
| | | * | | | | Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-241-1/+0
| | | * | | | | Issue #26685: Raise OSError if closing a socket failsMartin Panter2016-04-111-0/+11
| | | * | | | | Issue #16915: Clarify that mode parameter of socket.makefile() does not acceptBerker Peksag2016-02-181-0/+1
| | | |\ \ \ \ \
| | | | * | | | | Tweak skipping messageBrett Cannon2015-12-281-1/+1
| | | | * | | | | Issue #24725: Skip the test_socket.testFDPassEmpty on OS X.Brett Cannon2015-12-281-0/+1
* | | | | | | | | Fix temporary file not deleted in test_socketXavier de Gaye2016-11-131-1/+2
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | Issue #20254: Fix duplicate tests in test_socketBerker Peksag2016-10-021-2/+4
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | Issue #26384: Fix UnboundLocalError in socket._sendfile_use_sendfileBerker Peksag2016-09-171-0/+19
| |_|_|_|_|/ |/| | | | |
* | | | | | Fix spelling and grammar in documentation and code commentsMartin Panter2016-08-041-1/+1
|/ / / / /
* | | | | Issue #27171: Fix typos in documentation, comments, and test function namesMartin Panter2016-06-021-1/+1
|/ / / /
* | | | Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-301-1/+1
| |_|/ |/| |
* | | Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-2/+2
|/ /
* | Issue #16915: Clarify that mode parameter of socket.makefile() does not acceptBerker Peksag2016-02-181-0/+14
|/
* Issue #25523: Merge a-to-an corrections from 3.4.Serhiy Storchaka2015-11-021-134/+302
|\
| * merge 3.4 (#25471)Benjamin Peterson2015-10-241-0/+1
| |\
| * \ Merge 3.4 (test_socket, issue #25138)Victor Stinner2015-09-211-134/+302
| |\ \
| | * \ Issue #22397: Skip failing tests on AIXRobert Collins2015-08-031-134/+302
| | |\ \
| | | * \ Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-141-134/+302
| | | |\ \
| | | | * | Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, andSerhiy Storchaka2015-03-201-0/+10