Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
187
def
_nextmonth(year, month):
188
if
month == 12:
189
return
year+1, 1
190
else
:
191
return
year, month+1
192
193
194
class
Calendar(object):
Callers
1
itermonthdays3
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected