Skip to content

Commit

Permalink
version 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vladcalin committed Mar 27, 2017
1 parent c63419b commit 62dd1c2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 5 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changes
=======

0.10.1 (27.03.2017)
-------------------

- removed some forgotten debug messages


0.10.0 (23.03.2017)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion gemstone/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
__author__ = "Vlad Calin"
__email__ = "vlad.s.calin@gmail.com"

__version__ = "0.10.0"
__version__ = "0.10.1"

__all__ = [
# core classes
Expand Down
2 changes: 0 additions & 2 deletions gemstone/core/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,8 @@ def get_exposed_methods(self):
def get_event_handlers(self):
handlers = []
for item in self._iter_methods():
print(item, getattr(item, "_event_handlers", False))
if getattr(item, "_event_handlers", False):
handlers.append(item)
print(handlers)
return handlers

def _iter_methods(self):
Expand Down

0 comments on commit 62dd1c2

Please sign in to comment.