mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	bpo-29617: Remove Python 3.3 support from asyncio (GH-232)
This commit is contained in:
		
							parent
							
								
									f6448e5d65
								
							
						
					
					
						commit
						3e2ad8ec61
					
				
					 12 changed files with 65 additions and 223 deletions
				
			
		|  | @ -2,17 +2,5 @@ | |||
| 
 | ||||
| import sys | ||||
| 
 | ||||
| PY34 = sys.version_info >= (3, 4) | ||||
| PY35 = sys.version_info >= (3, 5) | ||||
| PY352 = sys.version_info >= (3, 5, 2) | ||||
| 
 | ||||
| 
 | ||||
| def flatten_list_bytes(list_of_data): | ||||
|     """Concatenate a sequence of bytes-like objects.""" | ||||
|     if not PY34: | ||||
|         # On Python 3.3 and older, bytes.join() doesn't handle | ||||
|         # memoryview. | ||||
|         list_of_data = ( | ||||
|             bytes(data) if isinstance(data, memoryview) else data | ||||
|             for data in list_of_data) | ||||
|     return b''.join(list_of_data) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 INADA Naoki
						INADA Naoki