https://bugzilla.wikimedia.org/show_bug.cgi?id=59970

Mpaa <mpaa.w...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mpaa.w...@gmail.com

--- Comment #1 from Mpaa <mpaa.w...@gmail.com> ---
Actually the problem seems to be the missing queue module.

In pywikibot\comms\http.py there is a try ... except ... to handle a missing
hhtplib2, unless this is not updated any longer.

  try:
      from httplib2 import SSLHandshakeError
      import Queue  -> this looks to be preferred!!
      import urlparse
      import cookielib
  except ImportError:
      from ssl import SSLError as SSLHandshakeError
      import queue as Queue
      import urllib as urlparse
      from http import cookiejar as cookielib

Speaking about queue ... in different parts of pywikibot, there is a preference
for "Queue" over "queue" and viceversa.

In pywikibot\__init__.py there is:
  try:
      from queue import Queue -> this looks to be preferred!!
  except ImportError:
      from Queue import Queue

Sounds strange to me.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to