summaryrefslogtreecommitdiff
path: root/Lib/socket.py
Commit message (Expand)AuthorAgeFilesLines
* Fix broken link to MSDN (#102355)谭九鼎2023-03-131-1/+1
* gh-100374: Fixed a bug in socket.getfqdn() (gh-100375)Dominic Socular2022-12-211-2/+2
* gh-96320: WASI socket fixes (#96388)Christian Heimes2022-08-301-2/+3
* Grammar fix to socket error string (GH-93523)Evorage2022-06-071-1/+1
* Remove the execution bit to some socket-related files. (#93368)Ezio Melotti2022-06-011-0/+0
* Doc: Minor adjustment of `socket.create_server` docs (#26938)Pavel2022-05-201-0/+1
* gh-74166: make all_errors keyword-only (GH-91704)Irit Katriel2022-04-191-1/+1
* gh-74166: break cycle by clearing the list instead of dropping its reference ...Irit Katriel2022-04-191-1/+1
* gh-74166: Add option to get all errors from socket.create_connection (GH-91586)Irit Katriel2022-04-181-9/+15
* bpo-40635: Fix getfqdn() docstring and docs (GH-27971)andrei kulakov2021-08-261-2/+3
* Fix typos in multiple files (GH-26689)Binbin2021-06-121-1/+1
* bpo-43651: PEP 597: Fix `socket.makefile()` (GH-25645)Inada Naoki2021-04-271-0/+1
* bpo-42427: Use the errno attribute of OSError instead of args[0] (GH-23449)Serhiy Storchaka2020-11-221-2/+2
* bpo-42413: socket.timeout is now an alias of TimeoutError (GH-23413)Christian Heimes2020-11-201-1/+1
* Fix host in address of socket.create_server example. (GH-17706)Karthikeyan Singaravelan2020-01-111-1/+1
* bpo-36820: Break unnecessary cycle in socket.py, codeop.py and dyld.py (GH-13...Mario Corchero2019-12-061-1/+5
* bpo-38319: Fix shutil._fastcopy_sendfile(): set sendfile() max block size (GH...Giampaolo Rodola2019-10-011-2/+2
* bpo-28724: Add methods send_fds and recv_fds to the socket module (GH-12889)Joannah Nanjekye2019-09-111-0/+36
* bpo-11953: Extend table of Windows WSA* error codes (GH-15004)Ngalim Siregar2019-09-091-1/+82
* closes bpo-37566: Remove _realsocket from socket.py. (GH-14711)Hai Shi2019-07-111-2/+0
* BPO-17561: set create_server backlog default to None (GH-12735)Giampaolo Rodola2019-04-091-2/+5
* bpo-35934: Add socket.create_server() utility function (GH-11784)Giampaolo Rodola2019-04-091-2/+85
* bpo-33138: Change standard error message for non-pickleable and non-copyable ...Serhiy Storchaka2018-10-311-1/+1
* bpo-34282: Fix Enum._convert shadowing members named _convert (GH-8568)orlnub1232018-09-121-4/+4
* bpo-28134: Auto-detect socket values from file descriptor (#1349)Christian Heimes2018-01-291-1/+8
* bpo-32331: Fix socket.type when SOCK_NONBLOCK is available (#4877)Yury Selivanov2017-12-181-5/+1
* bpo-31234, socket.create_connection(): Fix ref cycle (#3546)Victor Stinner2017-09-131-0/+2
* Issue #26384: Merge from 3.5Berker Peksag2016-09-171-1/+1
|\
| * Issue #26384: Fix UnboundLocalError in socket._sendfile_use_sendfileBerker Peksag2016-09-171-1/+1
* | issue28083: add IntFlag constantsEthan Furman2016-09-111-1/+11
|/
* Issue #27698: Add socketpair to socket.__all__ on WindowsVictor Stinner2016-08-171-0/+1
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* Issue #16915: Clarify that mode parameter of socket.makefile() does not acceptBerker Peksag2016-02-181-3/+3
* merge 3.4 (#25471)Benjamin Peterson2015-10-241-1/+5
|\
| * accepted sockets shouldn't inherit the SOCK_NONBLOCK flag (closes #25471)Benjamin Peterson2015-10-241-1/+5
| * issue23673Ethan Furman2015-03-181-9/+9
* | issue23673Ethan Furman2015-03-181-8/+8
* | Issue #23285: PEP 475 -- Retry system calls failing with EINTR.Charles-François Natali2015-02-071-2/+0
* | merge 3.4 (#23221)Benjamin Peterson2015-01-131-1/+1
|\ \ | |/
| * fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-131-1/+1
* | Issue #20604: Added missed invalid mode in error message of socket.makefile().Serhiy Storchaka2014-11-191-3/+2
|\ \ | |/
| * Issue #20604: Added missed invalid mode in error message of socket.makefile().Serhiy Storchaka2014-11-191-3/+2
* | Issue20689: add missing API pieces to __all__Ethan Furman2014-10-181-1/+3
|\ \ | |/
| * Issue20689: add missing API pieces to __all__Ethan Furman2014-10-181-1/+3
* | Issue20386: SocketType is again socket.socket; the IntEnum SOCK constants are...Ethan Furman2014-10-141-5/+7
|\ \ | |/
| * Issue20386: SocketType is again socket.socket; the IntEnum SOCK constants are...Ethan Furman2014-10-141-5/+7
* | Issue #18643: Add socket.socketpair() on Windows.Charles-François Natali2014-10-141-0/+51
* | Issue #22032: __qualname__ instead of __name__ is now always used to formatSerhiy Storchaka2014-07-221-1/+1
* | fix issue #17552: add socket.sendfile() method allowing to send a file over a...Giampaolo Rodola'2014-06-111-1/+147
|/
* Provide a more readable representation of socket on repr().Giampaolo Rodola'2013-10-031-1/+1