1. 08 May, 2008 20 commits
  2. 07 May, 2008 6 commits
  3. 06 May, 2008 11 commits
    • Christian Heimes's avatar
      Merged revisions 62792,62799-62800 via svnmerge from · af4d107a
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r62792 | brett.cannon | 2008-05-07 01:22:02 +0200 (Wed, 07 May 2008) | 2 lines
      
        When testing a module's __all__, we really don't care if it is deprecated.
      ........
        r62799 | christian.heimes | 2008-05-07 01:42:58 +0200 (Wed, 07 May 2008) | 1 line
      
        Disabled some unit tests for the upcoming release. See #2777
      ........
        r62800 | brett.cannon | 2008-05-07 01:44:04 +0200 (Wed, 07 May 2008) | 2 lines
      
        Create a TextMate directory in Misc to house a Python-Dev bundle.
      ........
      af4d107a
    • Alexandre Vassalotti's avatar
      Fixed a small bug introduced by r62778. · 13f549be
      Alexandre Vassalotti authored
      One of the codepaths of _BytesIO.read() returned a bytearray
      object, by mistake, when it should always return a bytes object.
      Interestingly, the fact this bug shown up probably means that
      some platforms are not using the new C-accelerated io.BytesIO.
      13f549be
    • Christian Heimes's avatar
      Merged revisions 62774-62775,62785,62787-62788 via svnmerge from · 98453f27
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r62774 | georg.brandl | 2008-05-06 19:11:42 +0200 (Tue, 06 May 2008) | 2 lines
      
        #2773: fix description of 'g' and 'G' formatting spec.
      ........
        r62775 | georg.brandl | 2008-05-06 19:20:54 +0200 (Tue, 06 May 2008) | 2 lines
      
        > != (!<).
      ........
        r62785 | benjamin.peterson | 2008-05-07 00:18:11 +0200 (Wed, 07 May 2008) | 2 lines
      
        Fix logic error in Python/_warnings.c and add a test to verify
      ........
        r62787 | benjamin.peterson | 2008-05-07 00:31:52 +0200 (Wed, 07 May 2008) | 2 lines
      
        Make the Python implementation of warnings compatible with the C implementation regarding non-callable showwarning
      ........
        r62788 | christian.heimes | 2008-05-07 00:41:46 +0200 (Wed, 07 May 2008) | 1 line
      
        Implemented PEP 370
      ........
      98453f27
    • Brett Cannon's avatar
      Block a Misc/NEWS entry (r62797). · 76d6a32d
      Brett Cannon authored
      76d6a32d
    • Brett Cannon's avatar
      Block r62793 (deprecation of audiodev). · 9f2bf273
      Brett Cannon authored
      9f2bf273
    • Christian Heimes's avatar
      Silence a compiler warning · f2042ed4
      Christian Heimes authored
      f2042ed4
    • Christian Heimes's avatar
      Blocked revisions 62769 via svnmerge · e26447df
      Christian Heimes authored
      ........
        r62769 | christian.heimes | 2008-05-06 18:18:41 +0200 (Tue, 06 May 2008) | 2 lines
      
        Intern static string
        Use float constructors instead of magic code for float constants
      ........
      e26447df
    • Alexandre Vassalotti's avatar
    • Alexandre Vassalotti's avatar
      Added fast alternate io.BytesIO implementation and its test suite. · 11d19a86
      Alexandre Vassalotti authored
      Removed old test suite for StringIO.
      Modified truncate() to imply a seek to given argument value.
      11d19a86
    • Christian Heimes's avatar
      Merged revisions 62713,62715,62728,62737,62740,62744,62749,62756 via svnmerge from · c2ca5143
      Christian Heimes authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r62713 | georg.brandl | 2008-05-04 23:40:44 +0200 (Sun, 04 May 2008) | 2 lines
      
        #2695: Do case-insensitive check for algorithms.
      ........
        r62715 | benjamin.peterson | 2008-05-05 00:39:33 +0200 (Mon, 05 May 2008) | 2 lines
      
        Remove method signatures from the docstrings of io.py
      ........
        r62728 | martin.v.loewis | 2008-05-05 19:54:01 +0200 (Mon, 05 May 2008) | 2 lines
      
        Revert bogus checkin in r62724 to that file.
      ........
        r62737 | georg.brandl | 2008-05-05 22:59:05 +0200 (Mon, 05 May 2008) | 2 lines
      
        #2769: markup glitch.
      ........
        r62740 | georg.brandl | 2008-05-05 23:06:48 +0200 (Mon, 05 May 2008) | 2 lines
      
        #2752: fix second example too.
      ........
        r62744 | gregory.p.smith | 2008-05-05 23:53:45 +0200 (Mon, 05 May 2008) | 13 lines
      
        Fix a bug introduced in r62627.  see issue2760 and issue2632.
      
        An assertion in readline() would fail as data was already in the
        internal buffer even though the socket was in unbuffered read mode.
        That case is now handled.  More importantly, read() has been fixed to
        not over-recv() and leave newly recv()d data in the _fileobject buffer.
      
        The max() vs min() issue in read() is now gone.  Neither was correct.
        On bounded reads, always ask recv() for the exact amount of data we
        still need.
      
        Candidate for backporting to release25-maint along with r62627.
      ........
        r62749 | brett.cannon | 2008-05-06 06:37:31 +0200 (Tue, 06 May 2008) | 3 lines
      
        Fix a bug in the handling of the stacklevel argument in warnings.warn() where
        the stack was being unwound by two levels instead of one each time.
      ........
        r62756 | gregory.p.smith | 2008-05-06 09:05:18 +0200 (Tue, 06 May 2008) | 2 lines
      
        fix issue2707 - os.walk docstring example correctness typo.
      ........
      c2ca5143
    • Christian Heimes's avatar
      Blocked revisions 62734,62736,62748 via svnmerge · b3aa69e0
      Christian Heimes authored
      Blocking json for now. It requires a careful redesign in order to
      support bytes and unicode strings.
      
      ........
        r62734 | brett.cannon | 2008-05-05 22:21:38 +0200 (Mon, 05 May 2008) | 5 lines
      
        Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob
        Ippolito.
      
        Closes issue #2750.
      ........
        r62736 | georg.brandl | 2008-05-05 22:53:39 +0200 (Mon, 05 May 2008) | 2 lines
      
        Fix JSON module docs.
      ........
        r62748 | benjamin.peterson | 2008-05-06 04:51:10 +0200 (Tue, 06 May 2008) | 2 lines
      
        PEP 8 nits in json package
      ........
      b3aa69e0
  4. 05 May, 2008 3 commits