We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cf737e commit d25b63fCopy full SHA for d25b63f
1 file changed
python/deps/untypy/untypy/util/wrapper.py
@@ -186,6 +186,9 @@ class ReadOnlyDict(dict):
186
update = _readonly
187
setdefault = _readonly
188
189
+# FIXME: get rid off patch. Its evil to change the class of an object after its creation.
190
+# Further, it causes issues with the GC of python 3.13.
191
+
192
def patch(self, ty, extra):
193
# SW (2024-10-18): With python 3.13 there is the behavior that extra is modified after patching
194
# the object. I never found out who is doing the modification. By wrapping extra with
0 commit comments