botant / py-business-calendar

Business days and custom calendar calculations for Python
MIT License
26 stars 11 forks source link

The results of the busdaycount() and range() are not consistent #8

Open truderung opened 4 years ago

truderung commented 4 years ago

This happens because different approachs are used.

busdycount(): Note: The adopted notation is COB to COB, so effectively date1 is not included in the calculation result.

range(): Note: All business days between date1 (inc) and date2 (exc) are returned, and date2 must be bigger than date1.