Hanaasagi

Results 48 comments of Hanaasagi

A quick but not elegant fix is changing https://github.com/agronholm/apscheduler/blob/ab991eb29eedb0943356c4d7ddca8320e7845965/apscheduler/triggers/combining.py#L54-L56 to ```Python while True: fire_times = [trigger.get_next_fire_time(None, now) for trigger in self.triggers] ```

I think this problem is not same as #281 >The actual problem is that because IntervalTrigger starts counting from current time, it never agrees with the CronTrigger because CronTrigger never...

One way to fix this problem is check the cap of `params` everytime when we use.

@arashilmg It works for me.

In Python 2.7, it's ok. Because Python 2.7 `timeit.default_timer` is just `time.time`. [timeit.py#L75](https://github.com/python/cpython/blob/2.7/Lib/timeit.py#L75) ```Python if sys.platform == "win32": # On Windows, the best timer is time.clock() default_timer = time.clock else:...

Know little about PyPy, it's behavior is different from Python :joy:

Hello, are there any questions about this PR?

@raminrasoulinezhad From the error message ``` _line_profiler.c:4:10: fatal error: Python.h: No such file or directory ``` Maybe you can find the solution here https://stackoverflow.com/questions/21530577/fatal-error-python-h-no-such-file-or-directory.