mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-01-28 22:53:34 -05:00
11 lines
328 B
Python
11 lines
328 B
Python
#!/usr/bin/env python2
|
|
# vim:fileencoding=utf-8
|
|
# License: GPL v3 Copyright: 2019, Eli Schwartz <eschwartz@archlinux.org>
|
|
|
|
from polyglot.builtins import is_py3
|
|
|
|
if is_py3:
|
|
from queue import Queue, Empty, Full, PriorityQueue, LifoQueue # noqa
|
|
else:
|
|
from Queue import Queue, Empty, Full, PriorityQueue, LifoQueue # noqa
|