Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add getset names just in case
  • Loading branch information
neonene authored May 3, 2024
commit 5b63b304b71081e7f2d7a726ef4e53277faadb16
12 changes: 12 additions & 0 deletions Modules/_datetimemodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -7206,22 +7206,29 @@ pretty bizarre, and a tzinfo subclass can override fromutc() if it is.
_Py_ID(combine)
_Py_ID(ctime)
_Py_ID(date)
_Py_ID(day)
_Py_ID(days)
_Py_ID(dst)
_Py_ID(fold)
_Py_ID(fromisocalendar)
_Py_ID(fromisoformat)
_Py_ID(fromordinal)
_Py_ID(fromtimestamp)
_Py_ID(fromutc)
_Py_ID(hour)
_Py_ID(isocalendar)
_Py_ID(isoformat)
_Py_ID(isoweekday)
_Py_ID(max)
_Py_ID(microsecond)
_Py_ID(microseconds)
_Py_ID(min)
_Py_ID(minute)
_Py_ID(month)
_Py_ID(now)
_Py_ID(replace)
_Py_ID(resolution)
_Py_ID(second)
_Py_ID(seconds)
_Py_ID(strftime)
_Py_ID(strptime)
Expand All @@ -7232,10 +7239,15 @@ pretty bizarre, and a tzinfo subclass can override fromutc() if it is.
_Py_ID(today)
_Py_ID(toordinal)
_Py_ID(total_seconds)
_Py_ID(tzinfo)
_Py_ID(tzname)
_Py_ID(utc)
_Py_ID(utcfromtimestamp)
_Py_ID(utcnow)
_Py_ID(utcoffset)
_Py_ID(utctimetuple)
_Py_ID(week)
_Py_ID(weekday)
_Py_ID(year)

*/