| 
									
										
										
										
											2007-12-10 15:50:56 +00:00
										 |  |  | /* Fast unicode equal function optimized for dictobject.c and setobject.c */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Return 1 if two unicode objects are equal, 0 if not.
 | 
					
						
							|  |  |  |  * unicode_eq() is called when the hash of two unicode objects is equal. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | Py_LOCAL_INLINE(int) | 
					
						
							|  |  |  | unicode_eq(PyObject *aa, PyObject *bb) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-03-09 20:49:52 +02:00
										 |  |  |     assert(PyUnicode_Check(aa)); | 
					
						
							|  |  |  |     assert(PyUnicode_Check(bb)); | 
					
						
							|  |  |  |     assert(PyUnicode_IS_READY(aa)); | 
					
						
							|  |  |  |     assert(PyUnicode_IS_READY(bb)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-13 20:18:52 +02:00
										 |  |  |     PyUnicodeObject *a = (PyUnicodeObject *)aa; | 
					
						
							|  |  |  |     PyUnicodeObject *b = (PyUnicodeObject *)bb; | 
					
						
							| 
									
										
										
										
											2007-12-10 15:50:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-28 07:41:54 +02:00
										 |  |  |     if (PyUnicode_GET_LENGTH(a) != PyUnicode_GET_LENGTH(b)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (PyUnicode_GET_LENGTH(a) == 0) | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2011-09-28 07:41:54 +02:00
										 |  |  |     if (PyUnicode_KIND(a) != PyUnicode_KIND(b)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     return memcmp(PyUnicode_1BYTE_DATA(a), PyUnicode_1BYTE_DATA(b), | 
					
						
							| 
									
										
										
										
											2011-10-07 20:55:35 +02:00
										 |  |  |                   PyUnicode_GET_LENGTH(a) * PyUnicode_KIND(a)) == 0; | 
					
						
							| 
									
										
										
										
											2007-12-10 15:50:56 +00:00
										 |  |  | } |