diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-04-13 23:26:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-13 23:26:43 (GMT) |
commit | 4da5ca52b7269556dd8b6ebcdfa6eb1d25717a9d (patch) | |
tree | e4aabd9dd6a112b585c3e79e8151e7c66885e3dd | |
parent | 5ce227f3a767e6e44e7c41e0c845a83cf7777ca4 (diff) | |
download | cpython-4da5ca52b7269556dd8b6ebcdfa6eb1d25717a9d.zip cpython-4da5ca52b7269556dd8b6ebcdfa6eb1d25717a9d.tar.gz cpython-4da5ca52b7269556dd8b6ebcdfa6eb1d25717a9d.tar.bz2 |
Revert "Add ignore file for the abidump check (GH-25323)" (GH-25394)
This reverts commit b3fec753bb14e10066be908b93d3448c6b433ea6.
-rw-r--r-- | Doc/data/python3.9.abi.ignorefile | 8 | ||||
-rw-r--r-- | Makefile.pre.in | 4 |
2 files changed, 1 insertions, 11 deletions
diff --git a/Doc/data/python3.9.abi.ignorefile b/Doc/data/python3.9.abi.ignorefile deleted file mode 100644 index a9c89f0..0000000 --- a/Doc/data/python3.9.abi.ignorefile +++ /dev/null @@ -1,8 +0,0 @@ -[suppress_type] -name_regexp = _Py.* - -[suppress_variable] -name_regexp = _Py.* - -[suppress_function] -name_regexp = _Py.* diff --git a/Makefile.pre.in b/Makefile.pre.in index 9aeeac5..d088eb5 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -759,9 +759,7 @@ regen-abidump: all @$(UPDATE_FILE) $(srcdir)/Doc/data/python$(LDVERSION).abi $(srcdir)/Doc/data/python$(LDVERSION).abi.new check-abidump: all - abidiff "libpython$(LDVERSION).so" $(srcdir)/Doc/data/python$(LDVERSION).abi --drop-private-types \ - --suppressions $(srcdir)/Doc/data/python$(LDVERSION).abi.ignorefile \ - --no-architecture --no-added-syms + abidiff "libpython$(LDVERSION).so" $(srcdir)/Doc/data/python$(LDVERSION).abi --drop-private-types --no-architecture --no-added-syms ############################################################################ # Regenerate all generated files |