1. 07 Eki, 2002 24 kayıt (commit)
  2. 06 Eki, 2002 16 kayıt (commit)
    • Raymond Hettinger's avatar
      830abbb8
    • Raymond Hettinger's avatar
      Backport 1.33: · 9e6aab6b
      Raymond Hettinger yazdı
      Update programmer's note on nested functions.
      9e6aab6b
    • Raymond Hettinger's avatar
      Backport 1.52: · 397848fd
      Raymond Hettinger yazdı
      SF # 555779, import user doesn't work with CGIs
      397848fd
    • Guido van Rossum's avatar
      Aargh! The 2.3 version of this file requires "from test.test_support · 7034f69d
      Guido van Rossum yazdı
      import run_suite", but the 2.2.2 version requires "from test_support
      import run_suite" ... :-(
      7034f69d
    • Martin v. Löwis's avatar
      32b1b430
    • Guido van Rossum's avatar
      Backport: · 19cb8700
      Guido van Rossum yazdı
      Make sure the email test suite can be run both stand-alone and under
      supervision of regrtest.py.
      19cb8700
    • Raymond Hettinger's avatar
      Backport 2.49: · 8c354ac5
      Raymond Hettinger yazdı
      SF #558432: Prevent Annoying ' ' from readline (Holker Krekel).
      
          readline in all python versions is configured
          to append a 'space' character for a successful
          completion. But for almost all python expressions
          'space' is not wanted (see coding conventions PEP 8).
          For example if you have a function 'longfunction'
          and you type 'longf<TAB>' you get 'longfunction '
          as a completion. note the unwanted space at the
          end.
      
          The patch fixes this behaviour by setting readline's
          append_character to '\0' which means don't append
          anything. This doesn't work with readline < 2.1
          (AFAIK nowadays readline2.2 is in good use).
      
          An alternative approach would be to make the
          append_character
          accessable from python so that modules like
          the rlcompleter.py can set it to '\0'.
      
      [Ed.: I think expecting readline >= 2.2 is fine.  If a completer wants
      another character they can append that to the keyword in the list.]
      8c354ac5
    • Raymond Hettinger's avatar
      Backport 1.45: · f29109ae
      Raymond Hettinger yazdı
      Allow abspath to still do something sensisble if the nt module can not be imported.
      f29109ae
    • Tim Peters's avatar
      6acdcd2f
    • Raymond Hettinger's avatar
      Backport 1.45: · c2f12167
      Raymond Hettinger yazdı
      Fix a problem in site.py which triggers in case sys.path is empty.
      
      Bugfix candidate for 2.2.2.
      c2f12167
    • Raymond Hettinger's avatar
      Backport 1.12 and 1.13 and normalize whitespace (remove formfeeds): · e1c9e10c
      Raymond Hettinger yazdı
      
      SF #515021, print the refused list to the DEBUGSTREAM, so the parameter is used
      Note:  There is a TBD (aka FIXME) for how best to handle the refused addresses.
      
      
      smtp_RCPT(): Removed a somewhat embarrassing debugging line, found by
      Scot Stevenson.  Could be a bug fix candidate, but probably doesn't
      matter much unless a certain blue-nosed cat suddenly becomes corporeal
      and starts emailing some stmp.py (sic) fronted mailer.
      e1c9e10c
    • Raymond Hettinger's avatar
      Backport 1.60 and 1.62: · 6b7a7d24
      Raymond Hettinger yazdı
      Patch #586999: Fix multiline string in sendmail example.
      
      smptlib did not handle empty addresses.
      The problem was that it expected rfc822.parseaddr() to return None
      upon a parse failure.  The actual, documented return value for a
      parse failure is (None, None).
      Closes SF bug 602029.
      6b7a7d24
    • Raymond Hettinger's avatar
      Backport 1.151 and 1.152: · 5c6ab4a2
      Raymond Hettinger yazdı
      Treat file://localhost/ as local too (same as file:/ and file:///).
      Fixes #607789, bugfix candidate.
      5c6ab4a2
    • Raymond Hettinger's avatar
      Backport 1.17: · 65e03cd7
      Raymond Hettinger yazdı
      Ignore IOError exceptions when writing the message.
      65e03cd7
    • Raymond Hettinger's avatar
      Backport 1.7: · a7ce6244
      Raymond Hettinger yazdı
      SF # 555779, import user doesn't work with CGIs
      a7ce6244
    • Raymond Hettinger's avatar
      Backport 1.28 and 1.29: · 100fcd0a
      Raymond Hettinger yazdı
      SF #515026, delete global variable that was apparently used only
      in a for loop.
      100fcd0a