1. 18 Dec, 1998 3 commits
    • Guido van Rossum's avatar
      a3f5e805
    • Guido van Rossum's avatar
      Sjoerd Mullender: · cdd0c1a8
      Guido van Rossum authored
      File names with "funny" characters get translated wrong by
      pathname2url (any variety).  E.g. the (Unix) file "/ufs/sjoerd/#tmp"
      gets translated into "/ufs/sjoerd/#tmp" which, when interpreted as a
      URL is file "/ufs/sjoerd/" with fragment ID "tmp".
      
      Here's an easy fix.  (An alternative fix would be to change the
      various implementations of pathname2url and url2pathname to include
      calls to quote and unquote.
      
      [The main problem is with the normal use of URLs:
      	url = url2pathname(file)
      	transmit url
      	url, tag = splittag(url)
      	urlopen(url)
      ]
      
      In addition, this patch fixes some uses of unquote:
      - the host part of URLs should be unquoted
      - the file path in the FTP URL should be unquoted before it is split
        into components.
      - because of the latter, I removed all unquoting from ftpwrapper,
        and moved it to the caller, but that is not essential
      cdd0c1a8
    • Andrew M. Kuchling's avatar
      Added a -q ('quiet') option to tabnanny, which causes only the names of · fb064977
      Andrew M. Kuchling authored
          offending files to be printed.  Good for emacs `tabnanny.py *.py`
      fb064977
  2. 17 Dec, 1998 5 commits
  3. 15 Dec, 1998 7 commits
  4. 14 Dec, 1998 2 commits
  5. 11 Dec, 1998 4 commits
  6. 10 Dec, 1998 13 commits
  7. 09 Dec, 1998 4 commits
  8. 08 Dec, 1998 2 commits