Changeset - 8856efb6516c
[Not reviewed]
default
0 1 0
drewp - 23 years ago 2002-07-04 10:04:18

dmx out example node and types
1 file changed with 1 insertions and 1 deletions:
Port.py
1
1
0 comments (0 inline, 0 general)
Port.py
Show inline comments
 
@@ -12,13 +12,13 @@ class Port:
 
        '''Alias for __getitem___'''
 
        return self[key]
 
    def __getitem__(self, key):
 
        pass
 

	
 
class InputPort(Port):
 
    def __init__(self, required=1, maxpins=ANY):
 
    def __init__(self, allowedtype, required=1, maxpins=ANY):
 
        self.pins = []
 

	
 
class OutputPort(Port):
 
    def __init__(self):
 
        self.pins = []
 

	
0 comments (0 inline, 0 general)