summaryrefslogtreecommitdiffstats
path: root/Misc/python-wing4.wpr
Commit message (Collapse)AuthorAgeFilesLines
* bpo-23469: Delete Wing IDE configuration files (GH-30067)Kumar Aditya2021-12-141-18/+0
|
* Mark files as executable that are meant as scripts. (GH-15354)Greg Price2019-09-091-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | 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
* Wing project file update for mercurialMichael Foord2011-03-151-4/+5
|
* Issue 10611. Issue 9857. Improve the way exception handling, including test ↵Michael Foord2010-12-191-1/+3
| | | | skipping, is done inside TestCase.run
* Issue 9732: addition of getattr_static to the inspect moduleMichael Foord2010-11-201-1/+3
|
* Adding Wing IDE version 4 project fileMichael Foord2010-10-131-0/+13