-
This is a little vague, but specifically what I'm thinking about is when a log message is trying to provide information by logging an object and said object doesn't have a to string, so we end up with…
-
**Python Learning Week 4**
**Scope**
- Classes
- Inheritance
- Methods, Dunder
**Reference**
[source1](https://www.kaggle.com/learn/python)
[source2](https://roadmap.sh/python)
[source…
-
### What should we add?
As came up in https://github.com/Qiskit/qiskit-terra/pull/9491 , `QuantumCircuitData` has no implementations of in-place dunder methods like `__iadd__`, but does have implemen…
-
The entries in the code completion window are probably sorted alphabetically. As a result, attributes of a class with visibility "private (i.e. __)" get lost in the long list of Dunder entries.
For p…
-
Right now we just return a delayed object. I think instead we should return an object called a `RechunkingPlan`. This object could expose useful parameters plus implement the dask dunder methods to al…
-
These are almost always intended to refer to magic methods, but markdown/rst/etc interpret it as emphasis and remove the underscores. We should detect that this is happening and raise errors.
-
Hi @ShrRa
I have noticed a typo "star = Variable(obj_id')" in the part describing dunder Methods, the example of the class Variable description.
Thanks!
-
## Proposed refactor
Redesign the context managers that enable re-instantiations of DataLoader after #14992 deprecates the run method design.
### Motivation
We currently have two context mana…
-
Hey,
Thanks for the `types-usd` package!
I found an issue in the package when it comes to the `SdfPathAncestorsRange`. It seems like the `AncestorsRange` object does not have proper dunder meth…
-
Considering:
```python
>>> from sympy import symbols, Matrix, Inverse
>>> M = Matrix(2, 2, symbols('M:4'))
>>> M
Matrix([
[M0, M1],
[M2, M3]])
>>> Inverse(M)
Matrix([
[M0, M1],
[M2, M3]])**…