PY-48665 Disable f-string-like completion in literal string patterns

Since f-strings are not supported inside patterns.

GitOrigin-RevId: f96b8b6e999c893930203f933c6f55aec6e60869
This commit is contained in:
Mikhail Golubev
2021-06-17 20:08:03 +00:00
committed by intellij-monorepo-bot
parent 9247e2eb84
commit 09c9fc2898
3 changed files with 12 additions and 2 deletions
@@ -0,0 +1,4 @@
my_expr = 42
match my_expr:
case '{my_e<caret>':
pass