This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients Numerlor, serhiy.storchaka, terry.reedy
Date 2020-04-10.20:09:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1586549367.95.0.316735623596.issue40199@roundup.psfhosted.org>
In-reply-to
Content
On Win 10, with recently compiled 3.7.7+ and 3.9.0a5+, I get 4 warnings also.

>>> import warnings
>>> compile("'\d'", "<string>", "eval")
<stdin>:1: DeprecationWarning: invalid escape sequence \d
<string>:1: DeprecationWarning: invalid escape sequence \d
<code object <module> at 0x00A65DC0, file "<string>", line 1>
>>> warnings.resetwarnings()
>>> compile("'\d'", "<string>", "eval")
<stdin>:1: DeprecationWarning: invalid escape sequence \d
<string>:1: DeprecationWarning: invalid escape sequence \d
<code object <module> at 0x00A66190, file "<string>", line 1>

Numerior, what 3.8 binaries are you running?  I suspect that this should be closed as 'out of date'.
History
Date User Action Args
2020-04-10 20:09:27terry.reedysetrecipients: + terry.reedy, serhiy.storchaka, Numerlor
2020-04-10 20:09:27terry.reedysetmessageid: <1586549367.95.0.316735623596.issue40199@roundup.psfhosted.org>
2020-04-10 20:09:27terry.reedylinkissue40199 messages
2020-04-10 20:09:27terry.reedycreate