I know from this question that, nothing to repeat
in a regex expression, is a known bug of python.
But I must compile this unicode expression
re.compile(u'\U0000002A \U000020E3')
as a unique character. This is an emoticon and is a unique character. Python understand this string as u'* \\u20e3'
and rise me 'nothing to repeat' error.
I am looking around but I can't find any solution. Does exist any work around?