mirror of
https://github.com/9001/copyparty.git
synced 2025-08-16 08:32:13 -06:00
add missing polyfill
This commit is contained in:
parent
5384c2e0f5
commit
f05cc18d61
13
.gitignore
vendored
13
.gitignore
vendored
|
@ -5,14 +5,15 @@ __pycache__/
|
|||
MANIFEST.in
|
||||
MANIFEST
|
||||
copyparty.egg-info/
|
||||
buildenv/
|
||||
build/
|
||||
dist/
|
||||
py2/
|
||||
sfx/
|
||||
unt/
|
||||
.venv/
|
||||
|
||||
/buildenv/
|
||||
/build/
|
||||
/dist/
|
||||
/py2/
|
||||
/sfx/
|
||||
/unt/
|
||||
|
||||
# ide
|
||||
*.sublime-workspace
|
||||
|
||||
|
|
4
scripts/py2/queue/__init__.py
Normal file
4
scripts/py2/queue/__init__.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
# coding: utf-8
|
||||
from __future__ import print_function, unicode_literals
|
||||
|
||||
from Queue import Queue, LifoQueue, PriorityQueue, Empty, Full
|
Loading…
Reference in a new issue