espinielli / pycalcal

Calendrical Calculations in Python
Other
30 stars 10 forks source link

PyCalCal for Python 3 #4

Open pgr123 opened 4 years ago

pgr123 commented 4 years ago

I think I succeeded in porting PyCalCal for Python 3 with a version which works for Python 2 and Python 3.

So, if somebody is interested to test that version, thank you to let my a message. Good weekend. pgr123

rn123 commented 4 years ago

Had to make one small change to get it working with my Python 3.6:

-    from __builtin__ import round
+    from builtins import round
rn123 commented 4 years ago

Submitted a pull request.