summaryrefslogtreecommitdiff
path: root/apscheduler
Commit message (Expand)AuthorAgeFilesLines
* Handle naive datetimes passed as next_run_timeBrendan McCollam2014-06-273-10/+7
* Fixed wrong number of arguments to _run_job_error()Alex Grönholm2014-06-181-1/+1
* Bumped version to 3.0.0b1v3.0.0b1Alex Grönholm2014-06-181-4/+4
* Defer replacing undefined options with defaults until the job is really sched...Alex Grönholm2014-06-183-20/+44
* Finished the "Extending APScheduler" documentationAlex Grönholm2014-06-173-2/+4
* Format tracebacks before trying to pass them from run_job() because they aren...Alex Grönholm2014-06-163-5/+13
* Raise ValueError instead of KeyError when attempting to add an executor or jo...Alex Grönholm2014-06-161-2/+4
* Added entry points for executors and job stores tooAlex Grönholm2014-06-1610-30/+106
* Accept the max_workers parameter as a string tooAlex Grönholm2014-06-161-2/+2
* Made the wakeup() method publicAlex Grönholm2014-06-166-19/+22
* Fixed infinite loop and index corruption in MemoryJobStoreAlex Grönholm2014-06-161-34/+45
* Separated the two pool executors to different classes and moved the debug exe...Alex Grönholm2014-06-153-38/+44
* Added the prefix option to configure()Alex Grönholm2014-06-151-2/+7
* Made the trigger plugins/classes lists privateAlex Grönholm2014-06-151-5/+5
* Added unit tests for the BaseScheduler classAlex Grönholm2014-06-159-154/+174
* Stop looking for due jobs when the first non-matching job is foundAlex Grönholm2014-06-131-2/+3
* Added __slots__ to the trigger classesAlex Grönholm2014-06-133-0/+6
* Changed the trigger API to allow it to work with run times in the pastAlex Grönholm2014-05-316-34/+35
* Fixed AsyncIO not getting tested on Python 3.2 and lowerAlex Grönholm2014-05-301-1/+4
* Overhauled the tests for apscheduler.util moduleAlex Grönholm2014-05-301-2/+2
* 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-307-99/+147
* Revised the rest of the documentationAlex Grönholm2014-05-292-3/+36
* Removed job run counting and the max_runs options since they could not be rel...Alex Grönholm2014-05-282-34/+9
* Fixed invocation of scheduler.modify_job()Alex Grönholm2014-05-281-2/+26
* Respect the scheduler defaults in @scheduled_job()Alex Grönholm2014-05-281-3/+4
* Fixed signatures of job store constructors to show the correct default value ...Alex Grönholm2014-05-281-1/+2
* Fixed the signature of the add_job() method in the docsAlex Grönholm2014-05-281-5/+6
* Added API documentation for apscheduler.eventsAlex Grönholm2014-05-281-10/+10
* Added API documentation for job storesAlex Grönholm2014-05-283-15/+37
* Moved scheduler documentation to the appropriate API documentation locationsAlex Grönholm2014-05-285-5/+40
* Moved the trigger documentation to the API documentationAlex Grönholm2014-05-283-35/+39
* Updated API documentationAlex Grönholm2014-05-282-2/+14
* Fixed OverflowError on WindowsAlex Grönholm2014-05-282-3/+3
* 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-262-10/+12
* Renamed alias -> jobstore_aliasAlex Grönholm2014-05-261-3/+3
* Added apscheduler.__version__ for PEP 396 compliancyAlex Grönholm2014-05-261-0/+2
* Removed the JobHandle classAlex Grönholm2014-05-267-120/+93
* Added the end_date parameter to the cron and interval triggersAlex Grönholm2014-05-264-17/+46
* Stricter timezone checkingAlex Grönholm2014-05-261-1/+3
* Fixed DST crossover handling in the Cron triggerAlex Grönholm2014-05-261-2/+4
* Replaced python-dateutil with pytz and tzlocal because dateutil can't handle ...Alex Grönholm2014-05-196-62/+38
* Fixed too long maximum wait time on Python 3Alex Grönholm2014-05-191-3/+3
* Fixed Ctrl+C not exiting the process after there are no more jobs to runAlex Grönholm2014-05-111-1/+3
* Fixed the positional-only arguments testAlex Grönholm2014-05-111-1/+5
* Added configurable job defaults for max_instances and max_runs and enabled a ...Alex Grönholm2014-04-213-20/+32
* Used inspect.signature() to check arguments to otherwise uninspectable callablesAlex Grönholm2014-04-212-54/+112
* Automatically remove jobs that fail to deserialize or whose executor is not f...Alex Grönholm2014-04-204-10/+30
* Minor consistency fixes for docstringsAlex Grönholm2014-04-202-6/+6