1. 02 Feb, 2000 2 commits
  2. 01 Feb, 2000 2 commits
    • Guido van Rossum's avatar
      Sjoerd Mullender writes: · 3c8baeda
      Guido van Rossum authored
      Fixed a TypeError: not enough arguments; expected 4, got 3.
      When authentication is needed, the default http_error_401 method calls
      retry_http_basic_auth.  The default version of that method expected a
      data argument which wasn't provided, so now we provide the argument if
      it was given and we also made the data argument optional.
      
      Also changed other calls where data was optional to not pass data if
      it was not passed to the calling method (in line with other similar
      occurances).
      3c8baeda
    • Fred Drake's avatar
  3. 31 Jan, 2000 1 commit
  4. 30 Jan, 2000 6 commits
  5. 24 Jan, 2000 4 commits
  6. 21 Jan, 2000 1 commit
  7. 20 Jan, 2000 6 commits
  8. 19 Jan, 2000 1 commit
  9. 18 Jan, 2000 1 commit
  10. 17 Jan, 2000 10 commits
  11. 14 Jan, 2000 1 commit
  12. 13 Jan, 2000 4 commits
  13. 12 Jan, 2000 1 commit
    • Guido van Rossum's avatar
      Fix a bug in exec_statement() noted incidentally by Tim Peters in · a400d8a9
      Guido van Rossum authored
      PR#175 -- when exec is passed a code object, it didn't sync the locals
      from the dictionary back into their fast representation.
      
      Also took the time to remove some repetitive code there and to do the
      syncing even when an exception is raised (since a partial effect
      should still be synced).
      a400d8a9