| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
(GH-109494)
|
| |
|
|
|
|
|
| |
Co-authored-by: Paul Ganssle <1377457+pganssle@users.noreply.github.com>
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
|
|
|
|
|
|
|
|
|
| |
It creates a modified copy of an object by calling the object's
__replace__() method.
It is a generalization of dataclasses.replace(), named tuple's _replace()
method and replace() methods in various classes, and supports all these
stdlib classes.
|
|
|
| |
They used "datetime" to refer to both the object and the module.
|
|
|
|
|
| |
Without the change to the reprs, pure-python classes would have a repr
of `datetime._pydatetime.time`, etc.
|
|
This breaks the tests, but we are keeping it as a separate commit so
that the move operation and editing of the moved files are separate, for
a cleaner history.
|