mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	Fix typo.
This commit is contained in:
		
							parent
							
								
									971f48320b
								
							
						
					
					
						commit
						6ef18f4fa3
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -30,7 +30,7 @@ def wrapper(self): | |||
|         wrapper.__module__ = getattr(user_function, '__module__') | ||||
|         wrapper.__doc__ = getattr(user_function, '__doc__') | ||||
|         wrapper.__name__ = getattr(user_function, '__name__') | ||||
|         wrapper.__name__ = getattr(user_function, '__annotations__', {}) | ||||
|         wrapper.__annotations__ = getattr(user_function, '__annotations__', {}) | ||||
|         return wrapper | ||||
| 
 | ||||
|     return decorating_function | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Raymond Hettinger
						Raymond Hettinger