mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Code style fixup: No need for double ((parenthesis)) and use {} on an if else.
This commit is contained in:
		
						commit
						08d5ca6cd4
					
				
					 1 changed files with 5 additions and 4 deletions
				
			
		|  | @ -1522,7 +1522,7 @@ array_fromunicode(arrayobject *self, PyObject *args) | |||
|     if (!PyArg_ParseTuple(args, "u#:fromunicode", &ustr, &n)) | ||||
|         return NULL; | ||||
|     typecode = self->ob_descr->typecode; | ||||
|     if ((typecode != 'u')) { | ||||
|     if (typecode != 'u') { | ||||
|         PyErr_SetString(PyExc_ValueError, | ||||
|             "fromunicode() may only be called on " | ||||
|             "unicode type arrays"); | ||||
|  | @ -1554,7 +1554,7 @@ array_tounicode(arrayobject *self, PyObject *unused) | |||
| { | ||||
|     char typecode; | ||||
|     typecode = self->ob_descr->typecode; | ||||
|     if ((typecode != 'u')) { | ||||
|     if (typecode != 'u') { | ||||
|         PyErr_SetString(PyExc_ValueError, | ||||
|              "tounicode() may only be called on unicode type arrays"); | ||||
|         return NULL; | ||||
|  | @ -2177,10 +2177,11 @@ array_repr(arrayobject *a) | |||
|     if (len == 0) { | ||||
|         return PyUnicode_FromFormat("array('%c')", (int)typecode); | ||||
|     } | ||||
|     if (typecode == 'u') | ||||
|     if (typecode == 'u') { | ||||
|         v = array_tounicode(a, NULL); | ||||
|     else | ||||
|     } else { | ||||
|         v = array_tolist(a, NULL); | ||||
|     } | ||||
| 
 | ||||
|     s = PyUnicode_FromFormat("array('%c', %R)", (int)typecode, v); | ||||
|     Py_DECREF(v); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Gregory P. Smith
						Gregory P. Smith