Global cache of already processed files
Definition at line 24 of file dlldep.py.
◆ __init__()
def dlldep.Cache.__init__ |
( |
|
self | ) |
|
◆ add()
def dlldep.Cache.add |
( |
|
self, |
|
|
|
shlib |
|
) |
| |
Add file to local and global cache
Definition at line 34 of file dlldep.py.
35 """Add file to local and global cache"""
36 self.myfiles[shlib.lib] = shlib
37 Cache.files[shlib.lib] = shlib
◆ dot()
def dlldep.Cache.dot |
( |
|
self, |
|
|
|
code, |
|
|
|
style = {} |
|
) |
| |
Output a line of dot code
Definition at line 42 of file dlldep.py.
42 def dot(self, code, style={}):
43 """Output a line of dot code"""
46 for k,v
in style.items():
47 code +=
'%s="%s" ' % (k,v)
◆ writeDOT()
def dlldep.Cache.writeDOT |
( |
|
self, |
|
|
|
file |
|
) |
| |
Definition at line 39 of file dlldep.py.
39 def writeDOT(self, file):
40 for d
in self.dotsrc:
print (file, d, file=file)
◆ dotsrc
◆ files
◆ myfiles
◆ stats
The documentation for this class was generated from the following file: