py_ext/PythonFileCTNMixin.py
changeset 1853 47a3f39bead0
parent 1850 614396cbffbf
child 1878 fb73a6b6622d
equal deleted inserted replaced
1852:70c1cc354a8f 1853:47a3f39bead0
    21 #
    21 #
    22 # You should have received a copy of the GNU General Public License
    22 # You should have received a copy of the GNU General Public License
    23 # along with this program; if not, write to the Free Software
    23 # along with this program; if not, write to the Free Software
    24 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    24 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    25 
    25 
       
    26 
       
    27 from __future__ import absolute_import
    26 import os
    28 import os
    27 import re
    29 import re
    28 import util.paths as paths
    30 import util.paths as paths
    29 
    31 
    30 from xmlclass import GenerateParserFromXSD
    32 from xmlclass import GenerateParserFromXSD
    31 
    33 
    32 from CodeFileTreeNode import CodeFile
    34 from CodeFileTreeNode import CodeFile
    33 from PythonEditor import PythonEditor
    35 from py_ext.PythonEditor import PythonEditor
    34 
    36 
    35 
    37 
    36 class PythonFileCTNMixin(CodeFile):
    38 class PythonFileCTNMixin(CodeFile):
    37 
    39 
    38     CODEFILE_NAME = "PyFile"
    40     CODEFILE_NAME = "PyFile"