jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/612146 )
Change subject: [FIX] Use Dict in place of DefaultDict ...................................................................... [FIX] Use Dict in place of DefaultDict typing.DefaultDict was introducted in Python 3.5.2 Bug: T257770 Change-Id: Ibf45f955c10f7e3079718754fb634734635e58f5 --- M scripts/delete.py 1 file changed, 8 insertions(+), 2 deletions(-) Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified diff --git a/scripts/delete.py b/scripts/delete.py index 93e0825..0db37bc 100755 --- a/scripts/delete.py +++ b/scripts/delete.py @@ -58,7 +58,7 @@ # import collections -from typing import DefaultDict, Set +from typing import Set from warnings import warn import pywikibot @@ -68,7 +68,13 @@ from pywikibot.bot import MultipleSitesBot, CurrentPageBot from pywikibot.page import Page from pywikibot.site import Namespace -from pywikibot.tools import islice_with_ellipsis +from pywikibot.tools import islice_with_ellipsis, PYTHON_VERSION + +if PYTHON_VERSION < (3, 5, 2): + from typing import Dict as DefaultDict +else: + from typing import DefaultDict + # This is required for the text that is shown when you run this script # with the parameter -help. -- To view, visit https://gerrit.wikimedia.org/r/c/pywikibot/core/+/612146 To unsubscribe, or for help writing mail filters, visit https://gerrit.wikimedia.org/r/settings Gerrit-Project: pywikibot/core Gerrit-Branch: master Gerrit-Change-Id: Ibf45f955c10f7e3079718754fb634734635e58f5 Gerrit-Change-Number: 612146 Gerrit-PatchSet: 2 Gerrit-Owner: JJMC89 <[email protected]> Gerrit-Reviewer: Xqt <[email protected]> Gerrit-Reviewer: jenkins-bot Gerrit-MessageType: merged
_______________________________________________ Pywikibot-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/pywikibot-commits
