mirror of
				https://github.com/python/cpython.git
				synced 2025-11-01 06:01:29 +00:00 
			
		
		
		
	Fix bug found by kjpylint; change doc string to avoid "(" in column 1.
This commit is contained in:
		
							parent
							
								
									f0f7aad30f
								
							
						
					
					
						commit
						db2b70cb99
					
				
					 1 changed files with 5 additions and 5 deletions
				
			
		|  | @ -34,10 +34,10 @@ | |||
| 	| UDPServer |------->| UnixDatagramServer | | ||||
| 	+-----------+        +--------------------+ | ||||
| 
 | ||||
| (Note that UnixDatagramServer derives from UDPServer, not from | ||||
| Note that UnixDatagramServer derives from UDPServer, not from | ||||
| UnixStreamServer -- the only difference between an IP and a Unix | ||||
| stream server is the address family, which is simply repeated in both | ||||
| unix server classes.) | ||||
| unix server classes. | ||||
| 
 | ||||
| Forking and threading versions of each type of server can be created | ||||
| using the ForkingServer and ThreadingServer mix-in classes.  For | ||||
|  | @ -45,8 +45,8 @@ | |||
| 
 | ||||
| 	class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass | ||||
| 
 | ||||
| (The Mix-in class must come first, since it overrides a method defined | ||||
| in UDPServer!) | ||||
| The Mix-in class must come first, since it overrides a method defined | ||||
| in UDPServer! | ||||
| 
 | ||||
| To implement a service, you must derive a class from | ||||
| BaseRequestHandler and redefine its handle() method.  You can then run | ||||
|  | @ -266,7 +266,7 @@ class UDPServer(TCPServer): | |||
|     max_packet_size = 8192 | ||||
| 
 | ||||
|     def get_request(self): | ||||
| 	return self.socket.recvfrom(max_packet_size) | ||||
| 	return self.socket.recvfrom(self.max_packet_size) | ||||
| 
 | ||||
| 
 | ||||
| if hasattr(socket, 'AF_UNIX'): | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Guido van Rossum
						Guido van Rossum