1. 06 Eki, 2011 1 kayıt (commit)
  2. 16 Mar, 2011 1 kayıt (commit)
  3. 28 Ara, 2010 1 kayıt (commit)
  4. 01 Eyl, 2010 1 kayıt (commit)
  5. 01 Agu, 2010 1 kayıt (commit)
  6. 27 Tem, 2010 1 kayıt (commit)
  7. 12 Tem, 2010 1 kayıt (commit)
  8. 10 Tem, 2010 1 kayıt (commit)
  9. 09 Tem, 2010 3 kayıt (commit)
  10. 07 Tem, 2010 5 kayıt (commit)
  11. 11 Haz, 2010 4 kayıt (commit)
  12. 04 Nis, 2010 2 kayıt (commit)
  13. 03 Nis, 2010 2 kayıt (commit)
  14. 05 Mar, 2010 2 kayıt (commit)
  15. 13 Agu, 2009 1 kayıt (commit)
  16. 30 Haz, 2009 1 kayıt (commit)
  17. 19 Nis, 2009 1 kayıt (commit)
  18. 04 Nis, 2009 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions 70837,70864,70878,71004,71032,71043 via svnmerge from · 7fe73a17
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r70837 | gregory.p.smith | 2009-03-31 11:54:10 -0500 (Tue, 31 Mar 2009) | 9 lines
      
        The unittest.TestCase.assertEqual() now displays the differences in lists,
        tuples, dicts and sets on failure.
      
        Many new handy type and comparison specific assert* methods have been added
        that fail with error messages actually useful for debugging.  Contributed in
        by Google and completed with help from mfoord and GvR at PyCon 2009 sprints.
      
        Discussion lives in http://bugs.python.org/issue2578.
      ........
        r70864 | gregory.p.smith | 2009-03-31 14:03:28 -0500 (Tue, 31 Mar 2009) | 10 lines
      
        Rename the actual method definitions to the official assertFoo names.
      
        Adds unittests to make sure the old fail* names continue to work now
        and adds a comment that they are pending deprecation.
      
        Also adds a test to confirm that the plural Equals method variants
        continue to exist even though we're unlikely to deprecate those.
      
        http://bugs.python.org/issue2578
      ........
        r70878 | gregory.p.smith | 2009-03-31 14:59:14 -0500 (Tue, 31 Mar 2009) | 3 lines
      
        Issue an actual PendingDeprecationWarning for the TestCase.fail* methods.
        Document the deprecation.
      ........
        r71004 | benjamin.peterson | 2009-04-01 18:15:49 -0500 (Wed, 01 Apr 2009) | 1 line
      
        remove double underscores
      ........
        r71032 | michael.foord | 2009-04-01 22:20:38 -0500 (Wed, 01 Apr 2009) | 13 lines
      
        Better exception messages for unittest assert methods.
      
        - unittest.assertNotEqual() now uses the inequality operator (!=) instead
          of the equality operator.
      
        - Default assertTrue and assertFalse messages are now useful.
      
        - TestCase has a longMessage attribute. This defaults to False, but if set to True
          useful error messages are shown in addition to explicit messages passed to assert methods.
      
        Issue #5663
      ........
        r71043 | michael.foord | 2009-04-02 00:51:54 -0500 (Thu, 02 Apr 2009) | 7 lines
      
        Store the functions in the _type_equality_funcs as wrapped objects that are deep copyable.
      
        This allows for the deep copying of TestCase instances.
      
        Issue 5660
      ........
      7fe73a17
  19. 29 Mar, 2009 1 kayıt (commit)
  20. 21 Mar, 2009 1 kayıt (commit)
  21. 13 Şub, 2009 1 kayıt (commit)
  22. 10 Şub, 2009 1 kayıt (commit)
  23. 03 Ock, 2009 1 kayıt (commit)
    • Georg Brandl's avatar
      Merged revisions 68112,68115,68120,68133,68141-68142,68145-68146,68148-68149 via svnmerge from · b1441c7e
      Georg Brandl yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r68112 | benjamin.peterson | 2009-01-01 00:48:39 +0100 (Thu, 01 Jan 2009) | 1 line
      
        #4795 inspect.isgeneratorfunction() should return False instead of None
      ........
        r68115 | benjamin.peterson | 2009-01-01 05:04:41 +0100 (Thu, 01 Jan 2009) | 1 line
      
        simplfy code
      ........
        r68120 | georg.brandl | 2009-01-01 13:15:31 +0100 (Thu, 01 Jan 2009) | 4 lines
      
        #4228: Pack negative values the same way as 2.4
        in struct's L format.
      ........
        r68133 | antoine.pitrou | 2009-01-01 16:38:03 +0100 (Thu, 01 Jan 2009) | 1 line
      
        fill in actual issue number in tests
      ........
        r68141 | benjamin.peterson | 2009-01-01 17:43:12 +0100 (Thu, 01 Jan 2009) | 1 line
      
        fix highlighting
      ........
        r68142 | benjamin.peterson | 2009-01-01 18:29:49 +0100 (Thu, 01 Jan 2009) | 2 lines
      
        welcome to 2009, Python!
      ........
        r68145 | amaury.forgeotdarc | 2009-01-02 01:03:54 +0100 (Fri, 02 Jan 2009) | 5 lines
      
        #4801 _collections module fails to build on cygwin.
      
        _PyObject_GC_TRACK is the macro version of PyObject_GC_Track,
        and according to documentation it should not be used for extension modules.
      ........
        r68146 | ronald.oussoren | 2009-01-02 11:44:46 +0100 (Fri, 02 Jan 2009) | 2 lines
      
        Fix for issue4472: "configure --enable-shared doesn't work on OSX"
      ........
        r68148 | ronald.oussoren | 2009-01-02 11:48:31 +0100 (Fri, 02 Jan 2009) | 2 lines
      
        Forgot to add a NEWS item in my previous checkin
      ........
        r68149 | ronald.oussoren | 2009-01-02 11:50:48 +0100 (Fri, 02 Jan 2009) | 2 lines
      
        Fix for issue4780
      ........
      b1441c7e
  24. 09 Eyl, 2008 1 kayıt (commit)
  25. 13 Tem, 2008 1 kayıt (commit)
  26. 17 Haz, 2008 3 kayıt (commit)
    • Amaury Forgeot d'Arc's avatar
    • Amaury Forgeot d'Arc's avatar
      Merged revisions… · 35c8658a
      Amaury Forgeot d'Arc yazdı
      Merged revisions 64119,64147,64150,64165,64219-64221,64229-64230,64233,64235,64253,64278,64280,64301,64303,64320,64328,64338-64339 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r64119 | andrew.kuchling | 2008-06-11 14:53:14 +0200 (mer., 11 juin 2008) | 1 line
      
        Note PEP 371 section
      ........
        r64147 | benjamin.peterson | 2008-06-11 22:04:30 +0200 (mer., 11 juin 2008) | 2 lines
      
        update ACKS and NEWs for multiprocessing
      ........
        r64150 | georg.brandl | 2008-06-11 22:28:06 +0200 (mer., 11 juin 2008) | 2 lines
      
        Can we agree to put dots at entry ends? Thanks.
      ........
        r64165 | armin.rigo | 2008-06-12 11:50:58 +0200 (jeu., 12 juin 2008) | 3 lines
      
        Sounds obvious, but I didn't even realize that you can put non-string
        keys in type dictionaries without using this locals() hack.
      ........
        r64219 | neal.norwitz | 2008-06-13 08:00:46 +0200 (ven., 13 juin 2008) | 1 line
      
        Check for memory alloc failure
      ........
        r64220 | neal.norwitz | 2008-06-13 08:02:26 +0200 (ven., 13 juin 2008) | 3 lines
      
        Fix some memory dealloc problems when exceptions occur.
        It caused: "Fatal Python error: UNREF invalid object" in the DoubleTest.
      ........
        r64221 | neal.norwitz | 2008-06-13 08:03:25 +0200 (ven., 13 juin 2008) | 3 lines
      
        Fix typo in method name.  The LT class implemented less than.  The LE class
        should implement less than or equal to (as the code does).
      ........
        r64229 | georg.brandl | 2008-06-13 15:26:54 +0200 (ven., 13 juin 2008) | 2 lines
      
        Clarification.
      ........
        r64230 | robert.schuppenies | 2008-06-13 15:29:37 +0200 (ven., 13 juin 2008) | 2 lines
      
        Fixed: sys.getsizeof does not take the actual length of the tuples into account.
      ........
        r64233 | benjamin.peterson | 2008-06-13 17:11:50 +0200 (ven., 13 juin 2008) | 2 lines
      
        platform.uname now tries to fill empty values even when os.uname is present
      ........
        r64235 | benjamin.peterson | 2008-06-13 17:41:09 +0200 (ven., 13 juin 2008) | 1 line
      
        set svn:ignore on multiprocessing
      ........
        r64253 | andrew.kuchling | 2008-06-13 21:38:18 +0200 (ven., 13 juin 2008) | 1 line
      
        Typo fixes
      ........
        r64278 | martin.v.loewis | 2008-06-14 16:24:47 +0200 (sam., 14 juin 2008) | 2 lines
      
        Disable UAC by default.
      ........
        r64280 | gregory.p.smith | 2008-06-14 19:34:09 +0200 (sam., 14 juin 2008) | 3 lines
      
        silence the test when it is skipped on some platforms.  should fix a
        buildbot.
      ........
        r64301 | georg.brandl | 2008-06-15 21:54:36 +0200 (dim., 15 juin 2008) | 2 lines
      
        Forward-port new test from r64300.
      ........
        r64303 | raymond.hettinger | 2008-06-16 03:42:40 +0200 (lun., 16 juin 2008) | 1 line
      
        Issue 3116: fix quadratic behavior in marshal.dumps().
      ........
        r64320 | georg.brandl | 2008-06-16 23:00:47 +0200 (lun., 16 juin 2008) | 2 lines
      
        Add Jesse Noller to the developers list.
      ........
        r64328 | georg.brandl | 2008-06-17 11:01:35 +0200 (mar., 17 juin 2008) | 2 lines
      
        Split the HTML index.
      ........
        r64338 | vinay.sajip | 2008-06-17 13:02:14 +0200 (mar., 17 juin 2008) | 1 line
      
        Bug #3126: StreamHandler and FileHandler check before calling "flush" and "close" that the stream object has these, using hasattr (thanks to bobf for the patch).
      ........
        r64339 | vinay.sajip | 2008-06-17 13:04:02 +0200 (mar., 17 juin 2008) | 1 line
      
        Updated with fix for #3126.
      ........
      35c8658a
    • Amaury Forgeot d'Arc's avatar
      Merged revisions… · fdfe62d8
      Amaury Forgeot d'Arc yazdı
      Merged revisions 64089,64098,64100-64102,64113,64115-64116,64118,64120,64132,64342 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r64089 | armin.ronacher | 2008-06-10 22:37:02 +0200 (mar., 10 juin 2008) | 3 lines
      
        Fix a formatting error in the ast documentation.
      ........
        r64098 | raymond.hettinger | 2008-06-11 02:25:29 +0200 (mer., 11 juin 2008) | 6 lines
      
        Mini-PEP: Simplifying numbers.py
        * Convert binary methods in Integral to mixin methods
        * Remove three-arg __pow__ as a required method
        * Make __int__ the root method instead of __long__.
      ........
        r64100 | raymond.hettinger | 2008-06-11 02:28:51 +0200 (mer., 11 juin 2008) | 1 line
      
        Update numbers doc for the Integral simplification.
      ........
        r64101 | raymond.hettinger | 2008-06-11 02:44:47 +0200 (mer., 11 juin 2008) | 3 lines
      
        Handle the case with zero arguments.
      ........
        r64102 | benjamin.peterson | 2008-06-11 03:31:28 +0200 (mer., 11 juin 2008) | 4 lines
      
        convert test_struct to a unittest thanks to Giampaolo Rodola
        I had to disable one test because it was functioning incorrectly, see #1530559
        I also removed the debugging prints
      ........
        r64113 | thomas.heller | 2008-06-11 09:10:43 +0200 (mer., 11 juin 2008) | 2 lines
      
        Fix markup.
        Document the new 'offset' parameter for the 'ctypes.byref' function.
      ........
        r64115 | raymond.hettinger | 2008-06-11 12:30:54 +0200 (mer., 11 juin 2008) | 1 line
      
        Multi-arg form for set.difference() and set.difference_update().
      ........
        r64116 | raymond.hettinger | 2008-06-11 14:06:49 +0200 (mer., 11 juin 2008) | 1 line
      
        Issue 3051:  Let heapq work with either __lt__ or __le__.
      ........
        r64118 | raymond.hettinger | 2008-06-11 14:39:09 +0200 (mer., 11 juin 2008) | 1 line
      
        Optimize previous checkin for heapq.
      ........
        r64120 | raymond.hettinger | 2008-06-11 15:14:50 +0200 (mer., 11 juin 2008) | 1 line
      
        Add test for heapq using both __lt__ and __le__.
      ........
        r64132 | gregory.p.smith | 2008-06-11 20:00:52 +0200 (mer., 11 juin 2008) | 3 lines
      
        Correct an incorrect comment about our #include of stddef.h.
        (see Doug Evans' comment on python-dev 2008-06-10)
      ........
        r64342 | guido.van.rossum | 2008-06-17 19:38:02 +0200 (mar., 17 juin 2008) | 3 lines
      
        Roll back Raymond's -r64098 while we think of something better.
        (See issue 3056 -- we're close to a resolution but need unittests.)
      ........
      fdfe62d8