##// END OF EJS Templates
Let %autoreload work on modules with frozen dataclasses...
Let %autoreload work on modules with frozen dataclasses See Issue #12411 and Issue #12185. The problem is that a frozen `dataclasses.dataclass` overrides the `__setattr__()` method, so updating its `__class__` member requires going through the base `object` class. This seems to fix the problem.

File last commit:

r27232:e4474874 merge
r27716:becb905f
Show More
codecov.yml
26 lines | 558 B | text/x-yaml | YamlLexer
coverage:
status:
patch: off
project:
default: false
library:
target: auto
paths: ['!.*/tests/.*']
threshold: 0.1%
tests:
target: auto
paths: ['.*/tests/.*']
threshold: 0.1%
codecov:
require_ci_to_pass: false
ignore:
- IPython/kernel/*
- IPython/consoleapp.py
- IPython/core/inputsplitter.py
- IPython/lib/kernel.py
- IPython/utils/jsonutil.py
- IPython/utils/localinterfaces.py
- IPython/utils/log.py
- IPython/utils/signatures.py
- IPython/utils/traitlets.py