1. 11 Dec, 2001 10 commits
  2. 10 Dec, 2001 16 commits
  3. 09 Dec, 2001 10 commits
  4. 08 Dec, 2001 4 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