Home
last modified time | relevance | path

Searched refs:ThreadingMixIn (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Lib/
Dsocketserver.py664 class ThreadingMixIn: class
708 class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass
709 class ThreadingTCPServer(ThreadingMixIn, TCPServer): pass
719 class ThreadingUnixStreamServer(ThreadingMixIn, UnixStreamServer): pass
721 class ThreadingUnixDatagramServer(ThreadingMixIn, UnixDatagramServer): pass
/third_party/python/Doc/library/
Dsocketserver.rst47 :class:`ForkingMixIn` and :class:`ThreadingMixIn` mix-in classes can be used to
62 When inheriting from :class:`ThreadingMixIn` for threaded connection behavior,
64 shutdown. The :class:`ThreadingMixIn` class defines an attribute
68 Python will not exit until all threads created by :class:`ThreadingMixIn` have
102 ThreadingMixIn
108 class ThreadingUDPServer(ThreadingMixIn, UDPServer):
122 :meth:`socketserver.ThreadingMixIn.server_close` waits until all non-daemon
124 :attr:`socketserver.ThreadingMixIn.block_on_close` attribute is false. Use
126 :data:`ThreadingMixIn.daemon_threads` to ``True`` to not wait until threads
132 :meth:`socketserver.ThreadingMixIn.server_close` now waits until all
[all …]
Dhttp.server.rst45 requests by using the :class:`~socketserver.ThreadingMixIn`. This
/third_party/grpc/tools/run_tests/python_utils/
Dport_server.py21 from six.moves.socketserver import ThreadingMixIn
202 class ThreadedHTTPServer(ThreadingMixIn, HTTPServer):
/third_party/python/Lib/test/
Dtest_socketserver.py281 class MyServer(socketserver.ThreadingMixIn, socketserver.TCPServer):
375 class ThreadingErrorTestServer(socketserver.ThreadingMixIn,
510 class MyServer(socketserver.ThreadingMixIn, socketserver.TCPServer):
/third_party/ninja/src/
Dbrowse.py213 class HTTPServer(socketserver.ThreadingMixIn, httpserver.HTTPServer):
/third_party/python/Misc/NEWS.d/
D3.7.0b5.rst269 ``ThreadingMixIn`` classes of :mod:`socketserver`.
D3.10.0a4.rst731 Fixed memory leak in ``socketserver.ThreadingMixIn`` introduced in Python
D3.7.0a1.rst1607 socketserver.ThreadingMixIn now keeps a list of non-daemonic threads to wait
D3.8.0a1.rst4681 ``ThreadingMixIn`` classes of :mod:`socketserver`.
/third_party/python/Lib/http/
Dserver.py144 class ThreadingHTTPServer(socketserver.ThreadingMixIn, HTTPServer):
/third_party/python/Doc/whatsnew/
D3.7.rst1301 :meth:`socketserver.ThreadingMixIn.server_close` now waits until all non-daemon
1306 :class:`socketserver.ForkingMixIn` and :class:`socketserver.ThreadingMixIn`
2264 * :meth:`socketserver.ThreadingMixIn.server_close` now waits until all
2266 :attr:`socketserver.ThreadingMixIn.block_on_close` class attribute to
/third_party/python/Misc/
DHISTORY9057 - Issue #13140: Fix the daemon_threads attribute of ThreadingMixIn.
22810 the ThreadingMixIn class in SocketServer.py to make it explicit that
23946 - The SocketServer.ThreadingMixIn class now closes the request after
28389 new threaded versions of Unix Server classes, using the ThreadingMixIn