Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 7 Jan 2024 14:10:01 GMT
From:      Koichiro Iwao <meta@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 829793be46b6 - main - devel/pycharm-ce: Update to 2023.3.2
Message-ID:  <202401071410.407EA1Ia046030@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by meta:

URL: https://cgit.FreeBSD.org/ports/commit/?id=829793be46b6e5adcc4e41ca956d1acb666bfac7

commit 829793be46b6e5adcc4e41ca956d1acb666bfac7
Author:     Koichiro Iwao <meta@FreeBSD.org>
AuthorDate: 2024-01-07 14:07:50 +0000
Commit:     Koichiro Iwao <meta@FreeBSD.org>
CommitDate: 2024-01-07 14:09:01 +0000

    devel/pycharm-ce: Update to 2023.3.2
    
    PR:             276088
    Changes:        https://www.jetbrains.com/pycharm/whatsnew/2023-3
---
 devel/pycharm-ce/Makefile  |   30 +-
 devel/pycharm-ce/distinfo  |    6 +-
 devel/pycharm-ce/pkg-plist | 1901 +++++++++++++++++++++++++++++++++++++-------
 3 files changed, 1641 insertions(+), 296 deletions(-)

diff --git a/devel/pycharm-ce/Makefile b/devel/pycharm-ce/Makefile
index b9ab6d36f334..9abb3571da3a 100644
--- a/devel/pycharm-ce/Makefile
+++ b/devel/pycharm-ce/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	pycharm-ce
-DISTVERSION=	2023.2.5
+DISTVERSION=	2023.3.2
 CATEGORIES=	devel java python
 MASTER_SITES=	https://download.jetbrains.com/python/ \
 		http://download.jetbrains.com/python/
@@ -11,18 +11,18 @@ WWW=		https://www.jetbrains.com/pycharm/
 
 LICENSE=	APACHE20
 
+BUILD_DEPENDS=	jna>0:devel/jna
 RUN_DEPENDS=	intellij-fsnotifier>0:java/intellij-fsnotifier \
-		intellij-pty4j>0:java/intellij-pty4j
+		jetbrains-pty4j>=0.12.13:devel/jetbrains-pty4j \
+		jetbrains-sqlite>=232.8660.185:devel/jetbrains-sqlite
 
 USES=		python:run shebangfix
 USE_JAVA=	yes
 JAVA_VERSION=	17+
-SHEBANG_FILES=	bin/restart.py \
-		plugins/python-ce/helpers/pycodestyle.py \
-		plugins/python-ce/helpers/pycodestyle-2.10.0.py
+SHEBANG_FILES=	plugins/python-ce/helpers/pycodestyle.py \
+		plugins/python-ce/helpers/pycodestyle-2.10.0.py \
+		plugins/python-ce/helpers/typeshed/scripts/sync_tensorflow_protobuf_stubs.sh
 
-
-NO_ARCH=	yes
 NO_BUILD=	yes
 
 .include "${.CURDIR}/../../java/intellij/common.mk"
@@ -32,15 +32,14 @@ SUB_LIST+=	IDEA_HOME=${IDEA_HOME}
 
 # Remove non-native binaries
 post-extract:
