mirror of
				https://github.com/python/cpython.git
				synced 2025-11-01 06:01:29 +00:00 
			
		
		
		
	Make socket.getservbyname test optional on socket module having that
attribute. Jython does not have this function. Closes SF patch #403667.
This commit is contained in:
		
							parent
							
								
									6a12d8d3b4
								
							
						
					
					
						commit
						6870bba459
					
				
					 1 changed files with 6 additions and 5 deletions
				
			
		|  | @ -83,11 +83,12 @@ def missing_ok(str): | |||
| else: | ||||
|     print 'FQDN not found' | ||||
| 
 | ||||
| print socket.getservbyname('telnet', 'tcp') | ||||
| try: | ||||
|     socket.getservbyname('telnet', 'udp') | ||||
| except socket.error: | ||||
|     pass | ||||
| if hasattr(socket, 'getservbyname'): | ||||
|     print socket.getservbyname('telnet', 'tcp') | ||||
|     try: | ||||
|         socket.getservbyname('telnet', 'udp') | ||||
|     except socket.error: | ||||
|         pass | ||||
| 
 | ||||
| 
 | ||||
| canfork = hasattr(os, 'fork') | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Barry Warsaw
						Barry Warsaw