summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/idle.bat
Commit message (Collapse)AuthorAgeFilesLines
* Unmark files as executable that can't actually be executed. (GH-15353)Greg Price2019-08-211-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | There are plenty of legitimate scripts in the tree that begin with a `#!`, but also a few that seem to be marked executable by mistake. Found them with this command -- it gets executable files known to Git, filters to the ones that don't start with a `#!`, and then unmarks them as executable: $ git ls-files --stage \ | perl -lane 'print $F[3] if (!/^100644/)' \ | while read f; do head -c2 "$f" | grep -qxF '#!' \ || chmod a-x "$f"; \ done Looking at the list by hand confirms that we didn't sweep up any files that should have the executable bit after all. In particular * The `.psd` files are images from Photoshop. * The `.bat` files sure look like things that can be run. But we have lots of other `.bat` files, and they don't have this bit set, so it must not be needed for them. Automerge-Triggered-By: @benjaminp
* Show what's changed when Travis fails regen check (GH-2095)Zachary Ware2017-06-111-4/+4
| | | Also fixed a few more line endings that were missed in GH-840, which were causing failure.
* Issue #17202: Add .bat to .hgeol to force them to CRLF.Zachary Ware2015-04-131-4/+4
| | | | | Using LF can a script to fail if it tries to use a label that is split across 512 byte blocks. Who knows why.
* Issue #6378: Further adjust idle.bat to start associated PythonKurt B. Kaiser2011-05-141-1/+1
|
* Merged revisions 86655 via svnmerge fromBrian Curtin2010-11-221-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86655 | brian.curtin | 2010-11-21 18:01:01 -0600 (Sun, 21 Nov 2010) | 2 lines Quote the paths in the event that they contain spaces. ........
* Merged revisions 86651 via svnmerge fromBrian Curtin2010-11-211-2/+3
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86651 | brian.curtin | 2010-11-21 17:45:10 -0600 (Sun, 21 Nov 2010) | 5 lines Fix #6378. Start IDLE using the proper version of Python based on the directory tree that idle.bat resides in. Works with any/all versions of Python installed concurrently. ........
* Initial revisionDavid Scherer2000-08-151-0/+3