-	@${RM} ${WRKSRC}/bin/*fsnotifier* ${WRKSRC}/bin/*.so ${WRKSRC}/bin/repair
+	@${RM} ${WRKSRC}/bin/*fsnotifier* ${WRKSRC}/bin/*.so ${WRKSRC}/bin/repair ${WRKSRC}/bin/restarter
 	@${FIND} ${WRKSRC}/lib ${WRKSRC}/plugins -name '*.so' -delete
 	@${FIND} ${WRKSRC}/lib ${WRKSRC}/plugins -type d -empty -delete
 	@${RM} -r ${WRKSRC}/plugins/cwm-plugin/quiche-native
 	@${RM} -r ${WRKSRC}/plugins/python-ce/helpers/pydev/pydevd_attach_to_process
 # Remove the bundled native Pty4J support libraries, they are replaced
 # by java/intellij-pty4j
-	@${RM} -r ${WRKSRC}/lib/pty4j-native
-	@${RM} ${WRKSRC}/lib/pty4j-0.5.jar
+	@${RM} -r ${WRKSRC}/lib/pty4j
 # Remove bundled linux-only JRE
 	@${RM} -r ${WRKSRC}/jbr
 # TODO: Remove and enable fsnotifier when devel/libinotify is fixed
@@ -54,5 +53,16 @@ do-install:
 	cd "${WRKSRC}" && ${FIND} . | ${CPIO} -pdum -R root:wheel ${STAGEDIR}${DATADIR}
 	${INSTALL_SCRIPT} ${WRKDIR}/pycharm ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
 	${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.desktop ${STAGEDIR}${DESKTOPDIR}
+# Install FreeBSD native lib provided by devel/jna
+	@${MKDIR} ${WRKDIR}/jna
+	@(cd ${WRKDIR}/jna && ${JAR} xf ${JAVAJARDIR}/jna.jar com/sun/jna/freebsd-x86-64/libjnidispatch.so)
+	${MKDIR} ${STAGEDIR}${DATADIR}/lib/jna/amd64
+	${INSTALL_LIB} ${WRKDIR}/jna/com/sun/jna/freebsd-x86-64/libjnidispatch.so ${STAGEDIR}${DATADIR}/lib/jna/amd64/
+# Use pty4j replacement provided by devel/jetbrains-pty4j
+	${MKDIR} ${STAGEDIR}${DATADIR}/lib/pty4j/freebsd/x86-64
+	${LN} -sf ../../../../../jetbrains/pty4j/amd64/libpty.so ${STAGEDIR}${DATADIR}/lib/pty4j/freebsd/x86-64/libpty.so
+# Use sqlite replacement provided by devel/jetbrains-sqlite
+	${MKDIR} ${STAGEDIR}${DATADIR}/lib/native/linux-x86_64
+	${LN} -sf ../../../../jetbrains/sqlite/amd64/libsqliteij.so ${STAGEDIR}${DATADIR}/lib/native/linux-x86_64/libsqliteij.so
 
 .include <bsd.port.mk>
diff --git a/devel/pycharm-ce/distinfo b/devel/pycharm-ce/distinfo
index 6672fc1f5060..6cea87d09a47 100644
--- a/devel/pycharm-ce/distinfo
+++ b/devel/pycharm-ce/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1700602584
-SHA256 (pycharm-community-2023.2.5.tar.gz) = 3a35e0b2245e6ecad5dc05b0fc81cf36cb4f5fe0bc987c8559e04c808de9d072
-SIZE (pycharm-community-2023.2.5.tar.gz) = 588548535
+TIMESTAMP = 1704229387
+SHA256 (pycharm-community-2023.3.2.tar.gz) = 1a4a95648c68890f2f9eb41cbb9eb041dcd08388c75a91298dfbe73f83a858c8
+SIZE (pycharm-community-2023.3.2.tar.gz) = 610736516
diff --git a/devel/pycharm-ce/pkg-plist b/devel/pycharm-ce/pkg-plist
index 932a1dce2d4e..56f1ecd06e16 100644
--- a/devel/pycharm-ce/pkg-plist
+++ b/devel/pycharm-ce/pkg-plist
@@ -5,20 +5,21 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/bin/format.sh
 %%DATADIR%%/bin/idea.properties
 %%DATADIR%%/bin/inspect.sh
+%%DATADIR%%/bin/jetbrains_client.sh
+%%DATADIR%%/bin/jetbrains_client64.vmoptions
 %%DATADIR%%/bin/ltedit.sh
 %%DATADIR%%/bin/pycharm.png
 %%DATADIR%%/bin/pycharm.sh
 %%DATADIR%%/bin/pycharm.svg
 %%DATADIR%%/bin/pycharm64.vmoptions
-%%DATADIR%%/bin/restart.py
 %%DATADIR%%/build.txt
 %%DATADIR%%/help/ReferenceCard.pdf
 %%DATADIR%%/help/ReferenceCardForMac.pdf
-%%DATADIR%%/lib/annotations-java5.jar
+%%DATADIR%%/lib/annotations.jar
 %%DATADIR%%/lib/app-client.jar
 %%DATADIR%%/lib/app.jar
 %%DATADIR%%/lib/bouncy-castle.jar
-%%DATADIR%%/lib/build-marker-PC-232.10227.11
+%%DATADIR%%/lib/build-marker-PC-233.13135.95
 %%DATADIR%%/lib/byte-buddy-agent.jar
 %%DATADIR%%/lib/cds/classesLogAgent.jar
 %%DATADIR%%/lib/error-prone-annotations.jar
@@ -27,17 +28,19 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/lib/forms_rt.jar
 %%DATADIR%%/lib/groovy.jar
 %%DATADIR%%/lib/grpc.jar
-%%DATADIR%%/lib/intellij-coverage-agent-1.0.723.jar
+%%DATADIR%%/lib/intellij-coverage-agent-1.0.738.jar
 %%DATADIR%%/lib/intellij-test-discovery.jar
-%%DATADIR%%/lib/jetbrains-annotations.jar
+%%DATADIR%%/lib/jna/amd64/libjnidispatch.so
 %%DATADIR%%/lib/jps-model.jar
 %%DATADIR%%/lib/jsch-agent.jar
 %%DATADIR%%/lib/junit4.jar
 %%DATADIR%%/lib/lib-client.jar
 %%DATADIR%%/lib/lib.jar
 %%DATADIR%%/lib/modules.jar
+%%DATADIR%%/lib/native/linux-x86_64/libsqliteij.so
 %%DATADIR%%/lib/platform-loader.jar
 %%DATADIR%%/lib/protobuf.jar
+%%DATADIR%%/lib/pty4j/freebsd/x86-64/libpty.so
 %%DATADIR%%/lib/rd.jar
 %%DATADIR%%/lib/src/pycharm-openapi-src.zip
 %%DATADIR%%/lib/stats.jar
@@ -53,6 +56,7 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/license/third-party-libraries.html
 %%DATADIR%%/license/third-party-libraries.json
 %%DATADIR%%/license/yourkit-license-redist.txt
+%%DATADIR%%/modules/module-descriptors.jar
 %%DATADIR%%/plugins/color-scheme-github/lib/color-scheme-github.jar
 %%DATADIR%%/plugins/color-scheme-monokai/lib/color-scheme-monokai.jar
 %%DATADIR%%/plugins/color-scheme-twilight/lib/color-scheme-twilight.jar
@@ -60,14 +64,19 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/completionMlRanking/lib/completionMlRanking.jar
 %%DATADIR%%/plugins/configurationScript/lib/configurationScript.jar
 %%DATADIR%%/plugins/copyright/lib/copyright.jar
-%%DATADIR%%/plugins/cwm-plugin-projector/lib/cwm-plugin-projector.jar
-%%DATADIR%%/plugins/cwm-plugin-projector/lib/projector/projector.jar
 %%DATADIR%%/plugins/cwm-plugin/jre-build.txt
 %%DATADIR%%/plugins/cwm-plugin/lib/bouncy-castle-pgp.jar
+%%DATADIR%%/plugins/cwm-plugin/lib/client/cwm-guest-markdown.jar
+%%DATADIR%%/plugins/cwm-plugin/lib/client/cwm-guest-notebooks.jar
+%%DATADIR%%/plugins/cwm-plugin/lib/client/cwm-guest-terminal.jar
+%%DATADIR%%/plugins/cwm-plugin/lib/client/cwm-guest.jar
+%%DATADIR%%/plugins/cwm-plugin/lib/client/platform-ssh.jar
+%%DATADIR%%/plugins/cwm-plugin/lib/client/rd-client.jar
 %%DATADIR%%/plugins/cwm-plugin/lib/cwm-common.jar
 %%DATADIR%%/plugins/cwm-plugin/lib/cwm-host-unattended.jar
 %%DATADIR%%/plugins/cwm-plugin/lib/cwm-host.jar
 %%DATADIR%%/plugins/cwm-plugin/lib/cwm-lobby-common.jar
+%%DATADIR%%/plugins/cwm-plugin/lib/cwm-model.jar
 %%DATADIR%%/plugins/cwm-plugin/lib/cwm-plugin-terminal.jar
 %%DATADIR%%/plugins/cwm-plugin/lib/cwm-plugin.jar
 %%DATADIR%%/plugins/cwm-plugin/lib/cwm-unattended-common.jar
@@ -76,10 +85,8 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/cwm-plugin/lib/jitsi-utils.jar
 %%DATADIR%%/plugins/cwm-plugin/lib/jnaerator-runtime.jar
 %%DATADIR%%/plugins/cwm-plugin/lib/jstun.jar
-%%DATADIR%%/plugins/cwm-plugin/lib/kotlinx-serialization-protobuf.jar
-%%DATADIR%%/plugins/cwm-plugin/lib/projector-client-common.jar
-%%DATADIR%%/plugins/cwm-plugin/lib/projector-client-swing.jar
 %%DATADIR%%/plugins/cwm-plugin/lib/quiche-jna-stubs.jar
+%%DATADIR%%/plugins/cwm-plugin/lib/rd.jar
 %%DATADIR%%/plugins/cwm-plugin/lib/tls-channel.jar
 %%DATADIR%%/plugins/dev/lib/dev.jar
 %%DATADIR%%/plugins/editorconfig/lib/editorconfig.jar
@@ -102,8 +109,8 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/properties/lib/properties.jar
 %%DATADIR%%/plugins/pycharm-community-customization/lib/pycharm-community-customization.jar
 %%DATADIR%%/plugins/pycharm-community-sharedIndexes-bundled/lib/pycharm-community-sharedIndexes-bundled.jar
-%%DATADIR%%/plugins/pycharm-community-sharedIndexes-bundled/python-sdk/python-sdk-543ae9f0af82-5265d50d312f.ijx
-%%DATADIR%%/plugins/pycharm-community-sharedIndexes-bundled/python-sdk/python-sdk-543ae9f0af82-5265d50d312f.txt
+%%DATADIR%%/plugins/pycharm-community-sharedIndexes-bundled/python-sdk/python-sdk-50da183f06c8-d3b881c8e49f.ijx
+%%DATADIR%%/plugins/pycharm-community-sharedIndexes-bundled/python-sdk/python-sdk-50da183f06c8-d3b881c8e49f.txt
 %%DATADIR%%/plugins/python-ce/helpers/.gitignore
 %%DATADIR%%/plugins/python-ce/helpers/MathJax/MathJax.js
 %%DATADIR%%/plugins/python-ce/helpers/MathJax/config/TeX-AMS_HTML-full.js
@@ -956,6 +963,7 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_cython.c
 %%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_cython.pxd
 %%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_cython.pyx
+%%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_cython_312.c
 %%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_27_32.pyd
 %%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_27_64.pyd
 %%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_cython_win32_310_32.cp310-win32.pyd
@@ -986,6 +994,12 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_io.py
 %%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_ipython_console_output.py
 %%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_kill_all_pydevd_threads.py
+%%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_pep_669_tracing.py
+%%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_pep_669_tracing_cython.c
+%%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_pep_669_tracing_cython.cp312-win32.pyd
+%%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_pep_669_tracing_cython.cp312-win_amd64.pyd
+%%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_pep_669_tracing_cython.pyx
+%%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_pep_669_tracing_wrapper.py
 %%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_plugin_utils.py
 %%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_process_net_command.py
 %%DATADIR%%/plugins/python-ce/helpers/pydev/_pydevd_bundle/pydevd_referrers.py
@@ -1064,6 +1078,7 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/pydev/pydev_ipython/inputhookpyglet.py
 %%DATADIR%%/plugins/python-ce/helpers/pydev/pydev_ipython/inputhookqt4.py
 %%DATADIR%%/plugins/python-ce/helpers/pydev/pydev_ipython/inputhookqt5.py
+%%DATADIR%%/plugins/python-ce/helpers/pydev/pydev_ipython/inputhookqt6.py
 %%DATADIR%%/plugins/python-ce/helpers/pydev/pydev_ipython/inputhooktk.py
 %%DATADIR%%/plugins/python-ce/helpers/pydev/pydev_ipython/inputhookwx.py
 %%DATADIR%%/plugins/python-ce/helpers/pydev/pydev_ipython/matplotlibtools.py
@@ -1343,27 +1358,34 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/tools/versions.xml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/.editorconfig
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/.flake8
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/.gitattributes
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/.github/workflows/daily.yml
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/.github/workflows/meta_tests.yml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/.github/workflows/mypy_primer.yml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/.github/workflows/mypy_primer_comment.yml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/.github/workflows/stubsabot.yml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/.github/workflows/stubtest_stdlib.yml
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/.github/workflows/stubtest_third_party.yml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/.github/workflows/tests.yml
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/.github/workflows/typecheck_typeshed_code.yml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/.gitignore
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/.pre-commit-config.yaml
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/.vscode/extensions.json
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/.vscode/settings.default.json
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/CONTRIBUTING.md
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/LICENSE
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/MAINTAINERS.md
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/README.md
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/pyproject.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/pyrightconfig.json
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/pyrightconfig.scripts_and_tests.json
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/pyrightconfig.stricter.json
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/pyrightconfig.testcases.json
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/requirements-tests.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/scripts/create_baseline_stubs.py
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/scripts/generate_proto_stubs.sh
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/scripts/runtests.py
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/scripts/stubsabot.py
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/scripts/sync_tensorflow_protobuf_stubs.sh
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/BaseHTTPServer.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/CGIHTTPServer.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/ConfigParser.pyi
@@ -1415,7 +1437,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/_winreg.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/abc.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/aifc.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/antigravity.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/argparse.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/array.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/ast.pyi
@@ -1469,34 +1490,15 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/difflib.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/dircache.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/dis.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/archive_util.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/bcppcompiler.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/ccompiler.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/cmd.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/bdist.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/bdist_dumb.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/bdist_msi.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/bdist_packager.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/bdist_rpm.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/bdist_wininst.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/build.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/build_clib.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/build_ext.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/build_py.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/build_scripts.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/check.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/clean.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/config.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/install.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/install_data.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/install_egg_info.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/install_headers.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/install_lib.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/install_scripts.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/register.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/sdist.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/command/upload.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/config.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/distutils/core.pyi
@@ -1533,7 +1535,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/email/header.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/email/iterators.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/email/message.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/email/mime/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/email/mime/application.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/email/mime/audio.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/email/mime/base.pyi
@@ -1581,8 +1582,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/itertools.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/json.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/keyword.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/lib2to3/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/lib2to3/pgen2/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/lib2to3/pgen2/driver.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/lib2to3/pgen2/grammar.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/lib2to3/pgen2/literals.pyi
@@ -1653,7 +1652,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/py_compile.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/pyclbr.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/pydoc.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/pydoc_data/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/pydoc_data/topics.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/pyexpat/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/pyexpat/errors.pyi
@@ -1736,7 +1734,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/webbrowser.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/whichdb.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/winsound.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/wsgiref/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/wsgiref/handlers.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/wsgiref/headers.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/wsgiref/simple_server.pyi
@@ -1756,7 +1753,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/xml/etree/ElementInclude.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/xml/etree/ElementPath.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/xml/etree/ElementTree.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/xml/etree/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/xml/etree/cElementTree.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/xml/parsers/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/@python2/xml/parsers/expat/__init__.pyi
@@ -1789,6 +1785,7 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/_heapq.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/_imp.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/_json.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/_locale.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/_markupbase.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/_msi.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/_operator.pyi
@@ -2025,7 +2022,8 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/importlib/machinery.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/importlib/metadata/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/importlib/metadata/_meta.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/importlib/resources.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/importlib/resources/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/importlib/resources/abc.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/importlib/util.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/inspect.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/io.pyi
@@ -2037,6 +2035,62 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/json/tool.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/keyword.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/btm_matcher.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixer_base.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_apply.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_asserts.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_basestring.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_buffer.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_dict.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_except.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_exec.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_execfile.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_exitfunc.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_filter.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_funcattrs.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_future.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_getcwdu.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_has_key.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_idioms.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_import.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_imports.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_imports2.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_input.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_intern.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_isinstance.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_itertools.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_itertools_imports.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_long.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_map.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_metaclass.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_methodattrs.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_ne.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_next.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_nonzero.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_numliterals.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_operator.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_paren.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_print.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_raise.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_raw_input.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_reduce.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_reload.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_renames.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_repr.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_set_literal.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_standarderror.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_sys_exc.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_throw.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_tuple_params.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_types.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_unicode.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_urllib.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_ws_comma.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_xrange.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_xreadlines.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/fixes/fix_zip.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/main.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/pgen2/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/pgen2/driver.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/lib2to3/pgen2/grammar.pyi
@@ -2165,7 +2219,8 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/sunau.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/symbol.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/symtable.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/sys.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/sys/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/sys/_monitoring.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/sysconfig.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/syslog.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/tabnanny.pyi
@@ -2268,42 +2323,47 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/zipimport.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/zlib.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stdlib/zoneinfo/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/METADATA.toml
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/capture_output.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/numpy_capture_output.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/numpy_float_capture_output.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/pil_capture_output.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/pytorch_capture_output.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/pytorch_float_capture_output.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/pytorch_float_gpu_capture_output.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/capture_outputs/pytorch_gpu_capture_output.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/d3dshot.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/display.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/dll/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/dll/d3d.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/dll/dxgi.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/dll/shcore.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/D3DShot/d3dshot/dll/user32.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/DateTimeRange/METADATA.toml
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/DateTimeRange/datetimerange/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/DateTimeRange/datetimerange/__version__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Deprecated/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Deprecated/deprecated/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Deprecated/deprecated/classic.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Deprecated/deprecated/sphinx.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/METADATA.toml
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/_types.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/classes.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/exceptions.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/exif_log.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/heic.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/jpeg.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/tags/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/tags/exif.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/tags/makernote/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/tags/makernote/apple.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/tags/makernote/canon.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/tags/makernote/casio.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/tags/makernote/fujifilm.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/tags/makernote/nikon.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/tags/makernote/olympus.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/ExifRead/exifread/utils.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-Cors/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-Cors/flask_cors/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-Cors/flask_cors/core.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-Cors/flask_cors/decorator.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-Cors/flask_cors/extension.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-Cors/flask_cors/version.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-Migrate/METADATA.toml
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-Migrate/flask_migrate/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-SQLAlchemy/@tests/stubtest_allowlist.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-SQLAlchemy/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-SQLAlchemy/flask_sqlalchemy/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-SQLAlchemy/flask_sqlalchemy/model.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-SQLAlchemy/flask_sqlalchemy/utils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-SocketIO/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-SocketIO/METADATA.toml
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-SocketIO/flask_socketio/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-SocketIO/flask_socketio/namespace.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Flask-SocketIO/flask_socketio/test_client.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/JACK-Client/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/JACK-Client/jack/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Markdown/@tests/stubtest_allowlist.txt
@@ -2339,6 +2399,7 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Markdown/markdown/treeprocessors.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Markdown/markdown/util.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/@tests/test_cases/check_tk_compat.py
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/BdfFontFile.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/BlpImagePlugin.pyi
@@ -2350,7 +2411,7 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/DdsImagePlugin.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/EpsImagePlugin.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/ExifTags.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/FitsStubImagePlugin.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/FitsImagePlugin.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/FliImagePlugin.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/FontFile.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/FpxImagePlugin.pyi
@@ -2412,6 +2473,7 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/PpmImagePlugin.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/PsdImagePlugin.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/PyAccess.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/QoiImagePlugin.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/SgiImagePlugin.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/SpiderImagePlugin.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/SunImagePlugin.pyi
@@ -2429,9 +2491,9 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/_binary.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/_imaging.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/_tkinter_finder.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/_util.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/_version.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pillow/PIL/features.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyAutoGUI/@tests/stubtest_allowlist.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyAutoGUI/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyAutoGUI/pyautogui/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyMySQL/@tests/stubtest_allowlist.txt
@@ -2452,6 +2514,9 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyMySQL/pymysql/err.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyMySQL/pymysql/times.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyMySQL/pymysql/util.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyScreeze/@tests/stubtest_allowlist_linux.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyScreeze/METADATA.toml
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyScreeze/pyscreeze/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyYAML/@tests/stubtest_allowlist.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyYAML/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyYAML/yaml/__init__.pyi
@@ -2472,7 +2537,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyYAML/yaml/scanner.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyYAML/yaml/serializer.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/PyYAML/yaml/tokens.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pygments/@tests/requirements-stubtest.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pygments/@tests/stubtest_allowlist.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pygments/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Pygments/pygments/__init__.pyi
@@ -2525,7 +2589,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/mssql/information_schema.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/mssql/json.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/mssql/mxodbc.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/mssql/provision.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/mssql/pymssql.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/mssql/pyodbc.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/mysql/__init__.pyi
@@ -2542,7 +2605,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/mysql/mysqlconnector.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/mysql/mysqldb.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/mysql/oursql.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/mysql/provision.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/mysql/pymysql.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/mysql/pyodbc.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/mysql/reflection.pyi
@@ -2551,7 +2613,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/oracle/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/oracle/base.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/oracle/cx_oracle.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/oracle/provision.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/postgresql/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/postgresql/array.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/postgresql/asyncpg.pyi
@@ -2561,7 +2622,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/postgresql/hstore.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/postgresql/json.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/postgresql/pg8000.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/postgresql/provision.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/postgresql/psycopg2.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/postgresql/psycopg2cffi.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/postgresql/pygresql.pyi
@@ -2572,7 +2632,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/sqlite/base.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/sqlite/dml.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/sqlite/json.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/sqlite/provision.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/sqlite/pysqlcipher.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/sqlite/pysqlite.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/dialects/sybase/__init__.pyi
@@ -2599,11 +2658,9 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/event/api.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/event/attr.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/event/base.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/event/legacy.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/event/registry.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/events.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/exc.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/ext/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/ext/associationproxy.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/ext/asyncio/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/ext/asyncio/base.pyi
@@ -2623,7 +2680,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/ext/indexable.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/ext/instrumentation.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/ext/mutable.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/ext/mypy/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/ext/mypy/apply.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/ext/mypy/decl_class.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/ext/mypy/infer.pyi
@@ -2634,7 +2690,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/ext/serializer.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/future/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/future/engine.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/future/orm/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/inspection.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/log.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/orm/__init__.pyi
@@ -2709,9 +2764,7 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/testing/entities.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/testing/exclusions.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/testing/fixtures.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/testing/mock.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/testing/pickleable.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/testing/plugin/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/testing/plugin/bootstrap.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/testing/plugin/plugin_base.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/testing/plugin/pytestplugin.pyi
@@ -2734,12 +2787,60 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/util/langhelpers.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/util/queue.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/SQLAlchemy/sqlalchemy/util/topological.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Send2Trash/@tests/stubtest_allowlist.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Send2Trash/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Send2Trash/send2trash/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Send2Trash/send2trash/compat.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Send2Trash/send2trash/__main__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Send2Trash/send2trash/exceptions.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/Send2Trash/send2trash/util.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/@tests/test_cases/check_choices.py
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/@tests/test_cases/check_filters.py
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/@tests/test_cases/check_validators.py
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/@tests/test_cases/check_widgets.py
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/METADATA.toml
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/csrf/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/csrf/core.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/csrf/session.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/fields/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/fields/choices.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/fields/core.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/fields/datetime.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/fields/form.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/fields/list.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/fields/numeric.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/fields/simple.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/form.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/i18n.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/meta.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/utils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/validators.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/widgets/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WTForms/wtforms/widgets/core.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/METADATA.toml
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/acceptparse.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/byterange.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/cachecontrol.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/client.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/cookies.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/datetime_utils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/dec.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/descriptors.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/etag.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/exc.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/headers.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/multidict.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/request.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/response.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/static.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/WebOb/webob/util.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aiofiles/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aiofiles/@tests/stubtest_allowlist_darwin.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aiofiles/@tests/stubtest_allowlist_linux.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aiofiles/@tests/stubtest_allowlist_win32.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aiofiles/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aiofiles/aiofiles/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aiofiles/aiofiles/base.pyi
@@ -2751,14 +2852,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aiofiles/aiofiles/threadpool/binary.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aiofiles/aiofiles/threadpool/text.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aiofiles/aiofiles/threadpool/utils.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/annoy/METADATA.toml
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/annoy/annoy/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/annoy/annoy/annoylib.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/appdirs/METADATA.toml
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/appdirs/appdirs.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/atomicwrites/@tests/stubtest_allowlist.txt
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/atomicwrites/METADATA.toml
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/atomicwrites/atomicwrites/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aws-xray-sdk/@tests/stubtest_allowlist.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aws-xray-sdk/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/__init__.pyi
@@ -2813,33 +2906,6 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/stacktrace.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/sdk_config.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/version.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/METADATA.toml
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/core.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/dates.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/languages.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/lists.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/localedata.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/localtime/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/localtime/_unix.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/localtime/_win32.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/messages/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/messages/catalog.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/messages/checkers.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/messages/extract.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/messages/frontend.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/messages/jslexer.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/messages/mofile.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/messages/plurals.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/messages/pofile.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/numbers.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/plural.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/support.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/units.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/babel/babel/util.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/backports.ssl_match_hostname/METADATA.toml
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/backports.ssl_match_hostname/backports/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/backports.ssl_match_hostname/backports/ssl_match_hostname/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/beautifulsoup4/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/beautifulsoup4/bs4/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/beautifulsoup4/bs4/builder/__init__.pyi
@@ -2858,6 +2924,38 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/bleach/bleach/html5lib_shim.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/bleach/bleach/linkifier.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/bleach/bleach/sanitizer.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/METADATA.toml
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/cacheutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/debugutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/deprutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/dictutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/easterutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/ecoutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/excutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/fileutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/formatutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/funcutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/gcutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/ioutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/iterutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/jsonutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/listutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/mathutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/mboxutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/namedutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/pathutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/queueutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/setutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/socketutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/statsutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/strutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/tableutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/tbutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/timeutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/typeutils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boltons/boltons/urlutils.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boto/@tests/stubtest_allowlist.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boto/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/boto/boto/__init__.pyi
@@ -3067,9 +3165,10 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/caldav/caldav/lib/url.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/caldav/caldav/lib/vcal.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/caldav/caldav/objects.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/certifi/METADATA.toml
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/certifi/certifi.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/caldav/caldav/requests.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cffi/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cffi/@tests/stubtest_allowlist_darwin.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cffi/@tests/stubtest_allowlist_linux.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cffi/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cffi/_cffi_backend.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cffi/cffi/__init__.pyi
@@ -3088,30 +3187,19 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cffi/cffi/vengine_cpy.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cffi/cffi/vengine_gen.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cffi/cffi/verifier.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chardet/@tests/stubtest_allowlist.txt
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chardet/METADATA.toml
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chardet/chardet/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chardet/chardet/enums.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chardet/chardet/langbulgarianmodel.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chardet/chardet/langcyrillicmodel.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chardet/chardet/langgreekmodel.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chardet/chardet/langhebrewmodel.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chardet/chardet/langhungarianmodel.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chardet/chardet/langthaimodel.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chardet/chardet/langturkishmodel.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chardet/chardet/universaldetector.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chardet/chardet/version.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chevron/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chevron/chevron/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chevron/chevron/main.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chevron/chevron/metadata.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chevron/chevron/renderer.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/chevron/chevron/tokenizer.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/click-spinner/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/click-default-group/METADATA.toml
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/click-default-group/click_default_group.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/click-spinner/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/click-spinner/click_spinner/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/click-spinner/click_spinner/_version.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/colorama/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/colorama/@tests/stubtest_allowlist_linux.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/colorama/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/colorama/colorama/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/colorama/colorama/ansi.pyi
@@ -3134,63 +3222,34 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/commonmark/commonmark/render/html.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/commonmark/commonmark/render/renderer.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/commonmark/commonmark/render/rst.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/contextvars/@tests/stubtest_allowlist.txt
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/contextvars/METADATA.toml
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/contextvars/contextvars.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/croniter/@tests/stubtest_allowlist.txt
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/METADATA.toml
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/console_menu.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/format/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/format/menu_borders.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/format/menu_margins.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/format/menu_padding.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/format/menu_style.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/items/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/items/command_item.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/items/external_item.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/items/function_item.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/items/selection_item.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/items/submenu_item.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/menu_component.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/menu_formatter.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/multiselect_menu.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/prompt_utils.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/screen.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/selection_menu.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/validators/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/validators/base.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/validators/regex.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/validators/url.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/console-menu/consolemenu/version.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/croniter/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/croniter/croniter/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/croniter/croniter/croniter.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/@tests/stubtest_allowlist.txt
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/METADATA.toml
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/exceptions.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/fernet.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/backends/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/backends/interfaces.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/bindings/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/bindings/openssl/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/bindings/openssl/binding.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/asymmetric/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/asymmetric/dh.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/asymmetric/dsa.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/asymmetric/ec.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/asymmetric/ed25519.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/asymmetric/ed448.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/asymmetric/padding.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/asymmetric/rsa.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/asymmetric/utils.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/asymmetric/x25519.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/asymmetric/x448.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/ciphers/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/ciphers/aead.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/ciphers/algorithms.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/ciphers/modes.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/cmac.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/constant_time.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/hashes.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/hmac.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/kdf/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/kdf/concatkdf.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/kdf/hkdf.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/kdf/kbkdf.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/kdf/pbkdf2.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/kdf/scrypt.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/kdf/x963kdf.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/keywrap.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/padding.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/poly1305.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/serialization/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/serialization/pkcs12.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/serialization/pkcs7.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/twofactor/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/twofactor/hotp.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/hazmat/primitives/twofactor/totp.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/x509/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/x509/extensions.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/cryptography/cryptography/x509/oid.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dateparser/@tests/stubtest_allowlist.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dateparser/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dateparser/dateparser/__init__.pyi
@@ -3200,6 +3259,10 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dateparser/dateparser/calendars/jalali.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dateparser/dateparser/calendars/jalali_parser.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dateparser/dateparser/conf.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dateparser/dateparser/custom_language_detection/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dateparser/dateparser/custom_language_detection/fasttext.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dateparser/dateparser/custom_language_detection/langdetect.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dateparser/dateparser/custom_language_detection/language_mapping.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dateparser/dateparser/data/__init__.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dateparser/dateparser/data/languages_info.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dateparser/dateparser/date.pyi
@@ -3224,8 +3287,11 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/decorator/@tests/stubtest_allowlist.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/decorator/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/decorator/decorator.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dj-database-url/METADATA.toml
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dj-database-url/dj_database_url.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dockerfile-parse/METADATA.toml
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dockerfile-parse/dockerfile_parse/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dockerfile-parse/dockerfile_parse/constants.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dockerfile-parse/dockerfile_parse/parser.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/dockerfile-parse/dockerfile_parse/util.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/docopt/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/docopt/docopt.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/docutils/@tests/stubtest_allowlist.txt
@@ -3271,14 +3337,10 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/docutils/docutils/writers/pseudoxml.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/docutils/docutils/writers/s5_html.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/docutils/docutils/writers/xetex.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/editdistance/@tests/stubtest_allowlist.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/editdistance/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/editdistance/editdistance/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/editdistance/editdistance/bycython.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/emoji/METADATA.toml
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/emoji/emoji/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/emoji/emoji/core.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/emoji/emoji/unicode_codes/__init__.pyi
-%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/emoji/emoji/unicode_codes/data_dict.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/entrypoints/@tests/stubtest_allowlist.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/entrypoints/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/entrypoints/entrypoints.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/first/METADATA.toml
@@ -3309,25 +3371,33 @@ share/applications/pycharm-ce.desktop
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/fpdf2/@tests/stubtest_allowlist.txt
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/fpdf2/METADATA.toml
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/fpdf2/fpdf/__init__.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/fpdf2/fpdf/_fonttools_shims.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/fpdf2/fpdf/actions.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/fpdf2/fpdf/annotations.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/fpdf2/fpdf/deprecation.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/fpdf2/fpdf/drawing.pyi
+%%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/fpdf2/fpdf/encryption.pyi
 %%DATADIR%%/plugins/python-ce/helpers/typeshed/stubs/fpdf2/fpdf/enums.pyi
*** 1946 LINES SKIPPED ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401071410.407EA1Ia046030>