summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* Moved job processing to its own method, making it more suitable for unit testingagronholm2011-02-061-22/+28
* Renamed CHANGES.txt and README.txt to CHANGES.rst and README.rst respectively...agronholm2011-01-233-1/+1
* Extended the range of supported Python versions to Python 3.2agronholm2011-01-232-1/+8
* Added pymongo/pymongo3 to testing dependenciesagronholm2011-01-221-0/+4
* Fixed the SQLAlchemy job store testagronholm2011-01-221-3/+2
* 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-192-3/+121
* 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 wrong expected string in test_to_unicode()agronholm2010-12-191-1/+1
* Readded the Python 3 classifier so APScheduler will show up on PyPI's Python ...agronholm2010-12-181-0/+1
* Expanded test coverageagronholm2010-12-132-0/+140
* 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-132-45/+29
* Harmonized the str() implementations in triggers and added missing tests for ...agronholm2010-12-132-7/+21
* 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-123-34/+62
* Misc updates regarding v2.0agronholm2010-12-121-3/+13
* Added test for date trigger with date as textagronholm2010-12-121-0/+6
* Added persistent job store exampleagronholm2010-12-121-0/+33
* 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 simple example demonstrating the use of interval schedulingagronholm2010-12-121-0/+27
* Update docs to match the new semanticsagronholm2010-12-123-12/+39
* Major overhaul of the main documentation pageagronholm2010-12-121-49/+140
* Documenting the job module no longer serves a purposeagronholm2010-12-121-12/+0
* Added maybe_ref() and tests for text to datetime conversionagronholm2010-12-122-17/+33
* Modified the thread pool and the scheduler to enable use of any PEP 3148 comp...agronholm2010-11-283-8/+9
* Updated docstring for add_job()agronholm2010-11-281-5/+5
* Run the correct test command with py3kagronholm2010-11-051-0/+1
* Added migration instructionsagronholm2010-10-111-0/+24
* Merged parse_datestring to convert_to_datetime, and made cron and interval tr...agronholm2010-10-113-35/+31
* Docstring fixesagronholm2010-10-111-11/+7
* Added the "extending apscheduler" documentationagronholm2010-10-101-0/+44
* Python 2.7's multiprocessing module is having trouble on Ubuntu Maverick, so ...agronholm2010-10-101-0/+3
* Major design shift -- dropped clustering and stateful job support in favor of...agronholm2010-10-0915-520/+609
* Return jobs as a list instead of tuple for consistency with other backends; d...agronholm2010-10-081-2/+3
* Fixed tests (checkin_time should have been checkout_time)agronholm2010-10-081-2/+2
* Fixed thread pool implementation (changed semantics to more closely resemble ...agronholm2010-10-082-36/+29
* 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-162-34/+96
* 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