cpython/Lib/turtledemo
Greg Price fa3a38d81f Mark files as executable that are meant as scripts. (GH-15354)
This is the converse of GH-15353 -- in addition to plenty of
scripts in the tree that are marked with the executable bit
(and so can be directly executed), there are a few that have
a leading `#!` which could let them be executed, but it doesn't
do anything because they don't have the executable bit set.

Here's a command which finds such files and marks them.  The
first line finds files in the tree with a `#!` line *anywhere*;
the next-to-last step checks that the *first* line is actually of
that form.  In between we filter out files that already have the
bit set, and some files that are meant as fragments to be
consumed by one or another kind of preprocessor.

    $ git grep -l '^#!' \
      | grep -vxFf <( \
          git ls-files --stage \
          | perl -lane 'print $F[3] if (!/^100644/)' \
        ) \
      | grep -ve '\.in$' -e '^Doc/includes/' \
      | while read f; do
          head -c2 "$f" | grep -qxF '#!' \
          && chmod a+x "$f"; \
        done
2019-09-09 07:16:33 -07:00
..
__init__.py Issue #10291: Backport 004fe3449193 with a few changes due to 22095. 2014-08-14 23:59:32 -04:00
__main__.py Mark files as executable that are meant as scripts. (GH-15354) 2019-09-09 07:16:33 -07:00
bytedesign.py time.clock() now emits a DeprecationWarning (GH-4020) 2017-10-17 14:46:45 -07:00
chaos.py De-'colour'ize stdlib except for idlelib.configDialog. 2014-10-09 18:44:32 -04:00
clock.py Issue #21882: In turtle demos, remove module scope gui and sys calls by 2014-06-30 16:09:24 -04:00
colormixer.py Issue #21882: In turtle demos, remove module scope gui and sys calls by 2014-06-30 16:09:24 -04:00
forest.py time.clock() now emits a DeprecationWarning (GH-4020) 2017-10-17 14:46:45 -07:00
fractalcurves.py time.clock() now emits a DeprecationWarning (GH-4020) 2017-10-17 14:46:45 -07:00
lindenmayer.py
minimal_hanoi.py Issue #21882: In turtle demos, remove module scope gui and sys calls by 2014-06-30 16:09:24 -04:00
nim.py Issue #22065: Menus, unlike Menubottons, do not have a state option. 2014-08-27 01:43:50 -04:00
paint.py Fix typos in docs and docstrings (GH-13745) 2019-06-03 01:12:33 +02:00
peace.py Issue #14117: Inprove help text and docstrings, some for clarity, some just to 2014-06-24 22:21:41 -04:00
penrose.py turtledemo/penrose.py: remove unused clock() calls (GH-10033) 2018-10-25 00:43:39 +02:00
planet_and_moon.py Removed unused imports. 2016-04-25 00:12:32 +03:00
rosette.py bpo-14117: Make minor tweaks to turtledemo (GH-8002) 2018-06-29 01:10:05 -04:00
round_dance.py
sorting_animate.py Mark files as executable that are meant as scripts. (GH-15354) 2019-09-09 07:16:33 -07:00
tree.py bpo-14117: Make minor tweaks to turtledemo (GH-8002) 2018-06-29 01:10:05 -04:00
turtle.cfg
two_canvases.py Unmark files as executable that can't actually be executed. (GH-15353) 2019-08-20 21:53:59 -07:00
yinyang.py