MCPcopy Index your code
hub / github.com/python/cpython / _prevmonth

Function _prevmonth

Lib/calendar.py:199–203  ·  view source on GitHub ↗
(year, month)

Source from the content-addressed store, hash-verified

197
198
199def _prevmonth(year, month):
200 if month == 1:
201 return year-1, 12
202 else:
203 return year, month-1
204
205
206def _nextmonth(year, month):

Callers 1

itermonthdays3Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…