cpython/Tools/peg_generator
Victor Stinner 804f2529d8
gh-91320: Use _PyCFunction_CAST() (#92251)
Replace "(PyCFunction)(void(*)(void))func" cast with
_PyCFunction_CAST(func).

Change generated by the command:

sed -i -e \
  's!(PyCFunction)(void(\*)(void)) *\([A-Za-z0-9_]\+\)!_PyCFunction_CAST(\1)!g' \
  $(find -name "*.c")
2022-05-03 21:42:14 +02:00
..
data
peg_extension gh-91320: Use _PyCFunction_CAST() (#92251) 2022-05-03 21:42:14 +02:00
pegen bpo-46576: Speed up test_peg_generator by using a static library for shared sources (GH-32338) 2022-04-06 14:55:58 -07:00
scripts Update grammar_grapher with the new forced (&&) directive (#31704) 2022-03-06 15:26:28 +01:00
.clang-format
.gitignore
Makefile Refactor parser compilation units into specific components (GH-29676) 2021-11-21 01:08:50 +00:00
mypy.ini
pyproject.toml
requirements.pip