summaryrefslogtreecommitdiff
path: root/apscheduler
Commit message (Expand)AuthorAgeFilesLines
* Harmonized the behavior of persistent job stores somewhat and added the close...agronholm2011-02-084-43/+29
* Added an extra bit of thread safety to ThreadPool.shutdown()agronholm2011-02-071-2/+5
* Improved the get_callable_name functionagronholm2011-02-071-6/+10
* Made alias a mandatory parameter for add_jobstoreagronholm2011-02-071-8/+3
* Fixed jobstore configuration from options dictagronholm2011-02-071-3/+4
* Moved the bson.binary import to the try...except block since it is provided b...agronholm2011-02-061-2/+1
* Removed an unused import (StringIO) and an unused constant (PICKLE_PROTOCOL)agronholm2011-02-061-10/+0
* Decorators now add the "job" attribute to functions they schedule as jobs; sc...agronholm2011-02-061-3/+3
* Removed __lt__ from Job -- it has no use really, and would require __gt__ to ...agronholm2011-02-061-5/+0
* Moved job processing to its own method, making it more suitable for unit testingagronholm2011-02-061-22/+28
* Unified dict iteration in py2.x/3.xagronholm2011-01-222-5/+5
* Made the version information more like what Python itself offers in the "sys"...agronholm2011-01-221-3/+3
* Added unified support for specifying the Pickle protocol version for persiste...agronholm2011-01-223-29/+38
* Added MongoDB job store; fixed py3k compatibility issues in testjobstores.pyagronholm2010-12-191-0/+94
* Added better dict_values() and similar functions for keys and items tooagronholm2010-12-191-5/+8
* Fixed ImportError in py3kagronholm2010-12-191-1/+5
* Fixed a py3k dict semantics issue in ShelveJobStore with the new dict_values(...agronholm2010-12-192-3/+11
* Fixed comparisons; don't leave func_ref in __dict__; check for instances == 0...agronholm2010-12-131-4/+8
* Make lock into a protected variableagronholm2010-12-131-7/+8
* Dropped the use of SQLAlchemy ORM to prevent instrumentation of the Job classagronholm2010-12-131-43/+27
* Harmonized the str() implementations in triggers and added missing tests for ...agronholm2010-12-131-7/+7
* Fixed tracking of running instance counts of jobs; only update/delete job aft...agronholm2010-12-122-11/+25
* Restrict the use of job store aliases to the scheduleragronholm2010-12-122-14/+7
* Remove jobs when they are finishedagronholm2010-12-121-1/+6
* shelve.open() needs to be called with flags='c' in all casesagronholm2010-12-121-14/+12
* Allow the scheduler to use an existing thread poolagronholm2010-12-121-3/+6
* Added maybe_ref() and tests for text to datetime conversionagronholm2010-12-121-1/+12
* Modified the thread pool and the scheduler to enable use of any PEP 3148 comp...agronholm2010-11-282-3/+4
* Updated docstring for add_job()agronholm2010-11-281-5/+5
* Merged parse_datestring to convert_to_datetime, and made cron and interval tr...agronholm2010-10-113-35/+31
* Docstring fixesagronholm2010-10-111-11/+7
* Major design shift -- dropped clustering and stateful job support in favor of...agronholm2010-10-099-430/+322
* Return jobs as a list instead of tuple for consistency with other backends; d...agronholm2010-10-081-2/+3
* Fixed thread pool implementation (changed semantics to more closely resemble ...agronholm2010-10-081-27/+26
* Story only weak references to thread pools in the module level variableagronholm2010-09-161-3/+6
* Thread pools now handle interpreter exits gracefully, thanks to advice from B...agronholm2010-09-161-20/+66
* Take into consideration the possibility that some job stores may not have a n...agronholm2010-09-061-1/+2
* Don't make jobmetas transient before flushing the changesagronholm2010-09-061-2/+3
* Swapped positions of the "url" and "engine" argumentsagronholm2010-09-061-1/+1
* Renamed checkin_time to checkout_time for correctness; added the checkout_tim...agronholm2010-09-053-7/+8
* Made add_simple_job a public method, improved docstringsagronholm2010-09-051-8/+19
* Docstring fixesagronholm2010-09-051-3/+3
* Use space as separator of date and timeagronholm2010-08-121-1/+1
* Added the start_date optionagronholm2010-08-121-5/+13
* Fixed some arguments and docstringsagronholm2010-08-121-12/+20
* Added the parse_datestring functionagronholm2010-08-101-1/+22
* Removed JobMeta level max_runs and runs, those will be handled on the trigger...agronholm2010-08-105-34/+27
* Added a slightly more informative error message if the specified job store is...agronholm2010-08-051-2/+9
* Removed max_running_instances since it's not supported anywayagronholm2010-08-051-1/+1
* Removed SchedulerShutdownError (wasn't used anywhere any more)agronholm2010-08-051-14/+6