19 Commits (41bade96a4d1dcd35bbba79c2eabe052d02756a4)

Author SHA1 Message Date
Benjamin Peterson f847393308 backout 8b384de4e780, so a proper fix can be considered (#5715) 15 years ago
Benjamin Peterson a7cdb0f218 generally, sockets should be closed after they're used 15 years ago
Charles-François Natali 7b54e7562d Issue #5715: In socketserver, close the server socket in the child process. 15 years ago
Antoine Pitrou e312391529 Merged revisions 80487,80489 via svnmerge from 16 years ago
Antoine Pitrou 3bcba8e288 Merged revisions 80484 via svnmerge from 16 years ago
Kristján Valur Jónsson a5b47cea76 http://bugs.python.org/issue6382 17 years ago
Kristján Valur Jónsson 200cfd00ab http://bugs.python.org/issue6381 17 years ago
Kristján Valur Jónsson b8e138aa23 Revert last change, which was incorrect. 17 years ago
Kristján Valur Jónsson 8c4f4178cb http://bugs.python.org/issue6381 17 years ago
Kristján Valur Jónsson 985fc6a304 http://bugs.python.org/issue6267 17 years ago
Kristján Valur Jónsson 41a5750656 http://bugs.python.org/issue6192 17 years ago
Benjamin Peterson ad3d5c2235 Merged revisions 69803-69805,69840,69901,69905,69907,69924,69927,69987 via svnmerge from 17 years ago
Benjamin Peterson 8b6dc5cfab kill another set_daemon instance 18 years ago
Benjamin Peterson b03ca4bc68 fix more threading API related bugs 18 years ago
Alexandre Vassalotti ce261952e6 Renamed the SocketServer module to 'socketserver'. 18 years ago
Christian Heimes dd15f6c315 Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from 18 years ago
Christian Heimes 70e7ea23f1 Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61083,61085,61092-61097,61103-61108 via svnmerge from 18 years ago
Christian Heimes a156e09b19 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60845 via svnmerge from 18 years ago
Georg Brandl fceab5a385 Merged revisions 60080-60089,60091-60093 via svnmerge from 18 years ago
Guido van Rossum 15863ea07a SF patch# 1764815 by Paul Colomiets. 19 years ago
Guido van Rossum e7ba495627 Merged revisions 55631-55794 via svnmerge from 19 years ago
Guido van Rossum 68937b4cbc Change some uses of cStringIO.StringIO to io.StringIO. 19 years ago
Guido van Rossum d8faa3654c Merged revisions 53952-54987 via svnmerge from 19 years ago
Guido van Rossum be19ed77dd Fix most trivially-findable print statements. 19 years ago
Georg Brandl ca5feabac2 bug [ 957505 ] SocketServer module documentation misleading 21 years ago
Guido van Rossum ebbffd42f3 Fixed a typo in docstring I happened upon. 21 years ago
Raymond Hettinger a617271dbd Use cStringIO where available. 21 years ago
Barry Warsaw b97f0b7654 TCPServer: Fixed typo in class docstring. 23 years ago
Barry Warsaw 3aaad5079b TCPServer: Fixed typo in class docstring. 23 years ago
Anthony Baxter 4cedc1e84e Clearing out old patch queue. Patch #558547, make SocketServer more 23 years ago
Fred Drake 132e0e824b Use False instead of 0. 24 years ago
Martin v. Löwis f86e8ef33e Patch #550765: Add daemon_threads flag. 24 years ago
Raymond Hettinger c8f8034512 Replace 0 with False to match working in documentation. SF 599681. 24 years ago
Guido van Rossum beae477767 SF bug #543318 (Frank J. Tobin). 24 years ago
Tim Peters bc0e910826 Convert a pile of obvious "yes/no" functions to return bool. 24 years ago
Guido van Rossum 83c3281826 Apply the first chunk of the second patch from SF bug #471720: 25 years ago
Guido van Rossum a5343ccd28 SF bug #471720: ThreadingMixIn/TCPServer forgets close 25 years ago
Skip Montanaro ae3b1258e4 remove empty __del__ method from BaseRequestHandler to avoid cyclic garbage 25 years ago
Martin v. Löwis a43c2f845e Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients. 25 years ago
Guido van Rossum 7de4d645a5 IMPORTANT FIX: This should definitely go into the 2.1.1 release!!! 25 years ago
Ka-Ping Yee 285a7e59f3 Add a close_request method to the BaseServer so that the TCPServer class 25 years ago
Skip Montanaro e99d5ea25b added __all__ lists to a number of Python modules 25 years ago
Guido van Rossum 10b04180a0 Bump __version__; add authorship note for the BaseServer patch. 25 years ago
Guido van Rossum 90cb9067b8 SF Patch #102980, by Luke Kenneth Casson Leighton: BaseServer class 25 years ago
Moshe Zadka dd802208a7 Changing allow_reuse_address's default value, and documenting it. 26 years ago
Guido van Rossum 01fed4d4e6 In class StreamRequestHandler, make the default buffering for rfile 26 years ago
Guido van Rossum e3c7a5fbf5 Add class variable allow_reuse_address in TCPServer -- if nonzero, the 26 years ago
Jeremy Hylton 75260275fe update to use threading module instead of thread. 27 years ago
Guido van Rossum 2ab455a8fa Another patch from Andy Dustman: 27 years ago
Guido van Rossum bfadac00ef In collect_children(), put a try-except around os.waitpid() because it 27 years ago