Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ _This project uses semantic versioning_

## UNRELEASED

- Add __classdictcell__ to ignored attributes (Python 3.14 support) [#403](https://github.com/egraphs-good/egglog-python/pull/403)
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the changelog entry, __classdictcell__ is written with double-underscores but without code formatting, which Markdown renders as bold/italic in some renderers. Wrap the attribute name in backticks to keep it readable and consistent with other changelog entries (e.g., __call__, Expr.__replace_expr__).

Suggested change
- Add __classdictcell__ to ignored attributes (Python 3.14 support) [#403](https://github.com/egraphs-good/egglog-python/pull/403)
- Add `__classdictcell__` to ignored attributes (Python 3.14 support) [#403](https://github.com/egraphs-good/egglog-python/pull/403)

Copilot uses AI. Check for mistakes.
## 13.0.0 (2026-03-03)

- Support using facts as union actions, add conversions to multisets, and update multiset example [#382](https://github.com/egraphs-good/egglog-python/pull/382)
Expand Down
3 changes: 3 additions & 0 deletions python/egglog/egraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,9 @@
"__firstlineno__",
"__static_attributes__",
"__match_args__",
# Added in 3.14
# https://egraphs.zulipchat.com/#narrow/channel/375765-egg.2Fegglog/topic/Cost.20function.3A.20using.20function.20values.20of.20subtrees/near/577236488
"__classdictcell__",
# Ignore all reflected binary method
*(f"__r{m[2:]}" for m in NUMERIC_BINARY_METHODS),
}
Expand Down