py_ext/py_ext.py
changeset 731 4fc681ed0c61
parent 728 e0424e96e3fd
child 738 413946c04c87
equal deleted inserted replaced
730:4480b7da6bea 731:4fc681ed0c61
     1 import os
     1 import os
     2 from POULibrary import POULibrary
     2 from POULibrary import POULibrary
     3 from PythonFileCTNMixin import PythonFileCTNMixin
     3 from PythonFileCTNMixin import PythonFileCTNMixin
     4 
     4 
     5 class PythonLibrary(POULibrary):
     5 class PythonLibrary(POULibrary):
     6     def GetName(self):
       
     7         return "Python"
       
     8 
       
     9     def GetLibraryPath(self):
     6     def GetLibraryPath(self):
    10         return os.path.join(os.path.split(__file__)[0], "pous.xml") 
     7         return os.path.join(os.path.split(__file__)[0], "pous.xml") 
    11 
     8 
    12     def Generate_C(self, buildpath, varlist, IECCFLAGS):
     9     def Generate_C(self, buildpath, varlist, IECCFLAGS):
    13         
    10