spyder icon indicating copy to clipboard operation
spyder copied to clipboard

Other incorrect syntax highlighting of the words "match" and "case" outside of match/case structures

Open ptth222 opened this issue 6 months ago • 1 comments

Issue Report Checklist

  • [x] Searched the issues page for similar reports
  • [ ] Read the relevant sections of the Spyder Troubleshooting Guide and followed its advice
  • [ ] Reproduced the issue after updating with conda update spyder (or pip, if not using Anaconda)
  • [ ] Could not reproduce inside jupyter qtconsole (if console-related)
  • [x] Tried basic troubleshooting (if a bug/error)
    • [x] Restarted Spyder
    • [ ] Reset preferences with spyder --reset
    • [ ] Reinstalled the latest version of Anaconda
    • [ ] Tried the other applicable steps from the Troubleshooting Guide
  • [x] Completed the Problem Description, Steps to Reproduce and Version sections below

Problem Description

"match" and "case" are highlighted even as part of variable names. This issue is a continuation or reopening of #21239. The only change is that the incorrect highlighting has additional conditions. The thing to reproduce that I have found, there could be more conditions, is that there must be a colon, ":", in the line with "match" or "case".

What steps reproduce the problem?

  1. open Spyder in dark mode (I did not check light mode)
  2. open new .py file
  3. type a word with "match" in it and then follow it with a colon, ":".
re_match = "asdf"           # Not highlighted
if re_match == "asdf":      # Highlighted
    pass

What is the expected output? What do you see instead?

Expected output is no highlighting of "match". I see highlighting of "match".

Versions

  • Spyder version: 5.5.5
  • Python version: 3.10.5
  • Qt version: 5.15.2
  • PyQt version: 5.15.7
  • Operating System name/version: Windows 10

Dependencies

# Mandatory:
atomicwrites >=1.2.0             :  1.4.1 (OK)
chardet >=2.0.0                  :  4.0.0 (OK)
cloudpickle >=0.5.0              :  2.2.0 (OK)
cookiecutter >=1.6.0             :  2.1.1 (OK)
diff_match_patch >=20181111      :  20200713 (OK)
intervaltree >=3.0.2             :  3.1.0 (OK)
IPython >=8.13.0,<9.0.0,!=8.17.1 :  8.21.0 (OK)
jedi >=0.17.2,<0.20.0            :  0.18.1 (OK)
jellyfish >=0.7                  :  0.9.0 (OK)
jsonschema >=3.2.0               :  4.18.6 (OK)
keyring >=17.0.0                 :  23.9.1 (OK)
nbconvert >=4.0                  :  7.0.0 (OK)
numpydoc >=0.6.0                 :  1.4.0 (OK)
paramiko >=2.4.0                 :  2.11.0 (OK)
parso >=0.7.0,<0.9.0             :  0.8.3 (OK)
pexpect >=4.4.0                  :  4.8.0 (OK)
pickleshare >=0.4                :  0.7.5 (OK)
psutil >=5.3                     :  5.9.2 (OK)
pygments >=2.0                   :  2.13.0 (OK)
pylint >=3.1,<4                  :  3.2.6 (OK)
pylint_venv >=3.0.2              :  3.0.3 (OK)
pyls_spyder >=0.4.0              :  0.4.0 (OK)
pylsp >=1.11.0,<1.12.0           :  1.11.0 (OK)
pylsp_black >=2.0.0,<3.0.0       :  2.0.0 (OK)
qdarkstyle >=3.2.0,<3.3.0        :  3.2.3 (OK)
qstylizer >=0.2.2                :  0.2.2 (OK)
qtawesome >=1.3.1,<1.4.0         :  1.3.1 (OK)
qtconsole >=5.5.1,<5.6.0         :  5.5.1 (OK)
qtpy >=2.1.0                     :  2.4.1 (OK)
rtree >=0.9.7                    :  1.0.0 (OK)
setuptools >=49.6.0              :  70.2.0 (OK)
sphinx >=0.6.6                   :  5.1.1 (OK)
spyder_kernels >=2.5.2,<2.6.0    :  2.5.2 (OK)
textdistance >=4.2.0             :  4.4.0 (OK)
three_merge >=0.1.1              :  0.1.1 (OK)
watchdog >=0.10.3                :  2.1.9 (OK)
zmq >=24.0.0                     :  25.1.2 (OK)

# Optional:
cython >=0.21                    :  3.0.0a11 (OK)
matplotlib >=3.0.0               :  3.5.3 (OK)
numpy >=1.7                      :  1.23.5 (OK)
pandas >=1.1.1                   :  2.2.2 (OK)
scipy >=0.17.0                   :  1.9.1 (OK)
sympy >=0.7.3                    :  None (NOK)

ptth222 avatar Jul 31 '24 03:07 ptth222