1. 10 Jun, 1999 17 commits
  2. 09 Jun, 1999 14 commits
  3. 08 Jun, 1999 9 commits
    • Guido van Rossum's avatar
      Fix (sanctioned by Sjoerd) for a problem reported by Andreas Faerber: · 1f2e09bc
      Guido van Rossum authored
      all processing instruction target names containing 'xml' were
      rejected, instead (as the standard rejects) only the name 'xml' itself
      (or case variants thereof).
      1f2e09bc
    • Greg Ward's avatar
      On David Ascher's recommendation: reversed order of 'utime()' and · 5116f90e
      Greg Ward authored
      'chmod()' in 'copy_file()'.
      5116f90e
    • Guido van Rossum's avatar
      Sam's latest versions · a8d0f4fd
      Guido van Rossum authored
      a8d0f4fd
    • Guido van Rossum's avatar
      Skip Montanaro: · cf09a392
      Guido van Rossum authored
      I guess in 1.5.2 a new module, whichdb, was added that attempts to
      divine the nature of a database file.  This module doesn't know anything
      about Berkeley DB v2 files.  In v2, Sleepycat added a 12-byte null pad
      in front of the old magic numbers (at least for hash and btree files).
      I've been using v2 for awhile and upgrading to 1.5.2 broke all my
      anydbm.open calls. I believe the following patch corrects the problem.
      cf09a392
    • Guido van Rossum's avatar
      Hmm... Tim didn't turn "replace all" into a single undo block. · ab6a08a4
      Guido van Rossum authored
      I think I like it better if it os, so here.
      ab6a08a4
    • Guido van Rossum's avatar
      9745f5a7
    • Guido van Rossum's avatar
      Tim Peters: · 0fcd635d
      Guido van Rossum authored
      + Set usetabs=1.  Editing pyclbr.py was driving me nuts <0.6 wink>.
      usetabs=1 is the Emacs pymode default too, and thanks to indentwidth !=
      tabwidth magical usetabs disabling, new files are still created with tabs
      turned off.  The only implication is that if you open a file whose first
      indent is a single tab, IDLE will now magically use tabs for that file (and
      set indentwidth to 8).  Note that the whole scheme doesn't work right for
      PythonWin, though, since Windows users typically set tabwidth to 4; Mark
      probably has to hide the IDLE algorithm from them (which he already knows).
      
      + Changed comment_region_event to stick "##" in front of every line.  The
      "holes" previously left on blank lines were visually confusing (made it
      needlessly hard to figure out what to uncomment later).
      0fcd635d
    • Guido van Rossum's avatar
      Tim Peters: Taught it more "real Python" rules without slowing it · df9f7a3e
      Guido van Rossum authored
      appreciably.  Triple-quoted strings no longer confuse it, nor nested
      classes or defs, nor comments starting in column 1.  Chews thru
      Tkinter.py in < 3 seconds for me; doctest.py no longer confuses it; no
      longer missing methods in PyShell.py; etc.  Also captures defs
      starting in column 1 now, but ignores them; an interface should be
      added so that IDLE's class browser can show the top-level functions
      too.
      df9f7a3e
    • Greg Ward's avatar
      Hacked 'set_final_options()' to set (hopefully) appropriate values for · 9a33707b
      Greg Ward authored
      'install_site_lib' and install_site_platlib' on non-POSIX platforms.
      Should at least work for NT, as this is adopted from Amos Latteier's NT
      patches.  Also added extensive comments bitching about the inadequacy of
      the current model, both under POSIX and NT (and probably other) systems.
      9a33707b