mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
2faa3ed6af
Python 3.6 deprecated using regex flag syntax (?x) to set flags in the middle of a pattern. Now you can only use it at the start of a pattern. Fortunately that same release added a new scoped-flag syntax, (?x:). (Wait, you say, it looks like our code *does* set flags at the start of the pattern? That's true, but the markdown module includes our regex in the middle of a larger one, so it's not actually at the start.) Fixes this warning (and a couple similar ones): DeprecationWarning: Flags not at the start of the expression '^(.?)(?x) \[ ([^]]' (truncated) self.compiled_re = re.compile(r"^(.?)%s(.)$" % pattern |
||
---|---|---|
.. | ||
__init__.py | ||
dependencies.py | ||
load.py | ||
markdown.py | ||
multilang.py | ||
oracle.py | ||
tables.py | ||
translations.py | ||
util.py |