Skip to content

Commit 8a63053

Browse files
author
Michael Usachenko
committed
ModuleNotFoundError fixed?
1 parent 438969f commit 8a63053

13 files changed

+7
-166
lines changed

AsyncPQ.egg-info/PKG-INFO

-12
This file was deleted.

AsyncPQ.egg-info/SOURCES.txt

-9
This file was deleted.

AsyncPQ.egg-info/dependency_links.txt

-1
This file was deleted.

AsyncPQ.egg-info/top_level.txt

-1
This file was deleted.

AsyncPQ/AsQueue.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
class AsyncQueue(object):
23

34
def __init__(self, classDict = {}):

AsyncPQ/AsyncPriorityQueue.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import ASPQ_Wrapper as apq
1+
from ASPQ_Wrapper import AsyncPQueue
22
from asQueue import AsyncQueue
33

44
class AsyncPriorityQueue(AsyncQueue):
55

66
def __init__(self, classDict = {}):
77

88
super().__init__(classDict)
9-
self.asyncQueue = apq.AsyncPQueue()
9+
self.asyncQueue = AsyncPQueue()
1010

1111
def addTask(self, priority, functionRef, *funcArgs):
1212
self.asyncQueue.addQUnit(functionRef, funcArgs, priority)

AsyncPQ/AsyncReadWriteQueue.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import ASPQ_Wrapper as apq
1+
from ASPQ_Wrapper import AsyncRWQueue
22
from asQueue import AsyncQueue
33

44
class AsyncReadWriteQueue(AsyncQueue):
55

66
def __init__(self, classDict = {}):
77

88
super().__init__(classDict)
9-
self.asyncQueue = apq.AsyncRWQueue()
9+
self.asyncQueue = AsyncRWQueue()
1010
self.WRITE_PRIORITY = 1
1111
self.READ_PRIORITY = 0
1212

build/lib/AsyncPQ/ASPQ_Wrapper.py

-79
This file was deleted.

build/lib/AsyncPQ/AsyncPQ.py

-58
This file was deleted.

build/lib/AsyncPQ/__init__.py

Whitespace-only changes.

dist/AsyncPQ-0.2-py2-none-any.whl

-3.34 KB
Binary file not shown.

dist/AsyncPQ-0.2.tar.gz

-1.9 KB
Binary file not shown.

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
setup(
44
name = 'AsyncPQ',
55
packages = ['AsyncPQ'], # this must be the same as the name above
6-
version = '0.2',
6+
version = '0.4',
77
description = 'Low overhead, dead simple Asyncronous Priority Queue',
88
author = 'Michael Usachenko',
99
author_email = '[email protected]',
1010
url = 'https://github.com/themichaelusa/AsyncPQ', # use the URL to the github repo
11-
download_url = 'https://github.com/themichaelusa/AsyncPQ/archive/0.2.tar.gz', # I'll explain this in a second
11+
download_url = 'https://github.com/themichaelusa/AsyncPQ/archive/0.4.tar.gz', # I'll explain this in a second
1212
keywords = ['async', 'priority', 'queue'], # arbitrary keywords
1313
classifiers = [],
1414
)

0 commit comments

Comments
 (0)