From a6d90c6463eaf2b0f344899d847bf58cb9df3bd0 Mon Sep 17 00:00:00 2001 From: Anael Beutot Date: Mon, 7 May 2012 16:11:23 +0200 Subject: [PATCH] Removed unused code. --- ccnode/utils.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/ccnode/utils.py b/ccnode/utils.py index 08943a7..62c7212 100644 --- a/ccnode/utils.py +++ b/ccnode/utils.py @@ -1,16 +1,3 @@ -import signal - - -def signal_(signum): - """Decorate a function to register as a handler to the signal.""" - - def decorator(func): - signal.signal(signum, func) - return func - - return decorator - - def and_(iter): """Do an and logic condition over the iterable element. -- GitLab