-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
58 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,78 @@ | ||
FIXME: add a description | ||
|
||
// If you want to factorize the description uncomment the following line and create the file. | ||
//include::../description.adoc[] | ||
:object_replacement_protocol: https://docs.python.org/3/library/copy.html#object.__replace__ | ||
|
||
== Why is this an issue? | ||
|
||
FIXME: remove the unused optional headers (that are commented out) | ||
Calling ``++copy.replace(...)++`` with an argument of an unsupported type will raise an ``++TypeError++``. | ||
Types supported by ``++copy.replace(...)++`` must implement the {object_replacement_protocol}[replace protocol]. | ||
|
||
The following built-in types are supported by ``++copy.replace(...)++`` | ||
|
||
//=== What is the potential impact? | ||
* ``++collections.namedtuple()++`` | ||
* ``++dataclasses.dataclass++`` | ||
* ``++datetime.datetime++``, ``++datetime.date++``, ``++datetime.time++`` | ||
* ``++inspect.Signature++``, ``++inspect.Parameter++`` | ||
* ``++types.SimpleNamespace++`` | ||
* https://docs.python.org/3/reference/datamodel.html#code-objects[code objects] | ||
|
||
== How to fix it | ||
//== How to fix it in FRAMEWORK NAME | ||
|
||
If the argument passed in is a class defined in this project then implementing the {object_replacement_protocol}[replace protocol] by defining the ``++__replace__++`` method. | ||
|
||
[source,python,diff-id=1,diff-type=compliant] | ||
---- | ||
class SomeClass: | ||
def __init__(self, name) | ||
self.name = name | ||
def __replace__(self, /, **changes) | ||
return SomeClass(changes.get("name", self.name)) | ||
---- | ||
|
||
=== Code examples | ||
|
||
==== Noncompliant code example | ||
|
||
[source,python,diff-id=1,diff-type=noncompliant] | ||
---- | ||
FIXME | ||
import copy | ||
class AClass: | ||
... | ||
a = AClass() | ||
b = copy.replace(a) # Noncompliant | ||
---- | ||
|
||
==== Compliant solution | ||
|
||
[source,python,diff-id=1,diff-type=compliant] | ||
---- | ||
FIXME | ||
---- | ||
import copy | ||
class AClass: | ||
... | ||
def __replace__(self, /, **changes): | ||
... | ||
//=== How does this work? | ||
a = AClass() | ||
b = copy.replace(a) # Compliant | ||
@dataclass | ||
class ADataClass: | ||
... | ||
c = ADataClass() | ||
d = copy.replace(c) # Compliant | ||
---- | ||
|
||
//=== Pitfalls | ||
=== Pitfalls | ||
|
||
//=== Going the extra mile | ||
Ensure that if the ``++__replace__++`` is implemented that the implementation creates a new object instead of updating the old one. | ||
|
||
|
||
//== Resources | ||
//=== Documentation | ||
//=== Articles & blog posts | ||
//=== Conference presentations | ||
//=== Standards | ||
//=== External coding guidelines | ||
//=== Benchmarks | ||
== Resources | ||
=== Documentation | ||
* https://docs.python.org/3/library/copy.html#copy.replace | ||
* https://docs.python.org/3/library/copy.html#object.\\__replace__ | ||
* https://docs.python.org/3/whatsnew/3.13.html#copy |