From 70637e1fb8197560293694aec45aca60c188e963 Mon Sep 17 00:00:00 2001 From: Ben Carrillo Date: Mon, 7 Jul 2014 11:29:02 -0500 Subject: remove egg-info and pycs from git --- taskthread.egg-info/PKG-INFO | 79 -------------------------------------------- 1 file changed, 79 deletions(-) delete mode 100644 taskthread.egg-info/PKG-INFO (limited to 'taskthread.egg-info/PKG-INFO') diff --git a/taskthread.egg-info/PKG-INFO b/taskthread.egg-info/PKG-INFO deleted file mode 100644 index 5dc1fe1..0000000 --- a/taskthread.egg-info/PKG-INFO +++ /dev/null @@ -1,79 +0,0 @@ -Metadata-Version: 1.0 -Name: taskthread -Version: 1.4 -Summary: Simple thread module to repetitively perform a task on a single thread -Home-page: http://hpcloud.com -Author: John Herndon -Author-email: john.herndon@hp.com -License: Apache -Description: TaskThread - ========== - - Python thread module to repeat an predefined task on a thread mulitple times. - A TaskThread is useful when a task needs to be repeated several times on - a separate thread. Normal usage of the threading.Thread class would call for - creation of a new thread each time the same task needs to be run. This module - allows for repetitive tasks to be run multiple times on the same thread by having - the thread wait until the task needs to be executed again. - - - Provided Classes - ---------------- - ``taskthread.TaskThread``` - A sub-class of ``threading.Thread`` that may execute a single task - multiple times without the overhead of starting a new thread. - ``taskthread.TaskInProcessException`` - Exception that is thrown if a task is started on a thread that is - already executing. - - - Installation - ------------ - - *taskthread* may be installed by executing ``pip install taskthread``. - - - Links - ------------- - - * `documentation `_ - * `source `_ - - - Changes - ------- - - v1.4 - ~~~~ - - * **ADD** ``TimerTask`` class that runs a repetitive task on a taskthread. - - - v1.3 - ~~~~ - - * Change task loop to support python 2.6. - - - v1.2 - ~~~~ - - * Refactor the module so classes are defined in __init__.py. - - - v1.1 - ~~~~ - - * **ADD** ``TaskThread.join_task`` method that waits for the currently executing. - task to complete. - - - v1.0 - ~~~~ - - * First release - - - - -Platform: UNKNOWN -- cgit v1.2.3