summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge spelling and grammar fixes from 3.5Martin Panter2016-08-051-1/+1
|\
| * Fix spelling and grammar in documentation and code commentsMartin Panter2016-08-041-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 ↵Steve Dower2016-06-171-0/+10
| | | | | | | | Daniel Stokes.
* | Issue #27171: Merge typo fixes from 3.5Martin Panter2016-06-021-1/+1
|\ \ | |/
| * Issue #27171: Fix typos in documentation, comments, and test function namesMartin Panter2016-06-021-1/+1
| |
* | Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-301-1/+1
|\ \ | |/
| * Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-301-1/+1
| |
* | Issue #27076: Merge spelling from 3.5Martin Panter2016-05-261-2/+2
|\ \ | |/
| * Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-2/+2
| | | | | | | | Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
* | 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/+14
|\ \ | |/ | | | | the same values as open().
| * Issue #16915: Clarify that mode parameter of socket.makefile() does not acceptBerker Peksag2016-02-181-0/+14
| | | | | | | | the same values as open().
* | Tweak skipping messageBrett Cannon2015-12-291-1/+1
| |
* | Issue #24725: Skip the test_socket.testFDPassEmpty on OS X.Brett Cannon2015-12-291-0/+1
|/ | | | | In OS X 10.11, the test fails consistently due to a platform change since 10.10. Thanks to Jeff Ramnani for the patch.
* Issue #25523: Merge a-to-an corrections from 3.4.Serhiy Storchaka2015-11-021-1/+1
|\
| * Issue #25523: Further a-to-an corrections.Serhiy Storchaka2015-11-021-1/+1
| |
* | merge 3.4 (#25471)Benjamin Peterson2015-10-251-0/+1
|\ \ | |/
| * accepted sockets shouldn't inherit the SOCK_NONBLOCK flag (closes #25471)Benjamin Peterson2015-10-251-0/+1
| |
* | Merge 3.4 (test_socket, issue #25138)Victor Stinner2015-09-211-5/+4
|\ \ | |/
| * Issue #25138: test_socket.test_idna() uses support.transient_internet() insteadVictor Stinner2015-09-211-5/+4
| | | | | | | | of catching socket.EAI_NODATA error which doesn't exist on FreeBSD.
* | Issue #22397: Skip failing tests on AIXRobert Collins2015-08-021-0/+4
|\ \ | |/ | | | | Patch from David Edelsohn.
| * Issue #22397: Skip failing tests on AIXRobert Collins2015-08-021-0/+4
| | | | | | | | Patch from David Edelsohn.
* | Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-141-1/+1
|\ \ | |/
| * Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-141-1/+1
| |
| * issue23673Ethan Furman2015-03-191-0/+5
| | | | | | | | | | | | | | | | | | add private method to enum to support replacing global constants with Enum members: - search for candidate constants via supplied filter - create new enum class and members - insert enum class and replace constants with members via supplied module name - replace __reduce_ex__ with function that returns member name, so previous Python versions can unpickle modify IntEnum classes to use new method
* | Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, andSerhiy Storchaka2015-03-201-0/+10
| | | | | | | | | | codecs, that accepted only read-only bytes-like object now accept writable bytes-like object too.
* | issue23673Ethan Furman2015-03-191-0/+5
| | | | | | | | | | | | | | | | | | add private method to enum to support replacing global constants with Enum members: - search for candidate constants via supplied filter - create new enum class and members - insert enum class and replace constants with members via supplied module name - replace __reduce_ex__ with function that returns member name, so previous Python versions can unpickle modify IntEnum classes to use new method
* | Fix whitespace.Charles-François Natali2015-02-071-1/+1
| |
* | Issue #23285: PEP 475 -- Retry system calls failing with EINTR.Charles-François Natali2015-02-071-120/+4
| |
* | Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux.Serhiy Storchaka2014-11-191-1/+1
|\ \ | |/ | | | | Patch by David Watson.
| * Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux.Serhiy Storchaka2014-11-191-1/+1
| | | | | | | | Patch by David Watson.
* | merge 3.4Benjamin Peterson2014-11-031-3/+4
|\ \ | |/
| * merge 3.3Benjamin Peterson2014-11-031-3/+4
| |\
| | * merge 3.2Benjamin Peterson2014-11-031-3/+4
| | |\
| | | * move idna test domain to pythontest.netBenjamin Peterson2014-11-031-3/+4
| | | |
| | | * Issue #20246: Fix test failures on FreeBSD. Patch by Ryan Smith-Roberts.Stefan Krah2014-01-211-1/+1
| | | |
* | | | Issue20386: SocketType is again socket.socket; the IntEnum SOCK constants ↵Ethan Furman2014-10-151-2/+9
|\ \ \ \ | |/ / / | | | | | | | | are SocketKind
| * | | Issue20386: SocketType is again socket.socket; the IntEnum SOCK constants ↵Ethan Furman2014-10-151-2/+9
| | | | | | | | | | | | | | | | are SocketKind
* | | | Issue #18643: Add socket.socketpair() on Windows.Charles-François Natali2014-10-141-2/+0
| | | |
* | | | #16518: Bring error messages in harmony with docs ("bytes-like object")R David Murray2014-10-051-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some time ago we changed the docs to consistently use the term 'bytes-like object' in all the contexts where bytes, bytearray, memoryview, etc are used. This patch (by Ezio Melotti) completes that work by changing the error messages that previously reported that certain types did "not support the buffer interface" to instead say that a bytes-like object is required. (The glossary entry for bytes-like object references the discussion of the buffer protocol in the docs.)
* | | | (Merge 3.4) Fix repr(_socket.socket) on Windows 64-bit: don't fail withVictor Stinner2014-07-261-0/+18
|\ \ \ \ | |/ / / | | | | | | | | OverflowError on closed socket. repr(socket.socket) already works fine.
| * | | Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowErrorVictor Stinner2014-07-261-0/+18
| | | | | | | | | | | | | | | | on closed socket. repr(socket.socket) already works fine.
* | | | Issue #19875: Fix random test_getsockaddrarg() failure.Charles-François Natali2014-07-251-8/+16
|\ \ \ \ | |/ / /
| * | | Issue #19875: Fix random test_getsockaddrarg() failure.Charles-François Natali2014-07-251-8/+16
| | | |
* | | | Issue #21566: Make use of socket.listen() default backlog.Charles-François Natali2014-07-231-5/+5
| | | |
* | | | Merge with 3.4Terry Jan Reedy2014-06-131-0/+1
|\ \ \ \ | |/ / /
| * | | Issue #21730: Add no-thread skip in test_socket. Patch by Berker Peksag.Terry Jan Reedy2014-06-131-0/+1
| | | |
* | | | fix issue #17552: add socket.sendfile() method allowing to send a file over ↵Giampaolo Rodola'2014-06-111-0/+273
| | | | | | | | | | | | | | | | a socket by using high-performance os.sendfile() on UNIX. Patch by Giampaolo Rodola'·