Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-22831: Use "with" to avoid possible fd leaks in tools (part 2). (GH-10927) | Serhiy Storchaka | 2019-03-30 | 1 | -4/+4 |
| | |||||
* | Issue #21906: Make Tools/scripts/md5sum.py work in Python 3. | Berker Peksag | 2014-07-11 | 1 | -3/+6 |
| | | | | Patch by Zachary Ware. | ||||
* | #14490, #14491: add 'sundry'-style import tests for Tools/scripts. | R David Murray | 2012-04-05 | 1 | -1/+1 |
| | | | | | | This patch changes a few of the scripts to have __name__=='__main__' clauses so that they are importable without running. Also fixes the syntax errors revealed by the tests. | ||||
* | Fix missing or wrong shebangs and missing executable bits for scripts (#10318) | Éric Araujo | 2011-07-26 | 1 | -0/+0 |
| | |||||
* | convert shebang lines: python -> python3 | Benjamin Peterson | 2010-03-11 | 1 | -1/+1 |
| | |||||
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -3/+3 |
| | | | | | | (a) "except E, V" -> "except E as V" (b) V is now limited to a simple name (local variable) (c) V is now deleted at the end of the except block | ||||
* | This started opening files in text mode by default in the 2.3 release, | Tim Peters | 2003-08-18 | 1 | -10/+11 |
| | | | | | | | which is a disaster on Windows. Restored the binary default of all previous releases. Also minor code cleanups. Bugfix candidate! | ||||
* | Rename sum5.py to md5sum.py, because sum5.py is more interesting | Andrew M. Kuchling | 2003-05-13 | 1 | -21/+81 |
| | | | | as an example program | ||||
* | Use 2.1's .hexdigest() method | Andrew M. Kuchling | 2002-04-17 | 1 | -5/+2 |
| | |||||
* | This is a trivial command line utility to print MD5 checksums. | Guido van Rossum | 2001-06-22 | 1 | -0/+32 |
I published it on the web as http://www.python.org/2.1/md5sum.py so I thought I might as well check it in. Works with Python 1.5.2 and later. Works like the Linux tool ``mdfsum file ...'' except it doesn't take any options or read stdin. |