deprecate direct node construction and introduce Node.from_parent

This commit is contained in:
Ronny Pfannschmidt
2019-10-16 21:52:04 +02:00
committed by Ronny Pfannschmidt
parent 886b8d27c6
commit c99c7d0f95
15 changed files with 108 additions and 35 deletions
+6
View File
@@ -0,0 +1,6 @@
Deprecate using direct constructors for ``Nodes``.
Instead they are new constructed via ``Node.from_parent``.
This transitional mechanism enables us to detangle the very intensely
entangled ``Node`` relationships by enforcing more controlled creation/configruation patterns.