]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Whitespace normalization; the plat-riscos file didn't even get by
authorTim Peters <tim.peters@gmail.com>
Mon, 2 Jul 2001 04:57:30 +0000 (04:57 +0000)
committerTim Peters <tim.peters@gmail.com>
Mon, 2 Jul 2001 04:57:30 +0000 (04:57 +0000)
tabnanny.py.

Lib/quopri.py

index 7b448bbc561fd7ef23d97d703f79ac5182f1d1da..575fcd11fb4b1b2c0e7831080bd8e1add49bf87a 100755 (executable)
@@ -12,7 +12,7 @@ HEX = '0123456789ABCDEF'
 EMPTYSTRING = ''
 
 
-\f
+
 def needsquoting(c, quotetabs):
     """Decide whether a particular character needs to be quoted.
 
@@ -30,7 +30,7 @@ def quote(c):
     return ESCAPE + HEX[i/16] + HEX[i%16]
 
 
-\f
+
 def encode(input, output, quotetabs):
     """Read 'input', apply quoted-printable encoding, and write to 'output'.
 
@@ -88,7 +88,7 @@ def encodestring(s, quotetabs=0):
     return outfp.getvalue()
 
 
-\f
+
 def decode(input, output):
     """Read 'input', apply quoted-printable decoding, and write to 'output'.
 
@@ -131,7 +131,7 @@ def decodestring(s):
     return outfp.getvalue()
 
 
-\f
+
 # Other helper functions
 def ishex(c):
     """Return true if the character 'c' is a hexadecimal digit."""
@@ -153,7 +153,7 @@ def unhex(s):
     return bits
 
 
-\f
+
 def main():
     import sys
     import getopt
@@ -197,6 +197,6 @@ def main():
         sys.exit(sts)
 
 
-\f
+
 if __name__ == '__main__':
     main()