add missing polyfill

This commit is contained in:
ed 2022-08-03 19:42:42 +02:00
parent 5384c2e0f5
commit f05cc18d61
2 changed files with 11 additions and 6 deletions

13
.gitignore vendored
View file

@ -5,14 +5,15 @@ __pycache__/
MANIFEST.in MANIFEST.in
MANIFEST MANIFEST
copyparty.egg-info/ copyparty.egg-info/
buildenv/
build/
dist/
py2/
sfx/
unt/
.venv/ .venv/
/buildenv/
/build/
/dist/
/py2/
/sfx/
/unt/
# ide # ide
*.sublime-workspace *.sublime-workspace

View file

@ -0,0 +1,4 @@
# coding: utf-8
from __future__ import print_function, unicode_literals
from Queue import Queue, LifoQueue, PriorityQueue, Empty, Full