| Commit message (Expand) | Author | Age | Files | Lines |
* | Also guard other SOCK_NONBLOCK test | Antoine Pitrou | 2010-10-23 | 1 | -9/+13 |
|
|
* | Fix SOCK_CLOEXEC and SOCK_NONBLOCK tests on recent glibcs with old Linux kern... | Antoine Pitrou | 2010-10-23 | 1 | -0/+18 |
|
|
* | fix for netbsd. | Gregory P. Smith | 2010-10-17 | 1 | -2/+4 |
|
|
* | Enable debug output at the start of the regression suite instead. | Antoine Pitrou | 2010-10-15 | 1 | -5/+0 |
|
|
* | Temporary debug printout for buildbots | Antoine Pitrou | 2010-10-15 | 1 | -0/+5 |
|
|
* | Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module, | Antoine Pitrou | 2010-10-14 | 1 | -0/+76 |
|
|
* | Issue #10041: The signature of optional arguments in socket.makefile() | Antoine Pitrou | 2010-10-13 | 1 | -70/+121 |
|
|
* | Issue #9950: Fix socket.sendall() crash or misbehaviour when a signal is | Antoine Pitrou | 2010-09-27 | 1 | -0/+37 |
|
|
* | Issue #9854: SocketIO objects now observe the RawIOBase interface in | Antoine Pitrou | 2010-09-18 | 1 | -6/+67 |
|
|
* | Make testDefaults in test.test_socket.BasicSocketPairTest more reliable. | Antoine Pitrou | 2010-09-14 | 1 | -13/+11 |
|
|
* | Issue #1552: socket.socketpair() now returns regular socket.socket | Antoine Pitrou | 2010-09-14 | 1 | -0/+18 |
|
|
* | Skip socket tests that require the network, if the network resource is not en... | Daniel Stutzbach | 2010-09-09 | 1 | -0/+2 |
|
|
* | Fix issue 9794: adds context manager protocol to socket.socket so that socket... | Giampaolo Rodolà | 2010-09-08 | 1 | -0/+44 |
|
|
* | Issue #9792: In case of connection failure, socket.create_connection() | Antoine Pitrou | 2010-09-07 | 1 | -5/+36 |
|
|
* | Issue #9777: test_idna requires the "network" resource | Antoine Pitrou | 2010-09-04 | 1 | -0/+1 |
|
|
* | fromfd exists on Windows now | Daniel Stutzbach | 2010-09-03 | 1 | -2/+0 |
|
|
* | Issue #1027206: getnameinfo is now restricted to numeric addresses as input. | Martin v. Löwis | 2010-08-25 | 1 | -0/+4 |
|
|
* | Explicitly pass socket type and family for getaddrinfo, | Martin v. Löwis | 2010-08-23 | 1 | -2/+4 |
|
|
* | Mention that gethostbyaddr now also supports IDNA. | Martin v. Löwis | 2010-08-22 | 1 | -0/+1 |
|
|
* | Issue #1027206: Support IDNA in gethostbyname, gethostbyname_ex and | Martin v. Löwis | 2010-08-22 | 1 | -0/+5 |
|
|
* | fix issue #8866: parameters passed to socket.getaddrinfo can now be specified... | Giampaolo Rodolà | 2010-08-17 | 1 | -0/+22 |
|
|
* | fix getaddrinfo test failure on OSX caused by AI_CANNAME erroneously used as ... | Giampaolo Rodolà | 2010-08-16 | 1 | -1/+1 |
|
|
* | fix issue #8857: provide a test case for socket.getaddrinfo | Giampaolo Rodolà | 2010-08-14 | 1 | -0/+51 |
|
|
* | Followup to r83869 and issue #8524: rename socket.forget() to socket.detach() | Antoine Pitrou | 2010-08-09 | 1 | -5/+9 |
|
|
* | Issue #8524: Add a forget() method to socket objects, so as to put the | Antoine Pitrou | 2010-08-08 | 1 | -0/+13 |
|
|
* | Remove traces of MacOS9 support. | Ronald Oussoren | 2010-05-05 | 1 | -3/+1 |
|
|
* | Merged revisions 80552-80556,80564-80566,80568-80571 via svnmerge from | Victor Stinner | 2010-04-28 | 1 | -2/+16 |
|
|
* | NOTE: just porting tests here. | Antoine Pitrou | 2010-03-17 | 1 | -4/+40 |
|
|
* | convert shebang lines: python -> python3 | Benjamin Peterson | 2010-03-11 | 1 | -1/+1 |
|
|
* | use assert[Not]In where appropriate | Benjamin Peterson | 2010-01-19 | 1 | -1/+1 |
|
|
* | Merged revisions 74426 via svnmerge from | Gregory P. Smith | 2010-01-04 | 1 | -0/+113 |
|
|
* | Merged revisions 77286 via svnmerge from | Gregory P. Smith | 2010-01-03 | 1 | -9/+4 |
|
|
* | Merged revisions 77263-77264 via svnmerge from | Gregory P. Smith | 2010-01-03 | 1 | -1/+14 |
|
|
* | Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,... | Benjamin Peterson | 2009-10-04 | 1 | -1/+1 |
|
|
* | http://bugs.python.org/issue6971 | Kristján Valur Jónsson | 2009-09-27 | 1 | -0/+4 |
|
|
* | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -27/+27 |
|
|
* | Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,... | Benjamin Peterson | 2009-02-13 | 1 | -0/+8 |
|
|
* | Merged revisions 69129-69131,69139-69140,69143,69154-69159,69169,69288-69289,... | Benjamin Peterson | 2009-02-06 | 1 | -6/+30 |
|
|
* | Merged revisions 68611-68613 via svnmerge from | Mark Dickinson | 2009-01-15 | 1 | -0/+4 |
|
|
* | Fixes issue #3826 and #4791: | Gregory P. Smith | 2009-01-12 | 1 | -0/+33 |
|
|
* | make FileIO.mode always include 'b' | Benjamin Peterson | 2008-11-22 | 1 | -2/+2 |
|
|
* | Follow-up of r67300: correct a failure in socket.makefile(). | Amaury Forgeot d'Arc | 2008-11-20 | 1 | -0/+8 |
|
|
* | #2538: bytes objects can only provide read-only buffers | Antoine Pitrou | 2008-08-02 | 1 | -2/+2 |
|
|
* | Merged revisions 64125 via svnmerge from | Benjamin Peterson | 2008-06-11 | 1 | -1/+1 |
|
|
* | Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,... | Georg Brandl | 2008-06-10 | 1 | -13/+19 |
|
|
* | Create http package. #2883. | Georg Brandl | 2008-05-26 | 1 | -1/+1 |
|
|
* | Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. | Georg Brandl | 2008-05-25 | 1 | -1/+2 |
|
|
* | #2621 rename test.test_support to test.support | Benjamin Peterson | 2008-05-20 | 1 | -9/+9 |
|
|
* | Rename Queue module to queue. | Alexandre Vassalotti | 2008-05-11 | 1 | -2/+2 |
|
|
* | Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-... | Christian Heimes | 2008-04-09 | 1 | -28/+37 |
|
|