Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

gh-117398: datetime: Use wrappers for C-API functions #118115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 9 commits into from
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
remove new_datetime_nofold()
  • Loading branch information
neonene committed Apr 21, 2024
commit 987ba373e99adb7419ac646e1ff7db5e4e06c984
53 changes: 20 additions & 33 deletions 53 Modules/_datetimemodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -990,34 +990,10 @@ new_date_capi(int year, int month, int day, PyTypeObject *type)
return _new_date(year, month, day, type);
}

// Forward declaration
static inline PyObject *
new_datetime_nofold(int, int, int, int, int, int, int, PyObject *, PyTypeObject *);

/* Create date instance with no range checking, or call subclass constructor */
static inline PyObject *
new_date_subclass(int year, int month, int day, PyObject *cls)
{
PyObject *result;
// We have "fast path" constructors for two subclasses: date and datetime
if ((PyTypeObject *)cls == &PyDateTime_DateType) {
result = _new_date(year, month, day, (PyTypeObject *)cls);
}
else if ((PyTypeObject *)cls == &PyDateTime_DateTimeType) {
result = new_datetime_nofold(year, month, day, 0, 0, 0, 0, Py_None,
(PyTypeObject *)cls);
}
else {
result = PyObject_CallFunction(cls, "iii", year, month, day);
}

return result;
}

/* Create a datetime instance with no range checking. */
static inline PyObject *
_new_datetime(int year, int month, int day, int hour, int minute,
int second, int usecond, PyObject *tzinfo, int fold, PyTypeObject *type)
_new_datetime(int year, int month, int day, int hour, int minute, int second,
int usecond, PyObject *tzinfo, int fold, PyTypeObject *type)
{
PyDateTime_DateTime *self;
char aware = tzinfo != Py_None;
Expand Down Expand Up @@ -1048,22 +1024,33 @@ _new_datetime(int year, int month, int day, int hour, int minute,
return (PyObject *)self;
}

/* Create date instance with no range checking, or call subclass constructor */
static inline PyObject *
new_datetime_nofold(int year, int month, int day, int hour, int minute,
int second, int usecond, PyObject *tzinfo,
PyTypeObject *type)
new_date_subclass(int year, int month, int day, PyObject *cls)
{
return _new_datetime(year, month, day, hour, minute, second,
usecond, tzinfo, 0, type);
PyObject *result;
// We have "fast path" constructors for two subclasses: date and datetime
if ((PyTypeObject *)cls == &PyDateTime_DateType) {
result = _new_date(year, month, day, (PyTypeObject *)cls);
}
else if ((PyTypeObject *)cls == &PyDateTime_DateTimeType) {
result = _new_datetime(year, month, day, 0, 0, 0, 0, Py_None, 0,
(PyTypeObject *)cls);
}
else {
result = PyObject_CallFunction(cls, "iii", year, month, day);
}

return result;
}

static PyObject *
new_datetime_nofold_capi(int year, int month, int day, int hour, int minute,
int second, int usecond, PyObject *tzinfo,
PyTypeObject *type)
{
return new_datetime_nofold(year, month, day, hour, minute, second,
usecond, tzinfo, type);
return _new_datetime(year, month, day, hour, minute, second,
usecond, tzinfo, 0, type);
}

static PyObject *
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.