1. 20 May, 2008 1 kayıt (commit)
  2. 23 Şub, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 60990-61002 via svnmerge from · 05e8be17
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60990 | eric.smith | 2008-02-23 17:05:26 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Removed duplicate Py_CHARMASK define.  It's already defined in Python.h.
      ........
        r60991 | andrew.kuchling | 2008-02-23 17:23:05 +0100 (Sat, 23 Feb 2008) | 4 lines
      
        #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances.
        Remove automatic handling of datetime.date and datetime.time.
        This breaks backward compatibility, but python-dev discussion was strongly
        against this automatic conversion; see the bug for a link.
      ........
        r60994 | andrew.kuchling | 2008-02-23 17:39:43 +0100 (Sat, 23 Feb 2008) | 1 line
      
        #835521: Add index entries for various pickle-protocol methods and attributes
      ........
        r60995 | andrew.kuchling | 2008-02-23 18:10:46 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        #1433694: minidom's .normalize() failed to set .nextSibling for last element.
        Fix by Malte Helmert
      ........
        r61000 | christian.heimes | 2008-02-23 18:40:11 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Patch #2167 from calvin: Remove unused imports
      ........
        r61001 | christian.heimes | 2008-02-23 18:42:31 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Patch #1957: syslogmodule: Release GIL when calling syslog(3)
      ........
        r61002 | christian.heimes | 2008-02-23 18:52:07 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        Issue #2051 and patch from Alexander Belopolsky:
        Permission for pyc and pyo files are inherited from the py file.
      ........
      05e8be17
  3. 06 Ock, 2008 1 kayıt (commit)
  4. 27 Mar, 2007 1 kayıt (commit)
  5. 15 Ock, 2007 1 kayıt (commit)
  6. 24 Agu, 2006 1 kayıt (commit)
    • Guido van Rossum's avatar
      Restructure comparison dramatically. There is no longer a default · 47b9ff6b
      Guido van Rossum yazdı
      *ordering* between objects; there is only a default equality test
      (defined by an object being equal to itself only).  Read the comment
      in object.c.  The current implementation never uses a three-way
      comparison to compute a rich comparison, but it does use a rich
      comparison to compute a three-way comparison.  I'm not quite done
      ripping out all the calls to PyObject_Compare/Cmp, or replacing
      tp_compare implementations with tp_richcompare implementations;
      but much of that has happened (to make most unit tests pass).
      
      The following tests still fail, because I need help deciding
      or understanding:
      
      test_codeop -- depends on comparing code objects
      test_datetime -- need Tim Peters' opinion
      test_marshal -- depends on comparing code objects
      test_mutants -- need help understanding it
      
      The problem with test_codeop and test_marshal is this: these tests
      compare two different code objects and expect them to be equal.
      Is that still a feature we'd like to support?  I've temporarily
      removed the comparison and hash code from code objects, so they
      use the default (equality by pointer only) comparison.
      
      For the other two tests, run them to see for yourself.
      (There may be more failing test with "-u all".)
      
      A general problem with getting lots of these tests to pass is
      the reality that for object types that have a natural total ordering,
      implementing __cmp__ is much more convenient than implementing
      __eq__, __ne__, __lt__, and so on.  Should we go back to allowing
      __cmp__ to provide a total ordering?  Should we provide some other
      way to implement rich comparison with a single method override?
      Alex proposed a __key__() method; I've considered a __richcmp__()
      method.  Or perhaps __cmp__() just shouldn't be killed off...
      47b9ff6b
  7. 30 Nis, 2006 1 kayıt (commit)
  8. 21 Nis, 2006 1 kayıt (commit)
  9. 30 Tem, 2002 1 kayıt (commit)
    • Barry Warsaw's avatar
      Complete the absolute import patch for the test suite. All relative · 408b6d34
      Barry Warsaw yazdı
      imports of test modules now import from the test package.  Other
      related oddities are also fixed (like DeprecationWarning filters that
      weren't specifying the full import part, etc.).  Also did a general
      code cleanup to remove all "from test.test_support import *"'s.  Other
      from...import *'s weren't changed.
      408b6d34
  10. 04 Eyl, 2001 1 kayıt (commit)
  11. 16 Agu, 2001 1 kayıt (commit)
    • Tim Peters's avatar
      Repair some accidents causing Windows failures: · 63a8d694
      Tim Peters yazdı
      + test_compare.  While None compares less than anything else, it's not
        always the case that None has the smallest id().
      + test_descr.  The output of %p (pointer) formats varies across platforms.
        In particular, on Windows it doesn't produce a leading "0x".
      63a8d694
  12. 15 Agu, 2001 1 kayıt (commit)
  13. 04 Ock, 2001 1 kayıt (commit)
  14. 03 Ock, 2001 1 kayıt (commit)
  15. 02 Ock, 2001 1 kayıt (commit)