MCPcopy Index your code
hub / github.com/RustPython/RustPython / _nextmonth

Function _nextmonth

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

Source from the content-addressed store, hash-verified

185
186
187def _nextmonth(year, month):
188 if month == 12:
189 return year+1, 1
190 else:
191 return year, month+1
192
193
194class Calendar(object):

Callers 1

itermonthdays3Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected