summaryrefslogtreecommitdiff
path: root/Lib/test/test_socketserver.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-31479: Always reset the signal alarm in tests (GH-3588) (GH-7314)Victor Stinner2018-06-011-1/+2
* bpo-31593: test_socketserver waits child processes (#3786)Victor Stinner2017-09-271-3/+18
* Issue #5824: Fix DatagramRequestHandler tests by binding the client socketMartin Panter2016-02-241-21/+20
* Issue #26309: Rewrite test in main thread and avoid race conditionMartin Panter2016-02-191-11/+12
* Issue #26309: Shut down SocketServer request if verify_request() is falseMartin Panter2016-02-181-0/+23
* Issue #23254: Document how to close the TCPServer listening socket.Robert Collins2015-07-291-0/+2
* Issue #22435: Fix a file descriptor leak when SocketServer bind fails.Charles-François Natali2014-10-131-0/+10
* Issue #18702: All skipped tests now reported as skipped.Serhiy Storchaka2013-11-031-39/+46
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
* Fix the patch for issue #7978: select() raises select.error before 3.3, not O...Antoine Pitrou2012-04-091-1/+1
* Fix flakiness in test_socketserverAntoine Pitrou2012-04-091-1/+4
* Issue #7978: socketserver now restarts the select() call when EINTR is returned.Antoine Pitrou2012-04-091-0/+34
* Issue #13140: Fix the daemon_threads attribute of ThreadingMixIn.Florent Xicluna2011-11-041-1/+0
* Issue #12250: test_socketserver uses a timeout of 60 seconds instead of 20Victor Stinner2011-07-141-2/+1
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-5/+5
* Issue #7449: Skip test_socketserver if threading support is disabledVictor Stinner2010-05-261-0/+1
* Issue #7449, last part (11): fix many tests if thread support is disabledVictor Stinner2010-04-271-1/+5
* Issue #2302: Fix a race condition in SocketServer.BaseServer.shutdown,Antoine Pitrou2010-04-251-0/+25
* Remove unused imports in test modules.Georg Brandl2010-02-071-3/+0
* Reduce the probability of refleaks in test_socketserver.Antoine Pitrou2009-10-271-1/+2
* fix incorrect auto-translation of TestSkipped -> unittest.SkipTestBenjamin Peterson2009-03-261-2/+2
* remove test_support.TestSkipped and just use unittest.SkipTestBenjamin Peterson2009-03-261-2/+2
* change a few uses of the threading APIsBenjamin Peterson2008-08-181-1/+1
* give the threading API PEP 8 namesBenjamin Peterson2008-06-111-1/+1
* socketserver renaming reversal part 3: move the module into the rightGeorg Brandl2008-05-241-29/+29
* Updated all import statements to use the new socketserver module name.Alexandre Vassalotti2008-05-121-29/+29
* - Issue #2550: The approach used by client/server code for obtaining portsTrent Nelson2008-04-081-1/+1
* Try to prevent the alarm going off early in tearDownNeal Norwitz2008-03-231-1/+1
* Revert r61650; the intent of this commit was to try and address alarm failure...Trent Nelson2008-03-201-4/+1
* Bump the SIGALM delay from 3 seconds to 20 seconds, mainly in an effort to se...Trent Nelson2008-03-191-1/+4
* Progress on issue #1193577 by adding a polling .shutdown() method toJeffrey Yasskin2008-03-071-47/+29
* Fix test_socketserver on Windows after r61099 added several signal.alarm()Jeffrey Yasskin2008-03-051-3/+7
* Prevent SocketServer.ForkingMixIn from waiting on child processes that itJeffrey Yasskin2008-02-281-10/+26
* Speed test_socketserver up from 28.739s to 0.226s, simplify the logic, and makeJeffrey Yasskin2008-02-281-109/+108
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+0
* Let test_socketserver pass on win32, which does not have AF_UNIX sockets.Amaury Forgeot d'Arc2008-02-031-7/+8
* Wait for a delay before reaping children -- this should fix theGeorg Brandl2008-02-031-1/+2
* Rewrite test_socketserver as unittest, written for GHOP by Benjamin Petersen.Georg Brandl2008-02-021-146/+177
* Reap children before the test starts so hopefully SocketServerNeal Norwitz2007-08-261-0/+1
* Fix a race condition in this test -- instead of assuming that it will takeGuido van Rossum2007-04-041-1/+5
* Convert an assert to a raise so it works even in the presence of -O.Collin Winter2007-03-101-2/+4
* Bug #1531963: Make SocketServer.TCPServer's server_address always be equal to...Collin Winter2007-03-101-0/+1
* Fix the test for SocketServer so it should pass on cygwin and not failNeal Norwitz2006-08-151-0/+9
* Add new utility function, reap_children(), to test_support. This shouldNeal Norwitz2006-06-291-1/+3
* Fix the socket tests so they can be run concurrently. Backport candidateNeal Norwitz2006-06-121-1/+25
* Fixes for AF_UNIX support on OS/2:Andrew MacIntyre2004-04-111-4/+19
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-1/+1
* EMX fork() emulation not good enough to cope with test_socketserverAndrew MacIntyre2003-01-021-2/+2
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-2/+2
* Use sendall() in the stream test instead of send().Guido van Rossum2001-10-291-1/+1