Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-30109: Fix reindent.py for non-ASCII files. (#5637) | Serhiy Storchaka | 2018-02-12 | 1 | -11/+29 |
| | | | | | It now processes files as binary streams. This also fixes "make reindent". | ||||
* | Fixes #10639: reindent.py should not convert newlines | Jason R. Coombs | 2011-07-27 | 1 | -3/+14 |
| | | | | Backport of changeset 070dc6e359fb, reindent.py now will use the newline detected in the original file and will report an error if mixed newlines are encountered. | ||||
* | don't recurse into directories that start with '.' | Benjamin Peterson | 2008-10-15 | 1 | -1/+2 |
| | |||||
* | Add Tools/scripts/patchcheck.py. Invoked from ``make check``, the script does | Brett Cannon | 2008-03-18 | 1 | -0/+2 |
| | | | | | | | | | | | | | some verification: - Runs reindent.py on all .py files. - Checks if any changes in Doc exist. - Whether Misc/ACKS was changed. - Whether Misc/NEWS was changed. The hope is that ``make check`` can become a command anybody can run to get reminders about what all the requisite steps needed to create a proper patch/checkin. | ||||
* | Now we handle different the backup copy, because of security | Facundo Batista | 2008-02-17 | 1 | -16/+24 |
| | | | | issues regarding user/group and permissions. Fixes 1050828. | ||||
* | Make reindent.py executable. | Georg Brandl | 2007-06-07 | 1 | -0/+0 |
| | |||||
* | add usage() function, -h(elp) flag and long versions of short flags | Skip Montanaro | 2004-03-27 | 1 | -8/+18 |
| | |||||
* | operate as a filter when no files or directories appear on the command line | Skip Montanaro | 2002-03-26 | 1 | -9/+17 |
| | |||||
* | SF bug #497839: reindent chokes on empty first lines. | Tim Peters | 2002-02-17 | 1 | -0/+4 |
| | | | | | | Reindenter.run(): copy over initial all-whitespace lines (if any, and after normalizing to remove trailing blanks and tabs). Bugfix candidate. | ||||
* | Changed the reindenter to strip only trailing spaces and tabs from lines, | Tim Peters | 2001-10-04 | 1 | -3/+16 |
| | | | | | not other control characters string.rstrip() got rid of. This caters to the \f thingies Barry likes putting in Python source files. | ||||
* | New tool for normalizing indentation of .py files. | Tim Peters | 2000-10-05 | 1 | -0/+258 |