Changeset 56

Show
Ignore:
Timestamp:
07/25/07 20:15:24 (1 year ago)
Author:
edsuom
Message:

Removed task queueing from Twisted-Goodies, as it is now on its own in the AsynQueue? project; updated sAsync to use asynqueue package instead of twisted_goodies.taskqueue

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • projects/sAsync/trunk/sasync/database.py

    r5 r56  
    3030import sqlalchemy as SA 
    3131 
    32 from twisted_goodies import misc, taskqueue 
     32import asynqueue 
     33import misc 
    3334 
    3435 
  • projects/sAsync/trunk/sasync/pdict.py

    r3 r56  
    2929from UserDict import DictMixin 
    3030from twisted.internet import defer 
    31 from twisted_goodies.misc import DeferredTracker 
     31from misc import DeferredTracker 
    3232 
    3333import items 
  • projects/Twisted-Goodies/trunk/setup.py

    r39 r56  
    4949 
    5050kw['keywords'] = [ 
    51     'Twisted', 'asynchronous', 'threads', 
    52     'taskqueue', 'queue', 'priority', 'tasks', 'jobs', 
     51    'Twisted', 'asynchronous', 
    5352    'web', 'fetch', 'patent', 'wget'] 
    5453 
     
    6463 
    6564kw['description'] = " ".join(""" 
    66 Asynchronous task queueing, HTTP fetching, cluster management, and other 
    67 goodies for the Twisted framework. 
     65Asynchronous HTTP fetching, cluster management, and other goodies for the 
     66Twisted framework. 
    6867""".split("\n")) 
    6968 
     
    7574| Sub-Package   | Description                                                 | 
    7675+===============+=============================================================+ 
    77 | taskqueue     | Asynchronous task queueing with a powerful worker/manager   | 
    78 |               | interface                                                   | 
    79 +---------------+-------------------------------------------------------------+ 
    8076| webfetch      | Fetching of web server content including PDFs of patent and | 
    8177|               | published patent applications from the USPTO servers.       | 
     
    8581| misc          | Miscellaneous goodies, including a deferred tracker for     | 
    8682|               | waiting on the firing of one or more deferreds without      | 
    87 |               | needing references to them.                                 | 
     83|               | needing references to them, a mixing for restricting        | 
     84|               | client addresses for your server factories, and a multi-    | 
     85|               | privilege Perspective Broker factory                        | 
    8886+---------------+-------------------------------------------------------------+ 
    8987