This allows opening stub files by double clicking on them in the Finder.
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Released on 2022-10-03
=========================
+gh-89610: Add .pyi as a recognized extension for IDLE on macOS. This allows
+opening stub files by double clicking on them in the Finder.
bpo-28950: Apply IDLE syntax highlighting to `.pyi` files. Add util.py
for common components. Patch by Alex Waygood and Terry Jan Reedy.
<key>CFBundleTypeExtensions</key>
<array>
<string>py</string>
+ <string>pyi</string>
<string>pyw</string>
</array>
<key>CFBundleTypeIconFile</key>
--- /dev/null
+Add .pyi as a recognized extension for IDLE on macOS. This allows opening
+stub files by double clicking on them in the Finder.