MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / ctime

Method ctime

tools/python-3.11.9-amd64/Lib/datetime.py:1020–1026  ·  view source on GitHub ↗

Return ctime() style string.

(self)

Source from the content-addressed store, hash-verified

1018
1019
1020 def ctime(self):
1021 "Return ctime() style string."
1022 weekday = self.toordinal() % 7 or 7
1023 return "%s %s %2d 00:00:00 %04d" % (
1024 _DAYNAMES[weekday],
1025 _MONTHNAMES[self._month],
1026 self._day, self._year)
1027
1028 def strftime(self, fmt):
1029 """

Callers 7

__init__Method · 0.45
htmlFunction · 0.45
textFunction · 0.45
load_statsMethod · 0.45
flattenMethod · 0.45
get_cnonceMethod · 0.45
build_digest_headerMethod · 0.45

Calls 1

toordinalMethod · 0.95

Tested by

no test coverage detected