1. 30 Mar, 2017 1 kayıt (commit)
  2. 27 Eki, 2016 1 kayıt (commit)
  3. 08 Eyl, 2016 1 kayıt (commit)
  4. 03 Agu, 2016 1 kayıt (commit)
  5. 12 Tem, 2016 1 kayıt (commit)
  6. 09 Haz, 2016 1 kayıt (commit)
  7. 10 Şub, 2016 1 kayıt (commit)
  8. 07 Şub, 2016 1 kayıt (commit)
  9. 23 Kas, 2015 1 kayıt (commit)
  10. 13 Nis, 2015 1 kayıt (commit)
  11. 05 Ara, 2014 1 kayıt (commit)
  12. 31 Eki, 2014 1 kayıt (commit)
  13. 16 Mar, 2014 1 kayıt (commit)
  14. 12 Mar, 2014 1 kayıt (commit)
  15. 31 Ock, 2014 1 kayıt (commit)
  16. 16 Ock, 2014 1 kayıt (commit)
    • Larry Hastings's avatar
      Issue #20226: Major improvements to Argument Clinic. · 2a727916
      Larry Hastings yazdı
      * You may now specify an expression as the default value for a
        parameter!  Example: "sys.maxsize - 1".  This support is
        intentionally quite limited; you may only use values that
        can be represented as static C values.
      * Removed "doc_default", simplified support for "c_default"
        and "py_default".  (I'm not sure we still even need
        "py_default", but I'm leaving it in for now in case a
        use presents itself.)
      * Parameter lines support a trailing '\\' as a line
        continuation character, allowing you to break up long lines.
      * The argument parsing code generated when supporting optional
        groups now uses PyTuple_GET_SIZE instead of PyTuple_GetSize,
        leading to a 850% speedup in parsing.  (Just kidding, this
        is an unmeasurable difference.)
      * A bugfix for the recent regression where the generated
        prototype from pydoc for builtins would be littered with
        unreadable "=<object ...>"" default values for parameters
        that had no default value.
      * Converted some asserts into proper failure messages.
      * Many doc improvements and fixes.
      2a727916
  17. 04 May, 2013 1 kayıt (commit)
  18. 24 Haz, 2012 1 kayıt (commit)
  19. 05 May, 2012 1 kayıt (commit)
  20. 20 Mar, 2012 1 kayıt (commit)
  21. 14 Ock, 2012 1 kayıt (commit)
  22. 01 Ock, 2012 1 kayıt (commit)
  23. 01 Ara, 2011 1 kayıt (commit)
  24. 29 Tem, 2011 1 kayıt (commit)
  25. 06 Ock, 2011 2 kayıt (commit)
  26. 06 Eki, 2010 3 kayıt (commit)
  27. 21 Eyl, 2010 1 kayıt (commit)
  28. 17 Agu, 2010 1 kayıt (commit)
  29. 05 Tem, 2010 2 kayıt (commit)
  30. 25 Haz, 2010 1 kayıt (commit)
  31. 19 Haz, 2010 1 kayıt (commit)
  32. 18 Haz, 2010 1 kayıt (commit)
    • Victor Stinner's avatar
      Issue #8939: Improve arg.rst · 2aa3af4a
      Victor Stinner yazdı
       * Add :ctype: to Py_BEGIN_ALLOW_THREADS and int
       * "s" and "s#" formats of Py_BuildValue(): specify that the Python object type
         is str in the description
      2aa3af4a
  33. 13 Haz, 2010 1 kayıt (commit)
  34. 11 Haz, 2010 2 kayıt (commit)
    • Victor Stinner's avatar
      Merged revisions 81923 via svnmerge from · 6aec9bed
      Victor Stinner yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r81923 | victor.stinner | 2010-06-12 01:30:12 +0200 (sam., 12 juin 2010) | 16 lines
      
        Fix some bugs in c-api/arg.rst documentation
      
         * replace "the default encoding" by "'utf-8' encoding"
         * fix "w" / "w*" / "w#" doc: similar to "y" / "y*" / "y#"
           and not "s" / "s*" / "s#"
         * "u#": remove "Non-Unicode objects are handled by interpreting their
           read-buffer pointer ...", it's no more true
         * "es", "es#": remove "... and objects convertible to Unicode into a character
           buffer", it's no more true
         * Py_BuildValue(), "K" and "L" formats: specify the name of the C type on
           Windows (_int64 / unsigned _int64) as done for PyArg_Parse*() long long
           types
        --CETTE ligne, et les suivantes ci-dessous, seront ignorées--
      
        M    Doc/c-api/arg.rst
      ........
      6aec9bed
    • Victor Stinner's avatar
      Fix some bugs in c-api/arg.rst documentation · 7909b008
      Victor Stinner yazdı
       * replace "the default encoding" by "'utf-8' encoding"
       * fix "w" / "w*" / "w#" doc: similar to "y" / "y*" / "y#"
         and not "s" / "s*" / "s#"
       * "u#": remove "Non-Unicode objects are handled by interpreting their
         read-buffer pointer ...", it's no more true
       * "es", "es#": remove "... and objects convertible to Unicode into a character
         buffer", it's no more true
       * Py_BuildValue(), "K" and "L" formats: specify the name of the C type on
         Windows (_int64 / unsigned _int64) as done for PyArg_Parse*() long long
         types
      --CETTE ligne, et les suivantes ci-dessous, seront ignorées--
      
      M    Doc/c-api/arg.rst
      7909b008
  35. 08 Haz, 2010 1 kayıt (commit)