1. 07 Eki, 2002 30 kayıt (commit)
  2. 06 Eki, 2002 10 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