summaryrefslogtreecommitdiff
path: root/apscheduler/job.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed flake8 errorsAlex Grönholm2018-12-051-0/+1
* Import Iterable, Mapping from collections.abc (#347)Roman Levin2018-12-041-1/+4
* Fixed class methods being mistaken for instance methodsv3.5.3Alex Grönholm2018-08-141-3/+4
* Fixed scheduling of bound methods on persistent job storesAlex Grönholm2018-08-101-1/+8
* Added method chaining for some Job methods and related methods in the schedulerAlex Grönholm2016-01-071-0/+12
* Improved PEP 8 and PEP 257 compliancyAlex Grönholm2015-12-111-24/+41
* Replaced six.u('') with u''Alex Grönholm2015-12-101-1/+1
* Allow unicode function references for jobs on Python 2Alex Grönholm2015-12-051-1/+1
* Fixed str(job) or unicode(job) raising an exception for pending jobs (fixes #67)Alex Grönholm2015-03-091-3/+7
* Added an explicit note about the effects of misfire_grace_timeAlex Grönholm2015-03-071-2/+6
* Raise exception when attempting to serialize a job that doesn't have func_ref...Alex Grönholm2014-10-191-0/+6
* Handle naive datetimes passed as next_run_timeBrendan McCollam2014-06-271-7/+5
* Defer replacing undefined options with defaults until the job is really sched...Alex Grönholm2014-06-181-1/+0
* Added unit tests for the BaseScheduler classAlex Grönholm2014-06-151-1/+1
* Changed the trigger API to allow it to work with run times in the pastAlex Grönholm2014-05-311-6/+5
* Overhauled the tests for Job classAlex Grönholm2014-05-301-1/+2
* Tweaked the scheduler and job stores API and added the reschedule_job() methodAlex Grönholm2014-05-301-32/+19
* Revised the rest of the documentationAlex Grönholm2014-05-291-0/+4
* Removed job run counting and the max_runs options since they could not be rel...Alex Grönholm2014-05-281-21/+2
* Fixed invocation of scheduler.modify_job()Alex Grönholm2014-05-281-2/+26
* Removed commented code and improved the docstrings in the Job classAlex Grönholm2014-05-261-9/+21
* Marked Job.get_run_times() as privateAlex Grönholm2014-05-261-9/+11
* Removed the JobHandle classAlex Grönholm2014-05-261-80/+43
* Used inspect.signature() to check arguments to otherwise uninspectable callablesAlex Grönholm2014-04-211-53/+4
* Harmonized docstrings and switched to PyCharm conventions in type referencesAlex Grönholm2014-04-181-1/+6
* Use non-ascii strings as id and name in the job defaults to catch unicode pro...Alex Grönholm2014-04-121-2/+2
* Simplified the job store API and harmonized the Mongo/SQLAlchemy job store im...Alex Grönholm2014-04-101-16/+15
* Replaced the thread pool with a pluggable executor systemAlex Grönholm2014-04-061-32/+16
* Py3k and other minor fixes and cleanupsAlex Grönholm2014-04-021-8/+13
* Changed the syntax for adding a new jobAlex Grönholm2014-04-011-45/+184
* Removed the Job.compute_next_run_time() methodAlex Grönholm2014-03-101-8/+0
* Enabled proper modification of the job's callableAlex Grönholm2014-03-091-23/+26
* Modified JobHandle to use the job state when looking up Job attributesAlex Grönholm2014-03-091-39/+25
* Return JobHandles instead of Jobs from the scheduler's public methodsAlex Grönholm2014-03-091-27/+84
* Removed the NoSchedulerAttachedError exceptionAlex Grönholm2014-03-091-11/+0
* Added a method to modify jobsAlex Grönholm2014-03-091-5/+14
* Added the remove() method to JobAlex Grönholm2014-03-091-3/+26
* Overhauled the job store system and ditched ShelveJobStore and RedisJobStore ...Alex Grönholm2014-03-091-18/+45
* Got rid of apscheduler's own py3k compatibility functions in favor of "six"Alex Grönholm2013-07-271-2/+4
* Added timezone awarenessAlex Grönholm2013-07-271-2/+2
* Removed trigger specific methods from Scheduler, making the API more genericAlex Grönholm2013-06-291-32/+3
* Changed line length limit from 79 characters to 120 and reformatted the code ...Alex Grönholm2013-03-031-21/+14
* Dropped support for Python 2.5Alex Grönholm2013-03-031-8/+2
* Added support for scheduling callables by textual referencesAlex Grönholm2013-03-031-7/+17
* Documentation improvementsAlex Grönholm2012-12-301-12/+15
* Fixed PEP 8 issuesAlex Grönholm2012-09-041-2/+2
* Modified Job.add_instance to raise an exception when attempting to exceed max...agronholm2011-04-121-2/+10
* Readded Scheduler.unschedule_func(), which now raises a KeyError when no matc...agronholm2011-04-111-7/+7
* Made ShelveJobStore store the state of the job, not the actual object and pre...agronholm2011-04-101-1/+3
* Replaced misfire actions with the coalesce optionagronholm2011-04-101-9/+26