summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Carrillo <ben@futeisha.org>2014-07-07 11:29:02 -0500
committerBen Carrillo <ben@futeisha.org>2014-07-07 11:29:02 -0500
commit70637e1fb8197560293694aec45aca60c188e963 (patch)
tree23b9c72c1e119a46f7082036491717b43ee2b082
parentbfeef9c6827f4cfd0b40e55927a3183f5e4a9f21 (diff)
remove egg-info and pycs from git
-rw-r--r--.gitignore2
-rw-r--r--taskthread.egg-info/PKG-INFO79
-rw-r--r--taskthread.egg-info/SOURCES.txt18
-rw-r--r--taskthread.egg-info/dependency_links.txt1
-rw-r--r--taskthread.egg-info/top_level.txt1
5 files changed, 2 insertions, 99 deletions
diff --git a/.gitignore b/.gitignore
index ef7b95c..5991e8f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,5 @@
+*.pyc
+*.egg-info
*.py[cod]
# C extensions
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 <http://taskthread.readthedocs.org/en/latest/>`_
- * `source <http://github.com/hpcs-som/taskthread/>`_
-
-
- 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
diff --git a/taskthread.egg-info/SOURCES.txt b/taskthread.egg-info/SOURCES.txt
deleted file mode 100644
index e676550..0000000
--- a/taskthread.egg-info/SOURCES.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-.gitignore
-.travis.yml
-LICENSE
-Makefile
-README.rst
-setup.py
-test-requirements.txt
-docs/Makefile
-docs/conf.py
-docs/index.rst
-taskthread/__init__.py
-taskthread.egg-info/PKG-INFO
-taskthread.egg-info/SOURCES.txt
-taskthread.egg-info/dependency_links.txt
-taskthread.egg-info/top_level.txt
-taskthread/tests/__init__.py
-taskthread/tests/unit/__init__.py
-taskthread/tests/unit/test_taskthread.py \ No newline at end of file
diff --git a/taskthread.egg-info/dependency_links.txt b/taskthread.egg-info/dependency_links.txt
deleted file mode 100644
index 8b13789..0000000
--- a/taskthread.egg-info/dependency_links.txt
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/taskthread.egg-info/top_level.txt b/taskthread.egg-info/top_level.txt
deleted file mode 100644
index 23228ee..0000000
--- a/taskthread.egg-info/top_level.txt
+++ /dev/null
@@ -1 +0,0 @@
-taskthread