Print ports in config.ini as well.

--HG--
extra : convert_revision : 703d3a57250613315735709de8f40a9956cee6e2
This commit is contained in:
Steve Reinhardt
2006-09-05 12:22:47 -07:00
parent c39aea440c
commit 89f0bc9e4c
2 changed files with 21 additions and 0 deletions

View File

@@ -761,6 +761,12 @@ class PortRef(object):
self.peer = None # not associated with another port yet
self.ccConnected = False # C++ port connection done?
def __str__(self):
ext = ''
if self.isVec:
ext = '[%d]' % self.index
return '%s.%s%s' % (self.simobj.path(), self.name, ext)
# Set peer port reference. Called via __setattr__ as a result of
# a port assignment, e.g., "obj1.port1 = obj2.port2".
def setPeer(self, other):