syaml_int type should use int.__repr__ rather than str.__repr__ (#13487)
This commit is contained in:
		
				
					committed by
					
						
						Todd Gamblin
					
				
			
			
				
	
			
			
			
						parent
						
							94de86aeb8
						
					
				
				
					commit
					835df4b2e4
				
			@@ -47,7 +47,7 @@ class syaml_str(str):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class syaml_int(int):
 | 
					class syaml_int(int):
 | 
				
			||||||
    __repr__ = str.__repr__
 | 
					    __repr__ = int.__repr__
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: mapping from syaml type -> primitive type
 | 
					#: mapping from syaml type -> primitive type
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user