1. 11 Dec, 2001 7 commits
  2. 10 Dec, 2001 16 commits
  3. 09 Dec, 2001 10 commits
  4. 08 Dec, 2001 7 commits
    • Tim Peters's avatar
      PySymtableEntry_New(): I'm not sure what this routine is doing, but it · 7cdfcce1
      Tim Peters authored
      was obviously leaking an int object when whatever the heck it's looking for
      was found.  Repaired that.  This accounts for why entering function and
      class definitions at an interactive prompt leaked a reference to the
      integer 1 each time.
      Bugfix candidate.
      7cdfcce1
    • Guido van Rossum's avatar
      Patch supplied by Burton Radons for his own SF bug #487390: Modifying · a0457793
      Guido van Rossum authored
      type.__module__ behavior.
      
      This adds the module name and a dot in front of the type name in every
      type object initializer, except for built-in types (and those that
      already had this).  Note that it touches lots of Mac modules -- I have
      no way to test these but the changes look right.  Apologies if they're
      not.  This also touches the weakref docs, which contains a sample type
      object initializer.  It also touches the mmap test output, because the
      mmap type's repr is included in that output.  It touches object.h to
      put the correct description in a comment.
      a0457793
    • Guido van Rossum's avatar
      SF patch #489989 (Charles G Waldman) linuxaudiodev.c - fix initialization · 9eb2cbbd
      Guido van Rossum authored
      The OSS Programmer's Reference (www.4front-tech.com)
      states:
      
      *Setting Sampling Parameters
      
      There are three parameters which affect the sound
      quality (and therefore memory and bandwidth
      requirements) of sampled audio data. These are:
      
      ** sample format (sometimes called number of bits)
      ** number of channels (mono or stereo), and
      ** sampling rate (speed)
      
      NOTE:
      
      It is important to always set these parameters in the
      above order. Setting sampling rate before the number
      of channels doesn't work with all devices.
      9eb2cbbd
    • Guido van Rossum's avatar
      SF patch #490515 (Joe A) urllib.open_https() protocol issue · 90dbb126
      Guido van Rossum authored
      open_http():
          In urllib.py library module, URLopener.open_https()
          returns a class instance of addinfourl() with its
          self.url property missing the protocol.
      
          Instead of "https://www.someurl.com", it becomes
          "://www.someurl.com".
      90dbb126
    • Just van Rossum's avatar
      OSX tweak. · ddf5025f
      Just van Rossum authored
      ddf5025f
    • Finn Bock's avatar
      Enable support for jython: · ed2957fb
      Finn Bock authored
      1. Acknowledge the welknown difference that jython
      allows continue in the finally clause.
      
      2. Avoid using _testcapi when running with jython.
      
      This closes patch "[ #490417 ] Jython and test_exceptions"
      ed2957fb
    • Just van Rossum's avatar
      Don't do App.DrawThemeListBoxFrame() upon activate: it starts · 80e3564c
      Just van Rossum authored
      looking worse and worse if you deactivate/activate the window
      a few times. I don't know how to fix this properly, but I'm beginning
      to think that it's almost impossible to support the Appearance
      manager properly due to the way W works. Time for W2?...
      80e3564c