summaryrefslogtreecommitdiff
path: root/apscheduler/triggers/cron
Commit message (Expand)AuthorAgeFilesLines
* Fixed CronTrigger with jitter producing fire times beyond end_dateAlex Grönholm2018-01-031-3/+2
* Allow multiple spaces in crontab format (#260)Luc Tielen2017-12-131-1/+1
* Allow spaces around commas in CronTrigger fieldsAlex Grönholm2017-12-121-6/+4
* Don't display empty jitter in the repr() of cron/interval triggersAlex Grönholm2017-12-121-3/+8
* Added support for creating cron triggers from crontab expressionsAlex Grönholm2017-12-121-0/+20
* Added support for named monthsAlex Grönholm2017-12-123-3/+39
* Added better validation for cron trigger expressionsAlex Grönholm2017-12-112-4/+37
* Implement random jitter option for CronTrigger and IntervalTrigger (#258)Gilbert Gilb's2017-12-101-9/+17
* Fixed the maximum value for CronTrigger's "year" fieldAlex Grönholm2017-11-261-1/+1
* Fixed passing start_time and/or end_time to CronTrigger and IntervalTrigger a...Alex Grönholm2016-11-051-2/+2
* Fixed CronTrigger's range expression allowing values outside of the rangeAlex Grönholm2016-08-021-15/+12
* Fixed positional weekday position expressions failing on Python 3Alex Grönholm2016-08-011-1/+1
* Fixed endless loop with CronTrigger on computers with low clock resolutionAlex Grönholm2016-06-131-0/+2
* Implemented __getstate__ and __setstate__ for trigger classes (fixes #121)Alex Grönholm2016-04-031-0/+24
* Added pickling tests for triggersAlex Grönholm2016-04-032-0/+14
* Added time zone to the output of CronTrigger and IntervalTriggerAlex Grönholm2016-04-021-1/+2
* Fixed off-by-1-hour bug in cron trigger while crossing the DST threshold (fix...Alex Grönholm2016-03-271-2/+1
* Improved PEP 8 and PEP 257 compliancyAlex Grönholm2015-12-113-28/+31
* Fixed infinite loop in the cron trigger if an expression only contained value...Alex Grönholm2015-12-091-1/+1
* add some CronTrigger testsliuchao122015-11-261-1/+1
* fix CronTrigger.get_next_fire_time() bug: calculate start_date problemliuchao122015-11-251-2/+2
* Added __slots__ to the trigger classesAlex Grönholm2014-06-131-0/+2
* Changed the trigger API to allow it to work with run times in the pastAlex Grönholm2014-05-311-5/+7
* Moved the trigger documentation to the API documentationAlex Grönholm2014-05-281-15/+19
* Added the end_date parameter to the cron and interval triggersAlex Grönholm2014-05-261-4/+18
* 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-191-19/+10
* Harmonized docstrings and switched to PyCharm conventions in type referencesAlex Grönholm2014-04-181-10/+9
* Use flake8 instead of the pep8 tool to uncover a broader variety of problemsAlex Grönholm2014-04-182-2/+4
* Minor code cleanupsAlex Grönholm2014-04-141-5/+5
* Fixed extraction of timezone from start_dateAlex Grönholm2014-04-131-1/+1
* Improved timezone support especially for the pytz module.Curtis Vogt2014-04-081-5/+15
* Made the timezone argument optional again where possibleAlex Grönholm2014-04-061-4/+5
* Made all triggers inherit BaseTrigger, for consistency with schedulers and ex...Alex Grönholm2014-04-061-2/+3
* Changed the syntax for adding a new jobAlex Grönholm2014-04-011-5/+6
* Got rid of apscheduler's own py3k compatibility functions in favor of "six"Alex Grönholm2013-07-271-1/+3
* Added timezone awarenessAlex Grönholm2013-07-271-8/+11
* Removed trigger specific methods from Scheduler, making the API more genericAlex Grönholm2013-06-291-11/+17
* Changed line length limit from 79 characters to 120 and reformatted the code ...Alex Grönholm2013-03-033-51/+34
* Fixed PEP 8 issuesAlex Grönholm2012-09-042-7/+7
* Fixed tests and LastDayOfMonthExpression representationrcaselli2012-03-021-1/+4
* Modified 'L' to 'last' in LastDayOfMonthExpression and added testsrcaselli2012-03-021-3/+3
* Added 'L' option support for DayOfMonthField of CronTriggerrcaselli2012-02-172-2/+16
* Integrate with None checking loop, change error and add testChristy O'Reilly2011-11-161-6/+3
* Error on invalid fieldsChristy O'Reilly2011-11-151-0/+5
* Fixed omitted cron fields getting wrong default valuesAlex Grönholm2011-05-301-2/+9
* Changed defaults for omitted fields to be more intuitiveAlex Grönholm2011-05-152-6/+19
* Fixed zero valued fields in cron trigger specificationagronholm2011-04-161-1/+1
* Roll back a minor change that caused failures on py2.4, 2.5 and pypyagronholm2011-04-091-1/+1
* Minor PEP 8 fixesagronholm2011-03-192-1/+3