mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 21:51:50 +00:00 
			
		
		
		
	There are places in Python which assume bytes have 8-bits. Formalize that a
bit by checking the value of UCHAR_MAX in Include/Python.h. There was a check in Objects/stringobject.c. Remove that. (Note that we don't define UCHAR_MAX if it's not defined as the old test did.)
This commit is contained in:
		
							parent
							
								
									66518bbb67
								
							
						
					
					
						commit
						ac4ea13a3a
					
				
					 2 changed files with 8 additions and 4 deletions
				
			
		|  | @ -21,6 +21,14 @@ | |||
| #error "limits.h is required by std C -- why isn't HAVE_LIMITS_H defined?" | ||||
| #endif | ||||
| 
 | ||||
| #ifndef UCHAR_MAX | ||||
| #error "Something's broken.  UCHAR_MAX should be defined in limits.h." | ||||
| #endif | ||||
| 
 | ||||
| #if UCHAR_MAX != 255 | ||||
| #error "Python's source code currently assumes 8-bit characters." | ||||
| #endif | ||||
| 
 | ||||
| #if defined(__sgi) && defined(WITH_THREAD) && !defined(_SGI_MP_SOURCE) | ||||
| #define _SGI_MP_SOURCE | ||||
| #endif | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Skip Montanaro
						Skip Montanaro