PY-83336 update PyCharm built-in spell check dict (August)

(cherry picked from commit fa50c92a7d05790dea0322b0af53113c5759c323)

IJ-MR-172304

GitOrigin-RevId: 7f5447684942bcadd3a5b33e1e0eed03d1c42f7e
This commit is contained in:
Pavel Karateev
2025-08-13 13:20:06 +02:00
committed by intellij-monorepo-bot
parent 1d06617ae5
commit c7af627736
7 changed files with 33 additions and 10 deletions

View File

@@ -0,0 +1,2 @@
ASGI
LDAPS

View File

@@ -0,0 +1,2 @@
asctime
levelname

View File

@@ -0,0 +1,4 @@
addopts
capsys
conftest
pytestmark

View File

@@ -1,14 +1,15 @@
PYTHONPATH
cinit cinit
codecell codecell
noqa
rtype
tuple
tuples
teardown
doctest doctest
doctests doctests
idna
noqa
pycon pycon
rtype
teardown
tuple
tuples
unittest unittest
unittests unittests
virtualenv virtualenv
idna

View File

@@ -0,0 +1 @@
tablename

View File

@@ -0,0 +1,6 @@
envlist
rrequirements
skipsdist
posargs
toxinidir
basepython

View File

@@ -8,9 +8,16 @@ public final class PythonBundledDictionaryProvider implements BundledDictionaryP
@Override @Override
public String[] getBundledDictionaries() { public String[] getBundledDictionaries() {
return new String[] { return new String[] {
"python.dic", // autogenerated from python stdlib "python.dic", // autogenerated from python stdlib
"pythonExtras.dic", // manually added "django.dic",
"django.dic"
// manually added
"acronyms.dic",
"logging.dic",
"pytest.dic",
"pythonExtras.dic",
"sqlalchemy.dic",
"tox.dic",
}; };
} }
} }