manager: tidy up repr, leave out keys and some other fields
This commit is contained in:
		
							parent
							
								
									b538dd6758
								
							
						
					
					
						commit
						64618bcb64
					
				| 
						 | 
					@ -90,13 +90,13 @@ def make_side():
 | 
				
			||||||
@attrs(hash=True)
 | 
					@attrs(hash=True)
 | 
				
			||||||
@implementer(IDilationManager)
 | 
					@implementer(IDilationManager)
 | 
				
			||||||
class Manager(object):
 | 
					class Manager(object):
 | 
				
			||||||
    _S = attrib(validator=provides(ISend))
 | 
					    _S = attrib(validator=provides(ISend), repr=False)
 | 
				
			||||||
    _my_side = attrib(validator=instance_of(type(u"")))
 | 
					    _my_side = attrib(validator=instance_of(type(u"")))
 | 
				
			||||||
    _transit_key = attrib(validator=instance_of(bytes))
 | 
					    _transit_key = attrib(validator=instance_of(bytes), repr=False)
 | 
				
			||||||
    _transit_relay_location = attrib(validator=optional(instance_of(str)))
 | 
					    _transit_relay_location = attrib(validator=optional(instance_of(str)))
 | 
				
			||||||
    _reactor = attrib()
 | 
					    _reactor = attrib(repr=False)
 | 
				
			||||||
    _eventual_queue = attrib()
 | 
					    _eventual_queue = attrib(repr=False)
 | 
				
			||||||
    _cooperator = attrib()
 | 
					    _cooperator = attrib(repr=False)
 | 
				
			||||||
    _no_listen = False  # TODO
 | 
					    _no_listen = False  # TODO
 | 
				
			||||||
    _tor = None  # TODO
 | 
					    _tor = None  # TODO
 | 
				
			||||||
    _timing = None  # TODO
 | 
					    _timing = None  # TODO
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user