self.username_editor.regexp=re.compile('^\w(?<=[^0_])[\w.-]{3,30}(?<=[^_.-])$',re.IGNORECASE)# in order to enable unicode characters add re.UNICODE to flags
self.username_editor.regexp=re.compile('^\w(?<=[^0_])[\w.-]{4,31}(?<=[^_.-])$',re.IGNORECASE)# in order to enable unicode characters add re.UNICODE to flags