Files
openide/python/testData/completion/fStringLikeCompletionNotAvailableInLiteralPatterns.py
Mikhail Golubev 09c9fc2898 PY-48665 Disable f-string-like completion in literal string patterns
Since f-strings are not supported inside patterns.

GitOrigin-RevId: f96b8b6e999c893930203f933c6f55aec6e60869
2021-06-17 20:08:03 +00:00

4 lines
65 B
Python

my_expr = 42
match my_expr:
case '{my_e<caret>':
pass