8000 bpo-15987: Add ast.AST class richcompare methods by flavianh · Pull Request #14970 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-15987: Add ast.AST class richcompare methods #14970

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Implement hashing
  • Loading branch information
isidentical committed Mar 28, 2020
commit 965296438f8fda0bc9d9a5f2461414d012b197e4
1 change: 1 addition & 0 deletions Parser/asdl_c.py
Original file line number Diff line number Diff line change
Expand Up @@ -853,6 +853,7 @@ def visitModule(self, mod):
{Py_tp_new, PyType_GenericNew},
{Py_tp_free, PyObject_GC_Del},
{Py_tp_richcompare, ast_richcompare},
{Py_tp_hash, (hashfunc)_Py_HashPointer},
{0, 0},
};

Expand Down
1 change: 1 addition & 0 deletions Python/Python-ast.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0