diff options
author | Petr Viktorin <encukou@gmail.com> | 2021-12-10 23:34:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-10 23:34:31 (GMT) |
commit | 98e506ae8a7997658a08fbf77ac016d200588cb3 (patch) | |
tree | 6f011328ab69be1b832ed70166643df91ca6c1a0 /Tools/scripts | |
parent | 3cb357a2e6ac18ee98db5d450414e773744e3c76 (diff) | |
download | cpython-98e506ae8a7997658a08fbf77ac016d200588cb3.zip cpython-98e506ae8a7997658a08fbf77ac016d200588cb3.tar.gz cpython-98e506ae8a7997658a08fbf77ac016d200588cb3.tar.bz2 |
bpo-43795: Document stable_abi.txt format and contents (GH-29956)
Also mention that removals generally aren't allowed.
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-x | Tools/scripts/stable_abi.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/scripts/stable_abi.py b/Tools/scripts/stable_abi.py index 0179f3c..04b1f78 100755 --- a/Tools/scripts/stable_abi.py +++ b/Tools/scripts/stable_abi.py @@ -174,6 +174,7 @@ def parse_manifest(file): parent.abi_only = True else: raise_error(f"unknown kind {kind!r}") + # When adding more, update the comment in stable_abi.txt. levels.append((entry, level)) return manifest |