diff hgdemandimport/__init__.py @ 45559:07731064ac41 stable 5.5.2

hgdemandimport: exclude more sqlalchemy modules We could potentially exclude the entire sqlalchemy library.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 29 Sep 2020 14:38:46 -0700
parents 81b4e7c866ec
children 6000f5b25c9b fda7ec505dc5
line wrap: on
line diff
--- a/hgdemandimport/__init__.py	Wed Sep 23 15:36:15 2020 -0700
+++ b/hgdemandimport/__init__.py	Tue Sep 29 14:38:46 2020 -0700
@@ -52,6 +52,7 @@
     'rfc822',
     'mimetools',
     'sqlalchemy.events',  # has import-time side effects (issue5085)
+    'sqlalchemy.dialects',  # similar problems as above
     # setuptools 8 expects this module to explode early when not on windows
     'distutils.msvc9compiler',
     '__builtin__',