diff options
Diffstat (limited to 'Lib/calendar.py')
-rw-r--r-- | Lib/calendar.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/calendar.py b/Lib/calendar.py index 62fb27f..13c8bbb 100644 --- a/Lib/calendar.py +++ b/Lib/calendar.py @@ -31,6 +31,7 @@ error = 'calendar error' # Turn seconds since epoch into calendar time def gmtime(secs): if secs < 0: raise error, 'negative input to gmtime()' + secs = int(secs) mins, secs = divmod(secs, 60) hours, mins = divmod(mins, 60) days, hours = divmod(hours, 24) @@ -146,7 +147,7 @@ def monthcalendar(year, month): key = `year` + month_abbr[month] try: return mc_cache[key] - except IOError: + except KeyError: mc_cache[key] = ret = _monthcalendar(year, month) return ret |