nilp0inter / cpe

CPE: Common Platform Enumeration for Python
GNU Lesser General Public License v3.0
92 stars 30 forks source link

Fix invalid/deprecated escape sequences #63

Closed agners closed 1 month ago

agners commented 3 months ago

There are a couple more invalid escape sequences. These are not meant to be Python string escape sequences, but literal backspace used for those regular expressions. Use the raw string prefix r"" for these strings.

agners commented 2 months ago

I've fixed a couple more SyntaxWarning.

agners commented 1 month ago

@creekorful gentle ping on this one. Would be nice to get rid of some more deprecation warnings :smile:

creekorful commented 1 month ago

@agners Thanks for your contribution!