1. 04 Tem, 2011 1 kayıt (commit)
  2. 02 Mar, 2011 1 kayıt (commit)
  3. 27 Ara, 2010 2 kayıt (commit)
  4. 05 Ara, 2010 1 kayıt (commit)
  5. 04 Ara, 2010 1 kayıt (commit)
  6. 03 Ara, 2010 1 kayıt (commit)
  7. 16 Kas, 2010 2 kayıt (commit)
  8. 24 Eki, 2010 1 kayıt (commit)
  9. 17 Eki, 2010 1 kayıt (commit)
  10. 15 Eki, 2010 1 kayıt (commit)
    • Victor Stinner's avatar
      Use locale encoding if Py_FileSystemDefaultEncoding is not set · f3170cce
      Victor Stinner yazdı
       * PyUnicode_EncodeFSDefault(), PyUnicode_DecodeFSDefaultAndSize() and
         PyUnicode_DecodeFSDefault() use the locale encoding instead of UTF-8 if
         Py_FileSystemDefaultEncoding is NULL
       * redecode_filenames() functions and _Py_code_object_list (issue #9630)
         are no more needed: remove them
      f3170cce
  11. 07 Eki, 2010 1 kayıt (commit)
  12. 06 Eki, 2010 1 kayıt (commit)
    • Georg Brandl's avatar
      Merged revisions… · c7b6908b
      Georg Brandl yazdı
      Merged revisions 82262,82269,82434,82480-82481,82484-82485,82487-82488,82594,82599,82615 via svnmerge from
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r82262 | georg.brandl | 2010-06-27 12:17:12 +0200 (So, 27 Jun 2010) | 1 line
      
        #9078: fix some Unicode C API descriptions, in comments and docs.
      ................
        r82269 | georg.brandl | 2010-06-27 12:59:19 +0200 (So, 27 Jun 2010) | 1 line
      
        Wording fix.
      ................
        r82434 | georg.brandl | 2010-07-02 09:41:51 +0200 (Fr, 02 Jul 2010) | 9 lines
      
        Merged revisions 82433 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r82433 | georg.brandl | 2010-07-02 09:33:50 +0200 (Fr, 02 Jul 2010) | 1 line
      
          Grammar and markup fixes.
        ........
      ................
        r82480 | georg.brandl | 2010-07-03 12:21:50 +0200 (Sa, 03 Jul 2010) | 1 line
      
        Wrap and use the correct directive.
      ................
        r82481 | georg.brandl | 2010-07-03 12:22:10 +0200 (Sa, 03 Jul 2010) | 1 line
      
        Use the right role.
      ................
        r82484 | georg.brandl | 2010-07-03 12:26:17 +0200 (Sa, 03 Jul 2010) | 9 lines
      
        Recorded merge of revisions 82474 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r82474 | georg.brandl | 2010-07-03 10:40:13 +0200 (Sa, 03 Jul 2010) | 1 line
      
          Fix role name.
        ........
      ................
        r82485 | georg.brandl | 2010-07-03 12:26:54 +0200 (Sa, 03 Jul 2010) | 9 lines
      
        Merged revisions 82483 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r82483 | georg.brandl | 2010-07-03 12:25:54 +0200 (Sa, 03 Jul 2010) | 1 line
      
          Add link to bytecode docs.
        ........
      ................
        r82487 | georg.brandl | 2010-07-03 12:33:26 +0200 (Sa, 03 Jul 2010) | 1 line
      
        Fix markup.
      ................
        r82488 | georg.brandl | 2010-07-03 12:41:33 +0200 (Sa, 03 Jul 2010) | 1 line
      
        Remove the need for a "()" empty argument list after opcodes.
      ................
        r82594 | georg.brandl | 2010-07-05 22:13:41 +0200 (Mo, 05 Jul 2010) | 1 line
      
        Update Vec class constructor, remove indirection via function, use operator module.
      ................
        r82599 | alexander.belopolsky | 2010-07-05 23:44:05 +0200 (Mo, 05 Jul 2010) | 1 line
      
        "Modernized" the demo a little.
      ................
        r82615 | georg.brandl | 2010-07-07 00:58:50 +0200 (Mi, 07 Jul 2010) | 1 line
      
        Fix typo.
      ................
      c7b6908b
  13. 29 Eyl, 2010 1 kayıt (commit)
  14. 12 Eyl, 2010 1 kayıt (commit)
  15. 11 Eyl, 2010 1 kayıt (commit)
  16. 03 Eyl, 2010 1 kayıt (commit)
  17. 01 Eyl, 2010 3 kayıt (commit)
  18. 18 Agu, 2010 1 kayıt (commit)
    • Amaury Forgeot d'Arc's avatar
      #5127: Even on narrow unicode builds, the C functions that access the Unicode · 324ac65c
      Amaury Forgeot d'Arc yazdı
      Database (Py_UNICODE_TOLOWER, Py_UNICODE_ISDECIMAL, and others) now accept
      and return characters from the full Unicode range (Py_UCS4).
      
      The differences from Python code are few:
      - unicodedata.numeric(), unicodedata.decimal() and unicodedata.digit()
        now return the correct value for large code points
      - repr() may consider more characters as printable.
      324ac65c
  19. 16 Agu, 2010 1 kayıt (commit)
  20. 13 Agu, 2010 1 kayıt (commit)
    • Victor Stinner's avatar
      Issue #9542: Create PyUnicode_FSDecoder() function · 47fcb5b4
      Victor Stinner yazdı
      It's a ParseTuple converter: decode bytes objects to unicode using
      PyUnicode_DecodeFSDefaultAndSize(); str objects are output as-is.
      
       * Don't specify surrogateescape error handler in the comments nor the
         documentation, but PyUnicode_DecodeFSDefaultAndSize() and
         PyUnicode_EncodeFSDefault() because these functions use strict error handler
         for the mbcs encoding (on Windows).
       * Remove PyUnicode_FSConverter() comment in unicodeobject.c to avoid
         inconsistency with unicodeobject.h.
      47fcb5b4
  21. 10 Agu, 2010 1 kayıt (commit)
  22. 27 Haz, 2010 1 kayıt (commit)
  23. 15 May, 2010 2 kayıt (commit)
  24. 14 May, 2010 2 kayıt (commit)
    • Victor Stinner's avatar
      Merged revisions 81168 via svnmerge from · 9076f9e1
      Victor Stinner yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r81168 | victor.stinner | 2010-05-14 17:58:55 +0200 (ven., 14 mai 2010) | 10 lines
      
        Issue #8711: Document PyUnicode_DecodeFSDefault*() functions
      
         * Add paragraph titles to c-api/unicode.rst.
         * Fix PyUnicode_DecodeFSDefault*() comment: it now uses the "surrogateescape"
           error handler (and not "replace")
         * Remove "The function is intended to be used for paths and file names only
           during bootstrapping process where the codecs are not set up." from
           PyUnicode_FSConverter() comment: it is used after the bootstrapping and for
           other purposes than file names
      ........
      9076f9e1
    • Victor Stinner's avatar
      Issue #8711: Document PyUnicode_DecodeFSDefault*() functions · 77c38624
      Victor Stinner yazdı
       * Add paragraph titles to c-api/unicode.rst.
       * Fix PyUnicode_DecodeFSDefault*() comment: it now uses the "surrogateescape"
         error handler (and not "replace")
       * Remove "The function is intended to be used for paths and file names only
         during bootstrapping process where the codecs are not set up." from
         PyUnicode_FSConverter() comment: it is used after the bootstrapping and for
         other purposes than file names
      77c38624
  25. 09 May, 2010 2 kayıt (commit)
  26. 07 May, 2010 1 kayıt (commit)
  27. 22 Nis, 2010 1 kayıt (commit)
  28. 05 May, 2009 1 kayıt (commit)
  29. 04 May, 2009 1 kayıt (commit)
  30. 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
  31. 03 Nis, 2009 1 kayıt (commit)
    • Eric Smith's avatar
      Added ',' thousands grouping to int.__format__. See PEP 378. · a3b1ac8d
      Eric Smith yazdı
      This is incomplete, but I want to get some version into the next alpha. I am still working on:
      Documentation.
      More tests.
      Implement for floats.
      
      In addition, there's an existing bug with 'n' formatting that carries forward to thousands grouping (issue 5515).
      a3b1ac8d
  32. 09 Ock, 2009 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions 68167,68276,68292-68293,68344 via svnmerge from · 960cf0fd
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r68167 | vinay.sajip | 2009-01-02 12:53:04 -0600 (Fri, 02 Jan 2009) | 1 line
      
        Minor documentation changes relating to NullHandler, the module used for handlers and references to ConfigParser.
      ........
        r68276 | tarek.ziade | 2009-01-03 18:04:49 -0600 (Sat, 03 Jan 2009) | 1 line
      
        fixed #1702551: distutils sdist was not pruning VCS directories under win32
      ........
        r68292 | skip.montanaro | 2009-01-04 04:36:58 -0600 (Sun, 04 Jan 2009) | 3 lines
      
        If user configures --without-gcc give preference to $CC instead of blindly
        assuming the compiler will be "cc".
      ........
        r68293 | tarek.ziade | 2009-01-04 04:37:52 -0600 (Sun, 04 Jan 2009) | 1 line
      
        using clearer syntax
      ........
        r68344 | marc-andre.lemburg | 2009-01-05 13:43:35 -0600 (Mon, 05 Jan 2009) | 7 lines
      
        Fix #4846 (Py_UNICODE_ISSPACE causes linker error) by moving the declaration
        into the extern "C" section.
      
        Add a few more comments and apply some minor edits to make the file contents
        fit the original structure again.
      ........
      960cf0fd
  33. 28 Ara, 2008 1 kayıt (commit)