This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author graingert
Recipients graingert
Date 2022-01-25.15:16:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1643123783.64.0.215214582085.issue46522@roundup.psfhosted.org>
In-reply-to
Content
>>> import types
>>> types.ModuleType("concurrent.futures").missing_attribute
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: module 'concurrent.futures' has no attribute 'missing_attribute'
>>> import concurrent.futures
>>> concurrent.futures.missing_attribute
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/graingert/miniconda3/lib/python3.9/concurrent/futures/__init__.py", line 53, in __getattr__
    raise AttributeError(f"module {__name__} has no attribute {name}")
AttributeError: module concurrent.futures has no attribute missing_attribute
History
Date User Action Args
2022-01-25 15:16:23graingertsetrecipients: + graingert
2022-01-25 15:16:23graingertsetmessageid: <1643123783.64.0.215214582085.issue46522@roundup.psfhosted.org>
2022-01-25 15:16:23graingertlinkissue46522 messages
2022-01-25 15:16:23graingertcreate