gremlin/gremlin.in (JPEGFormat): Fix property name in docstring.
[autoys] / gremlin / gremlin.in
index 8d2cac0..1fd862d 100755 (executable)
@@ -103,7 +103,6 @@ def charwidth(s):
     else: w += 1
 
   ## Done.
-  #print ';; %r -> %d' % (s, w)
   return w
 
 class StatusLine (object):
@@ -136,8 +135,6 @@ class StatusLine (object):
 
     ## Eyecandy update.
     if me.eyecandyp:
-      #print
-      #print ';; new status %r' % line
 
       ## If the old line was longer, we need to clobber its tail, so work out
       ## what that involves.
@@ -159,7 +156,6 @@ class StatusLine (object):
       ## Actually do the output, all in one syscall.
       b = charwidth(me._last[i:])
       SYS.stdout.write(pre + '\b'*b + line[i:])
-      #print ';; => %r' % (pre + '\b'*b + line[i:])
       SYS.stdout.flush()
 
     ## Update our idea of what's gone on.
@@ -301,7 +297,6 @@ String = P.QuotedString('"', '\\')
 ## Handy abbreviations for constructed parser elements.
 def K(k): return P.Keyword(k).suppress()
 def D(d): return P.Literal(d).suppress()
-##R = P.ZeroOrMore
 def R(p): return P.ZeroOrMore(p).setParseAction(lambda s, l, t: [t])
 O = P.Optional
 
@@ -1094,7 +1089,7 @@ class AudioFormat (BaseFormat):
 class OggVorbisFormat (AudioFormat):
   "AudioFormat object for Ogg Vorbis."
 
-  ## From http://en.wikipedia.org/wiki/Vorbis
+  ## From https://en.wikipedia.org/wiki/Vorbis
   QMAP = [(-1,  45), ( 0,  64), ( 1,  80), ( 2,  96),
           ( 3, 112), ( 4, 128), ( 5, 160), ( 6, 192),
           ( 7, 224), ( 8, 256), ( 9, 320), (10, 500)]
@@ -1241,7 +1236,7 @@ class JPEGFormat (ImageFormat):
   optimize
           If present, take a second pass to select optimal encoder settings.
 
-  progression
+  progressive
           If present, make a progressive file.
 
   quality Integer from 1--100 (worst to best); default is 75.