http://mmgen-wallet.i2p/project/mmgen/mmgen-wallet/commit/88f204a0bd67fa753f04ff6bb09e90d9579794bd
Assuming { self . name } is running ' ) return True self . httpd = make_server ( ' localhost ' , self . port , self . application , handler_class = SilentRequestHandler ) import threading t = threading . Thread ( target = self . httpd . serve_forever , name = f ' { self . name } thread ' ) t . daemon = True t . start ( ) def stop ( self ) : self . httpd . server_close ( ) def application ( self , environ , start_response ) : method = environ [ ' REQUEST_METHOD ' ]...