From af5d998464b7aea78d39bf0612c6e5f90c8b6c54 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Thu, 8 Dec 2022 12:59:36 +0000 Subject: [PATCH] PLUGINS.md: Correct the statement about python stdlib --- PLUGINS.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/PLUGINS.md b/PLUGINS.md index d168cde7..2d5b568e 100644 --- a/PLUGINS.md +++ b/PLUGINS.md @@ -129,11 +129,15 @@ modules for plugin use: - sqlite3 - zipfile -And, of course, anything in the [Python Standard Library](https://docs.python.org/3/library/) -will always be available, dependent on the version of Python we're using to -build Windows installed versions. Check the 'Startup' line in an application -[Debug Log File](https://github.com/EDCD/EDMarketConnector/wiki/Troubleshooting#debug-log-files) -for the version of Python being used. +Unfortunately we cannot promise to include every part of the +[Python Standard Library](https://docs.python.org/3/library/) due to issues +with correctly detecting all the modules, and if they're single file or a +package, and perhaps have sub-modules. For now, if you find something is +missing that you need for your plugin, ask us to add it in, and we'll do so on +a 'best efforts' basis. + +See [#1327 - ModuleNotFound when creating a new plugin.](https://github.com/EDCD/EDMarketConnector/issues/1327) +for some discussion. ---