LogicodeLang / Logicode

An esoteric language based on logic gates.
MIT License
12 stars 3 forks source link

Use re.Pattern due to removal of re._pattern_type #30

Open hiromi-mi opened 3 years ago

hiromi-mi commented 3 years ago

Hello.

Python 3.7 removed re._pattern_type ( see python/cpython#1646 ) and added re.Pattern type instead.

To support python 3.7 (or later), I rewrited to use re.Pattern and added rollback.

Thanks!