mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Vestige of code from removing backticks.
Closes patch #1500623. Thanks, Collin Winter.
This commit is contained in:
		
							parent
							
								
									0919a1a07b
								
							
						
					
					
						commit
						ecfd0b2f3b
					
				
					 1 changed files with 0 additions and 14 deletions
				
			
		|  | @ -203,20 +203,6 @@ def getChildNodes(self): | ||||||
|     def __repr__(self): |     def __repr__(self): | ||||||
|         return "AugAssign(%s, %s, %s)" % (repr(self.node), repr(self.op), repr(self.expr)) |         return "AugAssign(%s, %s, %s)" % (repr(self.node), repr(self.op), repr(self.expr)) | ||||||
| 
 | 
 | ||||||
| class Backquote(Node): |  | ||||||
|     def __init__(self, expr, lineno=None): |  | ||||||
|         self.expr = expr |  | ||||||
|         self.lineno = lineno |  | ||||||
| 
 |  | ||||||
|     def getChildren(self): |  | ||||||
|         return self.expr, |  | ||||||
| 
 |  | ||||||
|     def getChildNodes(self): |  | ||||||
|         return self.expr, |  | ||||||
| 
 |  | ||||||
|     def __repr__(self): |  | ||||||
|         return "Backquote(%s)" % (repr(self.expr),) |  | ||||||
| 
 |  | ||||||
| class Bitand(Node): | class Bitand(Node): | ||||||
|     def __init__(self, nodes, lineno=None): |     def __init__(self, nodes, lineno=None): | ||||||
|         self.nodes = nodes |         self.nodes = nodes | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Brett Cannon
						Brett Cannon