Changes between Initial Version and Version 4 of Ticket #32660
- Timestamp:
- Apr 18, 2021, 4:52:27 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32660
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #32660 – Description
initial v4 1 I have three models whereas one has a custom __init__method:1 I have three models whereas one has a custom `__init__()` method: 2 2 3 3 … … 25 25 26 26 Creating a Foo object and a corresponding Bar object (via the admin interface) works fine. 27 **However, when I delete the Foo object, this results in an endless loop of the __init__method.**27 **However, when I delete the Foo object, this results in an endless loop of the `__init__()` method.** 28 28 29 29 If I rewrite the models slightly as