1. 18 Jun, 1998 1 commit
  2. 17 Jun, 1998 5 commits
  3. 16 Jun, 1998 5 commits
  4. 15 Jun, 1998 10 commits
  5. 13 Jun, 1998 1 commit
    • Guido van Rossum's avatar
      Fixed the EventHook() code so that it also works on Windows, sort of. · ad4db175
      Guido van Rossum authored
      (The "sort of" is because it uses kbhit() to detect that the user
      starts typing, and then no events are processed until they hit
      return.)
      
      Also fixed a nasty locking bug: EventHook() is called without the Tcl
      lock set, so it can't use the ENTER_PYTHON and LEAVE_PYTHON macros,
      which manipulate both the Python and the Tcl lock.  I now only acquire
      and release the Python lock.
      
      (Haven't tested this on Unix yet...)
      ad4db175
  6. 12 Jun, 1998 8 commits
  7. 11 Jun, 1998 8 commits
  8. 10 Jun, 1998 2 commits
    • Guido van Rossum's avatar
      Document the changes I just checked in. · 12991003
      Guido van Rossum authored
      12991003
    • Guido van Rossum's avatar
      Some changes suggested/provided by Eric Raymond: · c7bb8577
      Guido van Rossum authored
      - explain seekable
      - when seekable==1, test fp.tell() and set it to 0 if that fails
      - support overridable method iscomment(line) to weed out comments
      - check for unread() method on file object before trying to seek
      
      And one of my own:
      
      - Add a get() method which behaves like a dictionary's get(); this is
      actually implemented by giving getheader() an optional second argument
      to specify the default, and aliasing get to getheader.
      c7bb8577