mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 11:49:12 +00:00 
			
		
		
		
	Fix typo in function name.
This commit is contained in:
		
							parent
							
								
									ffb94ae46f
								
							
						
					
					
						commit
						f6d6347fc0
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -267,7 +267,7 @@ expect a function argument.
 | 
				
			||||||
                  return resolve_attr(obj, attr)
 | 
					                  return resolve_attr(obj, attr)
 | 
				
			||||||
          else:
 | 
					          else:
 | 
				
			||||||
              def g(obj):
 | 
					              def g(obj):
 | 
				
			||||||
                  return tuple(resolve_att(obj, attr) for attr in items)
 | 
					                  return tuple(resolve_attr(obj, attr) for attr in items)
 | 
				
			||||||
          return g
 | 
					          return g
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      def resolve_attr(obj, attr):
 | 
					      def resolve_attr(obj, attr):
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue