1. 14 Haz, 2018 1 kayıt (commit)
  2. 22 May, 2018 1 kayıt (commit)
  3. 02 Kas, 2017 1 kayıt (commit)
  4. 15 Eyl, 2017 1 kayıt (commit)
  5. 10 Ara, 2016 1 kayıt (commit)
  6. 22 Kas, 2016 1 kayıt (commit)
  7. 27 Eki, 2016 1 kayıt (commit)
  8. 07 Eki, 2016 1 kayıt (commit)
  9. 18 Haz, 2016 1 kayıt (commit)
  10. 08 Ara, 2015 1 kayıt (commit)
  11. 25 Agu, 2015 1 kayıt (commit)
  12. 23 Haz, 2015 1 kayıt (commit)
  13. 28 May, 2015 1 kayıt (commit)
  14. 21 May, 2015 2 kayıt (commit)
  15. 05 Eki, 2014 1 kayıt (commit)
  16. 03 Tem, 2014 1 kayıt (commit)
  17. 28 Nis, 2014 1 kayıt (commit)
  18. 10 Nis, 2014 1 kayıt (commit)
  19. 08 Nis, 2014 1 kayıt (commit)
  20. 16 Mar, 2014 1 kayıt (commit)
  21. 26 Şub, 2014 1 kayıt (commit)
  22. 09 Eki, 2013 1 kayıt (commit)
  23. 16 Agu, 2013 1 kayıt (commit)
  24. 01 Agu, 2013 1 kayıt (commit)
  25. 30 Tem, 2013 1 kayıt (commit)
  26. 03 May, 2012 1 kayıt (commit)
  27. 06 Mar, 2012 1 kayıt (commit)
  28. 25 Şub, 2012 1 kayıt (commit)
    • Stefan Krah's avatar
      - Issue #10181: New memoryview implementation fixes multiple ownership · 9a2d99e2
      Stefan Krah yazdı
        and lifetime issues of dynamically allocated Py_buffer members (#9990)
        as well as crashes (#8305, #7433). Many new features have been added
        (See whatsnew/3.3), and the documentation has been updated extensively.
        The ndarray test object from _testbuffer.c implements all aspects of
        PEP-3118, so further development towards the complete implementation
        of the PEP can proceed in a test-driven manner.
      
        Thanks to Nick Coghlan, Antoine Pitrou and Pauli Virtanen for review
        and many ideas.
      
      - Issue #12834: Fix incorrect results of memoryview.tobytes() for
        non-contiguous arrays.
      
      - Issue #5231: Introduce memoryview.cast() method that allows changing
        format and shape without making a copy of the underlying memory.
      9a2d99e2
  29. 14 Ock, 2012 1 kayıt (commit)
  30. 09 Agu, 2011 1 kayıt (commit)
  31. 25 Şub, 2011 2 kayıt (commit)
    • Georg Brandl's avatar
      Merged revisions… · 28dadd98
      Georg Brandl yazdı
      Merged revisions 87050,87101,87146,87156,87172,87175,87371,87378,87522-87524,87526,87530-87535 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r87050 | georg.brandl | 2010-12-04 18:09:30 +0100 (Sa, 04 Dez 2010) | 1 line
      
        Fix typo.
      ........
        r87101 | georg.brandl | 2010-12-06 23:02:48 +0100 (Mo, 06 Dez 2010) | 1 line
      
        Remove visible XXX comments.
      ........
        r87146 | georg.brandl | 2010-12-09 19:08:43 +0100 (Do, 09 Dez 2010) | 1 line
      
        Fix "seperate".
      ........
        r87156 | georg.brandl | 2010-12-10 11:01:44 +0100 (Fr, 10 Dez 2010) | 1 line
      
        #10668: fix wrong call of __init__.
      ........
        r87172 | georg.brandl | 2010-12-11 20:10:30 +0100 (Sa, 11 Dez 2010) | 1 line
      
        Avoid AttributeError(_closed) when a TemporaryDirectory is deallocated whose mkdtemp call failed.
      ........
        r87175 | georg.brandl | 2010-12-11 23:19:34 +0100 (Sa, 11 Dez 2010) | 1 line
      
        Fix markup.
      ........
        r87371 | georg.brandl | 2010-12-18 17:21:58 +0100 (Sa, 18 Dez 2010) | 1 line
      
        Fix typo.
      ........
        r87378 | georg.brandl | 2010-12-18 18:51:28 +0100 (Sa, 18 Dez 2010) | 1 line
      
        #10723: add missing builtin exceptions.
      ........
        r87522 | georg.brandl | 2010-12-28 10:16:12 +0100 (Di, 28 Dez 2010) | 1 line
      
        Replace sys.maxint mention by sys.maxsize.
      ........
        r87523 | georg.brandl | 2010-12-28 10:18:24 +0100 (Di, 28 Dez 2010) | 1 line
      
        Remove confusing paragraph -- this is relevant only to advanced users anyway and does not belong into the tutorial.
      ........
        r87524 | georg.brandl | 2010-12-28 10:29:19 +0100 (Di, 28 Dez 2010) | 1 line
      
        Fix advice: call PyType_Ready to fill in ob_type of custom types.
      ........
        r87526 | georg.brandl | 2010-12-28 11:38:33 +0100 (Di, 28 Dez 2010) | 1 line
      
        #10777: fix iteration over dict keys while mutating the dict.
      ........
        r87530 | georg.brandl | 2010-12-28 12:06:07 +0100 (Di, 28 Dez 2010) | 1 line
      
        #10767: update README in crashers; not all may have a bug entry and/or be fixed.
      ........
        r87531 | georg.brandl | 2010-12-28 12:08:17 +0100 (Di, 28 Dez 2010) | 1 line
      
        #10742: document readonly attribute of memoryviews.
      ........
        r87532 | georg.brandl | 2010-12-28 12:15:49 +0100 (Di, 28 Dez 2010) | 1 line
      
        #10781: clarify that *encoding* is not a parameter for Node objects in general.
      ........
        r87533 | georg.brandl | 2010-12-28 12:38:12 +0100 (Di, 28 Dez 2010) | 1 line
      
        Remove history; adapt a bit more to reST, since this will once be part of the dev guide.
      ........
        r87534 | georg.brandl | 2010-12-28 12:48:53 +0100 (Di, 28 Dez 2010) | 1 line
      
        Rewrap.
      ........
        r87535 | georg.brandl | 2010-12-28 12:49:41 +0100 (Di, 28 Dez 2010) | 1 line
      
        #10739: document that on Windows, socket.makefile() does not make a file that has a true file descriptor usable where such a thing is expected.
      ........
      28dadd98
    • Georg Brandl's avatar
      Merged revisions… · d98934c4
      Georg Brandl yazdı
      Merged revisions 87101,87146,87156,87172,87175,87371,87378,87522-87524,87526-87528,87530-87536,87581 via svnmerge from
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r87101 | georg.brandl | 2010-12-06 23:02:48 +0100 (Mo, 06 Dez 2010) | 1 line
      
        Remove visible XXX comments.
      ........
        r87146 | georg.brandl | 2010-12-09 19:08:43 +0100 (Do, 09 Dez 2010) | 1 line
      
        Fix "seperate".
      ........
        r87156 | georg.brandl | 2010-12-10 11:01:44 +0100 (Fr, 10 Dez 2010) | 1 line
      
        #10668: fix wrong call of __init__.
      ........
        r87172 | georg.brandl | 2010-12-11 20:10:30 +0100 (Sa, 11 Dez 2010) | 1 line
      
        Avoid AttributeError(_closed) when a TemporaryDirectory is deallocated whose mkdtemp call failed.
      ........
        r87175 | georg.brandl | 2010-12-11 23:19:34 +0100 (Sa, 11 Dez 2010) | 1 line
      
        Fix markup.
      ........
        r87371 | georg.brandl | 2010-12-18 17:21:58 +0100 (Sa, 18 Dez 2010) | 1 line
      
        Fix typo.
      ........
        r87378 | georg.brandl | 2010-12-18 18:51:28 +0100 (Sa, 18 Dez 2010) | 1 line
      
        #10723: add missing builtin exceptions.
      ........
        r87522 | georg.brandl | 2010-12-28 10:16:12 +0100 (Di, 28 Dez 2010) | 1 line
      
        Replace sys.maxint mention by sys.maxsize.
      ........
        r87523 | georg.brandl | 2010-12-28 10:18:24 +0100 (Di, 28 Dez 2010) | 1 line
      
        Remove confusing paragraph -- this is relevant only to advanced users anyway and does not belong into the tutorial.
      ........
        r87524 | georg.brandl | 2010-12-28 10:29:19 +0100 (Di, 28 Dez 2010) | 1 line
      
        Fix advice: call PyType_Ready to fill in ob_type of custom types.
      ........
        r87526 | georg.brandl | 2010-12-28 11:38:33 +0100 (Di, 28 Dez 2010) | 1 line
      
        #10777: fix iteration over dict keys while mutating the dict.
      ........
        r87527 | georg.brandl | 2010-12-28 11:56:20 +0100 (Di, 28 Dez 2010) | 1 line
      
        #10768: fix ScrolledText widget construction, and make the example work from the interactive shell.
      ........
        r87528 | georg.brandl | 2010-12-28 12:02:12 +0100 (Di, 28 Dez 2010) | 1 line
      
        Add news entry and clarify another.
      ........
        r87530 | georg.brandl | 2010-12-28 12:06:07 +0100 (Di, 28 Dez 2010) | 1 line
      
        #10767: update README in crashers; not all may have a bug entry and/or be fixed.
      ........
        r87531 | georg.brandl | 2010-12-28 12:08:17 +0100 (Di, 28 Dez 2010) | 1 line
      
        #10742: document readonly attribute of memoryviews.
      ........
        r87532 | georg.brandl | 2010-12-28 12:15:49 +0100 (Di, 28 Dez 2010) | 1 line
      
        #10781: clarify that *encoding* is not a parameter for Node objects in general.
      ........
        r87533 | georg.brandl | 2010-12-28 12:38:12 +0100 (Di, 28 Dez 2010) | 1 line
      
        Remove history; adapt a bit more to reST, since this will once be part of the dev guide.
      ........
        r87534 | georg.brandl | 2010-12-28 12:48:53 +0100 (Di, 28 Dez 2010) | 1 line
      
        Rewrap.
      ........
        r87535 | georg.brandl | 2010-12-28 12:49:41 +0100 (Di, 28 Dez 2010) | 1 line
      
        #10739: document that on Windows, socket.makefile() does not make a file that has a true file descriptor usable where such a thing is expected.
      ........
        r87536 | georg.brandl | 2010-12-28 12:53:25 +0100 (Di, 28 Dez 2010) | 1 line
      
        #10609: fix non-working dbm example.
      ........
        r87581 | georg.brandl | 2010-12-30 18:36:17 +0100 (Do, 30 Dez 2010) | 1 line
      
        Fix NameErrors.
      ........
      d98934c4
  32. 12 Ara, 2010 2 kayıt (commit)
    • Antoine Pitrou's avatar
      Merged revisions 87188-87190,87192-87194 via svnmerge from · a92d1f50
      Antoine Pitrou yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r87188 | antoine.pitrou | 2010-12-12 19:25:25 +0100 (dim., 12 déc. 2010) | 3 lines
      
        Make this a warning and fix indentation
      ........
        r87189 | antoine.pitrou | 2010-12-12 20:59:47 +0100 (dim., 12 déc. 2010) | 3 lines
      
        Better explain the buffer interface (hopefully)
      ........
        r87190 | antoine.pitrou | 2010-12-12 21:01:43 +0100 (dim., 12 déc. 2010) | 3 lines
      
        Add link to the buffer protocol description from the memory description.
      ........
        r87192 | antoine.pitrou | 2010-12-12 21:09:18 +0100 (dim., 12 déc. 2010) | 3 lines
      
        Remove redundant sentence, and fix markup
      ........
        r87193 | antoine.pitrou | 2010-12-12 21:13:31 +0100 (dim., 12 déc. 2010) | 3 lines
      
        Fix heading level
      ........
        r87194 | antoine.pitrou | 2010-12-12 21:17:29 +0100 (dim., 12 déc. 2010) | 3 lines
      
        Consistent ordering of availability statements
      ........
      a92d1f50
    • Antoine Pitrou's avatar
      8abc9358
  33. 06 Ara, 2010 1 kayıt (commit)
  34. 17 Eki, 2010 1 kayıt (commit)
  35. 06 Eki, 2010 3 kayıt (commit)
    • Georg Brandl's avatar
      60203b41
    • Georg Brandl's avatar
      Merged revisions 78959,79170,79175,79177,79180,79183,79186,79193,79581 via svnmerge from · 16215c73
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r78959 | georg.brandl | 2010-03-14 11:56:14 +0100 (So, 14 Mär 2010) | 33 lines
      
        Merged revisions 78760,78771-78773,78802,78922,78952 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r78760 | georg.brandl | 2010-03-07 16:23:59 +0100 (So, 07 Mär 2010) | 1 line
      
          #5341: more built-in vs builtin fixes.
        ........
          r78771 | georg.brandl | 2010-03-07 21:58:31 +0100 (So, 07 Mär 2010) | 1 line
      
          #8085: The function is called PyObject_NewVar, not PyObject_VarNew.
        ........
          r78772 | georg.brandl | 2010-03-07 22:12:28 +0100 (So, 07 Mär 2010) | 1 line
      
          #8039: document conditional expressions better, giving them their own section.
        ........
          r78773 | georg.brandl | 2010-03-07 22:32:06 +0100 (So, 07 Mär 2010) | 1 line
      
          #8044: document Py_{Enter,Leave}RecursiveCall functions.
        ........
          r78802 | georg.brandl | 2010-03-08 17:28:40 +0100 (Mo, 08 Mär 2010) | 1 line
      
          Fix typo.
        ........
          r78922 | georg.brandl | 2010-03-13 14:41:58 +0100 (Sa, 13 Mär 2010) | 1 line
      
          Update for new download location.
        ........
          r78952 | georg.brandl | 2010-03-14 10:55:08 +0100 (So, 14 Mär 2010) | 1 line
      
          #8137: add iso-8859-16 to the standard encodings table.
        ........
      ................
        r79170 | georg.brandl | 2010-03-21 10:02:59 +0100 (So, 21 Mär 2010) | 1 line
      
        Fix some issues found by Jacques Ducasse on the docs list.
      ................
        r79175 | georg.brandl | 2010-03-21 10:10:32 +0100 (So, 21 Mär 2010) | 9 lines
      
        Merged revisions 79172 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r79172 | georg.brandl | 2010-03-21 10:08:00 +0100 (So, 21 Mär 2010) | 1 line
      
          Add a paragraph about set displays.
        ........
      ................
        r79177 | georg.brandl | 2010-03-21 10:25:54 +0100 (So, 21 Mär 2010) | 1 line
      
        Need to use list(range()) to get a list.
      ................
        r79180 | georg.brandl | 2010-03-21 10:50:49 +0100 (So, 21 Mär 2010) | 9 lines
      
        Merged revisions 79178 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r79178 | georg.brandl | 2010-03-21 10:28:16 +0100 (So, 21 Mär 2010) | 1 line
      
          Clarify that for shell=True, the shell PID will be the child PID.
        ........
      ................
        r79183 | georg.brandl | 2010-03-21 10:52:24 +0100 (So, 21 Mär 2010) | 9 lines
      
        Merged revisions 79181 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r79181 | georg.brandl | 2010-03-21 10:51:16 +0100 (So, 21 Mär 2010) | 1 line
      
          Update os.kill() emulation example for Windows to use ctypes.
        ........
      ................
        r79186 | georg.brandl | 2010-03-21 11:03:36 +0100 (So, 21 Mär 2010) | 13 lines
      
        Merged revisions 79184-79185 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r79184 | georg.brandl | 2010-03-21 10:58:36 +0100 (So, 21 Mär 2010) | 1 line
      
          Update text for newest US DST regulation.  The sample file already has the calculation right.
        ........
          r79185 | georg.brandl | 2010-03-21 11:02:47 +0100 (So, 21 Mär 2010) | 1 line
      
          Include structmember.h correctly.
        ........
      ................
        r79193 | georg.brandl | 2010-03-21 12:53:50 +0100 (So, 21 Mär 2010) | 9 lines
      
        Merged revisions 79192 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r79192 | georg.brandl | 2010-03-21 12:50:58 +0100 (So, 21 Mär 2010) | 1 line
      
          Remove leftover word.
        ........
      ................
        r79581 | georg.brandl | 2010-04-02 10:47:07 +0200 (Fr, 02 Apr 2010) | 1 line
      
        #8213: document behavior of -u on py3k better.
      ................
      16215c73
    • Georg Brandl's avatar
      Merged revisions 76923,76926,77009,77082-77083,77085,77087,77121 via svnmerge from · 8ffe0bc5
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r76923 | georg.brandl | 2009-12-20 15:24:06 +0100 (So, 20 Dez 2009) | 1 line
      
        #7493: more review fixes.
      ................
        r76926 | georg.brandl | 2009-12-20 15:38:23 +0100 (So, 20 Dez 2009) | 9 lines
      
        Recorded merge of revisions 76925 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r76925 | georg.brandl | 2009-12-20 15:33:20 +0100 (So, 20 Dez 2009) | 1 line
      
          #7381: subprocess documentation and library docstring consistency fixes.
        ........
      ................
        r77009 | georg.brandl | 2009-12-23 11:30:45 +0100 (Mi, 23 Dez 2009) | 1 line
      
        #7417: add signature to open() docstring.
      ................
        r77082 | georg.brandl | 2009-12-28 08:59:20 +0100 (Mo, 28 Dez 2009) | 1 line
      
        #7577: fix signature info for getbufferproc.
      ................
        r77083 | georg.brandl | 2009-12-28 09:00:47 +0100 (Mo, 28 Dez 2009) | 9 lines
      
        Merged revisions 77081 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r77081 | georg.brandl | 2009-12-28 08:59:05 +0100 (Mo, 28 Dez 2009) | 1 line
      
          #7577: fix signature of PyBuffer_FillInfo().
        ........
      ................
        r77085 | georg.brandl | 2009-12-28 09:02:38 +0100 (Mo, 28 Dez 2009) | 9 lines
      
        Merged revisions 77084 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r77084 | georg.brandl | 2009-12-28 09:01:59 +0100 (Mo, 28 Dez 2009) | 1 line
      
          #7586: fix typo.
        ........
      ................
        r77087 | georg.brandl | 2009-12-28 09:10:38 +0100 (Mo, 28 Dez 2009) | 9 lines
      
        Recorded merge of revisions 77086 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r77086 | georg.brandl | 2009-12-28 09:09:32 +0100 (Mo, 28 Dez 2009) | 1 line
      
          #7381: consistency update, and backport avoiding ``None >= 0`` check from py3k.
        ........
      ................
        r77121 | georg.brandl | 2009-12-29 22:38:35 +0100 (Di, 29 Dez 2009) | 1 line
      
        #7590: exception classes no longer are in the "exceptions" module. Also clean up text that was written with string exceptions in mind.
      ................
      8ffe0bc5