summaryrefslogtreecommitdiffstats
path: root/Lib/binhex.py
Commit message (Collapse)AuthorAgeFilesLines
* A few lines were indented using spaces instead of tabs -- fix them.Guido van Rossum1998-03-261-7/+7
|
* Use string.replace instead of regsub.[g]sub.Guido van Rossum1997-12-241-2/+1
|
* Merged in Jack's fixes. This brings some lines beyond 79 chars again;Guido van Rossum1997-02-111-17/+32
| | | | | | | | | I'll clean that up later. Also corrected a mistake introduced by the previous reformatting: an 'else' belonging to a 'for' was accidentally reindented to belong to the 'if' inside the 'for'. Note that the module uses inconsistent indentation -- most code is indented with 8 spaces, but some of the reformatted code uses 4 spaces. I'll fix this later in the promised cleanup pass.
* As per GvR recomendations, remove the restriction that binhex only run onRoger E. Masse1997-01-161-33/+43
| | | | | | | big-endian machines. This is done by directing the struct module's pack and unpack methods to treat the data always in bin endian format. This has been tested on irix (big endian) and solaris x86 (little endian) but not yet on the mac.
* new binhex from Jack (much faster)Guido van Rossum1996-03-251-9/+14
|
* Finally check in Jack's latest version, which fixes all known bugs.Guido van Rossum1996-03-231-142/+153
|
* Fixed hexbin handlingJack Jansen1995-10-031-4/+7
|
* Indent bugJack Jansen1995-08-171-1/+1
|
* Put debug output inside 'if DEBUG'.Jack Jansen1995-08-141-6/+7
|
* Implement binhex protocol.Jack Jansen1995-08-071-0/+485
Note: binhex works, hexbin does not work yet.