1. 25 Kas, 2010 1 kayıt (commit)
  2. 05 Kas, 2010 1 kayıt (commit)
  3. 04 Kas, 2010 1 kayıt (commit)
  4. 14 Eki, 2010 1 kayıt (commit)
  5. 08 Agu, 2010 1 kayıt (commit)
  6. 04 Agu, 2010 1 kayıt (commit)
  7. 01 Agu, 2010 1 kayıt (commit)
  8. 11 Tem, 2010 1 kayıt (commit)
  9. 07 Haz, 2010 3 kayıt (commit)
  10. 09 May, 2010 1 kayıt (commit)
  11. 23 Şub, 2010 1 kayıt (commit)
  12. 22 Şub, 2010 1 kayıt (commit)
  13. 03 Şub, 2010 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions… · 5e55b3e2
      Benjamin Peterson yazdı
      Merged revisions 77484,77487,77561,77570,77593,77603,77608,77667,77702-77703,77739,77858,77887,77889 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77484 | skip.montanaro | 2010-01-13 19:12:34 -0600 (Wed, 13 Jan 2010) | 4 lines
      
        Update PyEval_EvalFrame to PyEval_EvalFrameEx.  This looks to have been done
        partially before.  Also add a comment describing how this might have to work
        with different versions of the interpreter.
      ........
        r77487 | ezio.melotti | 2010-01-14 05:34:10 -0600 (Thu, 14 Jan 2010) | 1 line
      
        Fixed typo
      ........
        r77561 | georg.brandl | 2010-01-17 02:42:30 -0600 (Sun, 17 Jan 2010) | 1 line
      
        #7699: improve datetime docs: straightforward linking to strftime/strptime section, mark classmethods as such.
      ........
        r77570 | georg.brandl | 2010-01-17 06:14:42 -0600 (Sun, 17 Jan 2010) | 1 line
      
        Add note about usage of STRINGLIB_EMPTY.
      ........
        r77593 | georg.brandl | 2010-01-17 17:33:53 -0600 (Sun, 17 Jan 2010) | 1 line
      
        Fix internal reference.
      ........
        r77603 | benjamin.peterson | 2010-01-18 17:07:56 -0600 (Mon, 18 Jan 2010) | 8 lines
      
        data descriptors do not override the class dictionary if __get__ is not defined
      
        Adjust documentation and add a test to verify this behavior.
      
        See http://mail.python.org/pipermail/python-dev/2010-January/095637.html for
        discussion.
      ........
        r77608 | gregory.p.smith | 2010-01-19 02:19:03 -0600 (Tue, 19 Jan 2010) | 6 lines
      
        Do not compile stubs for the sha2 series hashes in the openssl hashlib
        module when the openssl version is too old to support them.  That
        leads both compiled code bloat and to unittests attempting to test
        implementations that don't exist for comparison purposes on such
        platforms.
      ........
        r77667 | mark.dickinson | 2010-01-21 12:32:27 -0600 (Thu, 21 Jan 2010) | 1 line
      
        Add two more test_strtod test values.
      ........
        r77702 | georg.brandl | 2010-01-23 02:43:31 -0600 (Sat, 23 Jan 2010) | 1 line
      
        #7762: fix refcount annotation of PyUnicode_Tailmatch().
      ........
        r77703 | georg.brandl | 2010-01-23 02:47:54 -0600 (Sat, 23 Jan 2010) | 1 line
      
        #7725: fix referencing issue.
      ........
        r77739 | benjamin.peterson | 2010-01-24 21:52:52 -0600 (Sun, 24 Jan 2010) | 1 line
      
        mention from_float() in error message
      ........
        r77858 | georg.brandl | 2010-01-30 11:57:48 -0600 (Sat, 30 Jan 2010) | 1 line
      
        #7802: fix invalid example (heh).
      ........
        r77887 | georg.brandl | 2010-01-31 12:51:49 -0600 (Sun, 31 Jan 2010) | 5 lines
      
        Fix-up ftplib documentation:
        move exception descriptions to toplevel, not inside a class
        remove attribution in "versionadded"
        spell and grammar check docstring of FTP_TLS
      ........
        r77889 | michael.foord | 2010-01-31 13:59:26 -0600 (Sun, 31 Jan 2010) | 1 line
      
        Minor modification to unittest documentation.
      ........
      5e55b3e2
  14. 13 Ock, 2010 3 kayıt (commit)
  15. 02 Ock, 2010 1 kayıt (commit)
  16. 30 Kas, 2009 1 kayıt (commit)
  17. 29 Kas, 2009 1 kayıt (commit)
  18. 30 Tem, 2009 1 kayıt (commit)
  19. 27 Tem, 2009 1 kayıt (commit)
  20. 23 May, 2009 1 kayıt (commit)
  21. 06 May, 2009 1 kayıt (commit)
  22. 05 May, 2009 1 kayıt (commit)
  23. 02 May, 2009 1 kayıt (commit)
  24. 01 May, 2009 2 kayıt (commit)
  25. 30 Nis, 2009 1 kayıt (commit)
  26. 27 Nis, 2009 1 kayıt (commit)
  27. 22 Nis, 2009 1 kayıt (commit)
  28. 16 Nis, 2009 1 kayıt (commit)
    • Eric Smith's avatar
      The other half of Issue #1580: use short float repr where possible. · 0923d1d8
      Eric Smith yazdı
      Addresses the float -> string conversion, using David Gay's code which
      was added in Mark Dickinson's checkin r71663.
      
      Also addresses these, which are intertwined with the short repr
      changes:
      
      - Issue #5772: format(1e100, '<') produces '1e+100', not '1.0e+100'
      - Issue #5515: 'n' formatting with commas no longer works poorly
          with leading zeros.
      - PEP 378 Format Specifier for Thousands Separator: implemented
          for floats.
      0923d1d8
  29. 13 Nis, 2009 1 kayıt (commit)
  30. 04 Nis, 2009 1 kayıt (commit)
  31. 03 Nis, 2009 2 kayıt (commit)
  32. 29 Mar, 2009 1 kayıt (commit)
  33. 14 Mar, 2009 1 kayıt (commit)
    • Eric Smith's avatar
      Merged revisions 70364 via svnmerge from · 8ec90443
      Eric Smith yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r70364 | eric.smith | 2009-03-14 07:57:26 -0400 (Sat, 14 Mar 2009) | 17 lines
      
        Issue 5237, Allow auto-numbered replacement fields in str.format() strings.
      
        For simple uses for str.format(), this makes the typing easier. Hopfully this
        will help in the adoption of str.format().
      
        For example:
        'The {} is {}'.format('sky', 'blue')
      
        You can mix and matcth auto-numbering and named replacement fields:
        'The {} is {color}'.format('sky', color='blue')
      
        But you can't mix and match auto-numbering and specified numbering:
        'The {0} is {}'.format('sky', 'blue')
        ValueError: cannot switch from manual field specification to automatic field numbering
      
        Will port to 3.1.
      ........
      8ec90443
  34. 20 Şub, 2009 1 kayıt (commit)