You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But here +-d means all characters between + and d, which includes, among others, all uppercase letters and a bunch of punctuation characters.
If you want - to be meant literally, you need to escape it, or place it as the first or last character inside [].
numpy/f2py/crackfortran.py
contains the following code:But here
+-d
means all characters between+
andd
, which includes, among others, all uppercase letters and a bunch of punctuation characters.If you want
-
to be meant literally, you need to escape it, or place it as the first or last character inside[]
.The dubious regexp was found using pydiatra.
The text was updated successfully, but these errors were encountered: