Closed JulienPalard closed 6 months ago
Looks like there's not a lot of missing methods:
$ grep '^\.\. method:: [a-z]*\.__' ~/src/python/cpython/Doc/reference/datamodel.rst | cut -d. -f4 | cut -d '(' -f1| while read -r dunder; do if ! [[ -f "snippets/python-mode/$dunder" ]] ; then echo "Missing $dunder"; fi; done Missing __mro_entries__ Missing __buffer__ Missing __release_buffer__
but __next__ was not spotted by this grep... usage will tell us more hopefully :)
__next__
Looks like there's not a lot of missing methods:
but
__next__
was not spotted by this grep... usage will tell us more hopefully :)