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

Function datum

Lib/turtledemo/clock.py:96–102  ·  view source on GitHub ↗
(z)

Source from the content-addressed store, hash-verified

94 return wochentag[t.weekday()]
95
96def datum(z):
97 monat = ["Jan.", "Feb.", "Mar.", "Apr.", "May", "June",
98 "July", "Aug.", "Sep.", "Oct.", "Nov.", "Dec."]
99 j = z.year
100 m = monat[z.month - 1]
101 t = z.day
102 return "%s %d %d" % (m, t, j)
103
104def tick():
105 t = datetime.today()

Callers 1

display_date_timeFunction · 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…