Aaron1011 has uploaded a new change for review. https://gerrit.wikimedia.org/r/97878
Change subject: Use six.moves for Queue class ...................................................................... Use six.moves for Queue class Change-Id: I58970010bccbc675eeb494b3ff7b40fe0d314dd3 --- M pywikibot/__init__.py 1 file changed, 2 insertions(+), 1 deletion(-) git pull ssh://gerrit.wikimedia.org:29418/pywikibot/core refs/changes/78/97878/1 diff --git a/pywikibot/__init__.py b/pywikibot/__init__.py index 3367f05..3f630f2 100644 --- a/pywikibot/__init__.py +++ b/pywikibot/__init__.py @@ -17,7 +17,8 @@ import re import sys import threading -from Queue import Queue +from six.moves import queue +Queue = queue.Queue # Use pywikibot. prefix for all in-package imports; this is to prevent # confusion with similarly-named modules in version 1 framework, for users -- To view, visit https://gerrit.wikimedia.org/r/97878 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I58970010bccbc675eeb494b3ff7b40fe0d314dd3 Gerrit-PatchSet: 1 Gerrit-Project: pywikibot/core Gerrit-Branch: master Gerrit-Owner: Aaron1011 <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
