1. 10 Tem, 2007 4 kayıt (commit)
  2. 09 Tem, 2007 8 kayıt (commit)
  3. 03 Tem, 2007 10 kayıt (commit)
  4. 01 Tem, 2007 1 kayıt (commit)
  5. 30 Haz, 2007 4 kayıt (commit)
    • Guido van Rossum's avatar
      Fix a failure that was only apparent on big-endian machines: · 8934fc26
      Guido van Rossum yazdı
      the argument corresponding to 'c' in PyArg_ParseTuple() must be an int,
      not a char!  (This is new -- Walter Doerwald changed it in r56044.
      Note sure this was a good idea.)
      
      Also removed a debug printf() call that was causing compiler warnings.
      8934fc26
    • Martin v. Löwis's avatar
      Fix test_httplib. · dd5a8607
      Martin v. Löwis yazdı
      dd5a8607
    • Guido van Rossum's avatar
      Merged revisions 56020-56124 via svnmerge from · 486364b8
      Guido van Rossum yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/p3yk
      
      ................
        r56037 | georg.brandl | 2007-06-19 05:33:20 -0700 (Tue, 19 Jun 2007) | 2 lines
      
        Patch #1739659: don't slice dict.keys() in pydoc.
      ................
        r56060 | martin.v.loewis | 2007-06-21 13:00:02 -0700 (Thu, 21 Jun 2007) | 2 lines
      
        Regenerate to add True, False, None.
      ................
        r56069 | neal.norwitz | 2007-06-21 22:31:56 -0700 (Thu, 21 Jun 2007) | 1 line
      
        Get the doctest working again after adding None, True, and False as kewyords.
      ................
        r56070 | neal.norwitz | 2007-06-21 23:25:33 -0700 (Thu, 21 Jun 2007) | 1 line
      
        Add space to error message.
      ................
        r56071 | neal.norwitz | 2007-06-21 23:40:04 -0700 (Thu, 21 Jun 2007) | 6 lines
      
        Get pybench working, primarily
         * Use print function
         * Stop using string module
         * Use sorted instead of assuming dict methods return lists
         * Convert range result to a list
      ................
        r56089 | collin.winter | 2007-06-26 10:31:48 -0700 (Tue, 26 Jun 2007) | 1 line
      
        Fix AttributeError in distutils/dir_util.py.
      ................
        r56124 | guido.van.rossum | 2007-06-29 18:04:31 -0700 (Fri, 29 Jun 2007) | 30 lines
      
        Merged revisions 56014-56123 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r56019 | lars.gustaebel | 2007-06-18 04:42:11 -0700 (Mon, 18 Jun 2007) | 2 lines
      
          Added exclude keyword argument to the TarFile.add() method.
        ........
          r56023 | lars.gustaebel | 2007-06-18 13:05:55 -0700 (Mon, 18 Jun 2007) | 3 lines
      
          Added missing \versionchanged tag for the new exclude
          parameter.
        ........
          r56038 | georg.brandl | 2007-06-19 05:36:00 -0700 (Tue, 19 Jun 2007) | 2 lines
      
          Bug #1737864: allow empty message in logging format routines.
        ........
          r56040 | georg.brandl | 2007-06-19 05:38:20 -0700 (Tue, 19 Jun 2007) | 2 lines
      
          Bug #1739115: make shutil.rmtree docs clear wrt. file deletion.
        ........
          r56084 | georg.brandl | 2007-06-25 08:21:23 -0700 (Mon, 25 Jun 2007) | 2 lines
      
          Bug #1742901: document None behavior of shlex.split.
        ........
          r56091 | georg.brandl | 2007-06-27 07:09:56 -0700 (Wed, 27 Jun 2007) | 2 lines
      
          Fix a variable name in winreg docs.
        ........
      ................
      486364b8
    • Guido van Rossum's avatar
      8ddff708
  6. 22 Haz, 2007 3 kayıt (commit)
  7. 20 Haz, 2007 6 kayıt (commit)
  8. 18 Haz, 2007 3 kayıt (commit)
    • Guido van Rossum's avatar
      "Fix" the array module test -- by ripping out the 'c' typecode. · 31f72d72
      Guido van Rossum yazdı
      (We already have 'b' for bytes and 'u' for unicode.)
      31f72d72
    • Guido van Rossum's avatar
      Fix a buch of shallow test failures. · c43e79f3
      Guido van Rossum yazdı
      Note: in test_fileinput.py, two tests are disabled until I figure out how
      to replace these.
      c43e79f3
    • Guido van Rossum's avatar
      Merged revisions 55962-56019 via svnmerge from · 7eaf8223
      Guido van Rossum yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/p3yk
      
      ................
        r55985 | neal.norwitz | 2007-06-14 20:14:38 -0700 (Thu, 14 Jun 2007) | 2 lines
      
        All these tests have been flaky wrt reporting leaks.  Disable them.
      ................
        r56003 | neal.norwitz | 2007-06-15 19:41:09 -0700 (Fri, 15 Jun 2007) | 1 line
      
        Fix typo (certain).
      ................
        r56004 | neal.norwitz | 2007-06-15 20:54:18 -0700 (Fri, 15 Jun 2007) | 4 lines
      
        Fix it so test_os no longer reports ref leaks by clearing all the caches
        the ABCMeta stores on the class.  Apply this to all the ABC collections
        as well as the class of os.environ which inherits from an ABC collection.
      ................
        r56013 | neal.norwitz | 2007-06-17 19:56:31 -0700 (Sun, 17 Jun 2007) | 4 lines
      
        This should make it a little easier when adding new collections which use ABCs.
        The new subclass won't need to be listed in regrtest.
        It will be even better when Guido adds weakrefs. :-)
      ................
        r56014 | martin.v.loewis | 2007-06-17 20:15:51 -0700 (Sun, 17 Jun 2007) | 1 line
      
        Drop inline, as it's not support by VS 2003.
      ................
        r56015 | martin.v.loewis | 2007-06-17 20:17:19 -0700 (Sun, 17 Jun 2007) | 1 line
      
        Expect long objects for DWORD values.
      ................
        r56016 | martin.v.loewis | 2007-06-17 20:18:01 -0700 (Sun, 17 Jun 2007) | 1 line
      
        Drop modules that have been deleted.
      ................
        r56017 | martin.v.loewis | 2007-06-17 20:18:55 -0700 (Sun, 17 Jun 2007) | 1 line
      
        Bump DLL version number to 30.
      ................
        r56018 | neal.norwitz | 2007-06-17 20:55:43 -0700 (Sun, 17 Jun 2007) | 62 lines
      
        Merged revisions 55951-56013 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r55956 | thomas.heller | 2007-06-13 00:07:03 -0700 (Wed, 13 Jun 2007) | 2 lines
      
          Do not hardcode the buildbot's directory name.
        ........
          r55957 | thomas.heller | 2007-06-13 00:07:41 -0700 (Wed, 13 Jun 2007) | 2 lines
      
          Notes about building tcl/tk for windows/AMD64.
        ........
          r55958 | thomas.heller | 2007-06-13 00:54:57 -0700 (Wed, 13 Jun 2007) | 2 lines
      
          Build bzip2.
        ........
          r55962 | walter.doerwald | 2007-06-13 09:57:12 -0700 (Wed, 13 Jun 2007) | 8 lines
      
          Add T_PYSSIZET in structmember.h: This can be used for
          Py_ssize_t members.
      
          Simplify the implementation of UnicodeError objects:
          start and end attributes are now stored directly as
          Py_ssize_t members, which simplifies various get and
          set functions.
        ........
          r55975 | martin.v.loewis | 2007-06-14 13:46:25 -0700 (Thu, 14 Jun 2007) | 3 lines
      
          Patch #1734014: Use _I64_MAX instead of LLONG_MAX.
          Will backport to 2.5.
        ........
          r55984 | neal.norwitz | 2007-06-14 20:11:41 -0700 (Thu, 14 Jun 2007) | 4 lines
      
          urllib2_localnet says it leaks probably due to threads. So ignore it.
          popen2 is also complaining probably for similar reasons.
          make install always reports failure, so don't mail in this case.
        ........
          r56001 | andrew.kuchling | 2007-06-15 15:43:03 -0700 (Fri, 15 Jun 2007) | 1 line
      
          Add a word
        ........
          r56005 | martin.v.loewis | 2007-06-16 03:08:43 -0700 (Sat, 16 Jun 2007) | 2 lines
      
          Mention Senthil Kumaran.
        ........
          r56006 | georg.brandl | 2007-06-16 10:10:12 -0700 (Sat, 16 Jun 2007) | 2 lines
      
          Add missing \versionadded.
        ........
          r56009 | neal.norwitz | 2007-06-17 11:48:32 -0700 (Sun, 17 Jun 2007) | 1 line
      
          SF #1738670, make example in doc work
        ........
          r56011 | neal.norwitz | 2007-06-17 19:46:36 -0700 (Sun, 17 Jun 2007) | 1 line
      
          SF #1738754, remove extra backslash in string
        ........
          r56012 | neal.norwitz | 2007-06-17 19:50:15 -0700 (Sun, 17 Jun 2007) | 1 line
      
          Revert last change for SF #1738754, there's no print in there.
        ........
      ................
      7eaf8223
  9. 15 Haz, 2007 1 kayıt (commit)