editors/DataTypeEditor.py
changeset 2439 f0a040f1de1b
parent 2432 dbc065a2f7a5
child 2450 5024c19ca8f0
equal deleted inserted replaced
2438:0f2e5303f212 2439:f0a040f1de1b
    42 
    42 
    43 # -------------------------------------------------------------------------------
    43 # -------------------------------------------------------------------------------
    44 #                                    Helpers
    44 #                                    Helpers
    45 # -------------------------------------------------------------------------------
    45 # -------------------------------------------------------------------------------
    46 
    46 
    47 DIMENSION_MODEL = re.compile("([0-9]+)\.\.([0-9]+)$")
    47 DIMENSION_MODEL = re.compile(r"([0-9]+)\.\.([0-9]+)$")
    48 
    48 
    49 
    49 
    50 def AppendMenu(parent, help, id, kind, text):
    50 def AppendMenu(parent, help, id, kind, text):
    51     parent.Append(help=help, id=id, kind=kind, text=text)
    51     parent.Append(help=help, id=id, kind=kind, text=text)
    52 
    52