PyEventEngine 0.3.0.post2__tar.gz → 0.3.0.post3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyEventEngine
3
- Version: 0.3.0.post2
3
+ Version: 0.3.0.post3
4
4
  Summary: Basic event engine
5
5
  Home-page: https://github.com/BolunHan/PyEventEngine.git
6
6
  Author: Bolun.Han
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyEventEngine
3
- Version: 0.3.0.post2
3
+ Version: 0.3.0.post3
4
4
  Summary: Basic event engine
5
5
  Home-page: https://github.com/BolunHan/PyEventEngine.git
6
6
  Author: Bolun.Han
@@ -0,0 +1,3 @@
1
+ __version__ = '0.3.0.post3'
2
+
3
+ from .native import *
@@ -153,7 +153,7 @@ class EventEngineBase(object):
153
153
  self._get_lock.acquire(blocking=True, timeout=None)
154
154
 
155
155
  try:
156
- event_dict = self._deque.pop()
156
+ event_dict = self._deque.popleft()
157
157
  except IndexError as e:
158
158
  if not self._active:
159
159
  return
@@ -1,3 +0,0 @@
1
- __version__ = '0.3.0.post2'
2
-
3
- from .native import *