1. 16 Nis, 2010 1 kayıt (commit)
  2. 13 Nis, 2010 1 kayıt (commit)
  3. 09 Nis, 2010 1 kayıt (commit)
  4. 06 Nis, 2010 2 kayıt (commit)
  5. 03 Nis, 2010 2 kayıt (commit)
  6. 26 Mar, 2010 1 kayıt (commit)
  7. 25 Mar, 2010 1 kayıt (commit)
  8. 23 Mar, 2010 2 kayıt (commit)
  9. 21 Mar, 2010 5 kayıt (commit)
    • Victor Stinner's avatar
      Merged revisions 78872 via svnmerge from · ffbc2f63
      Victor Stinner yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r78872 | victor.stinner | 2010-03-12 15:45:56 +0100 (ven., 12 mars 2010) | 12 lines
      
        Merged revisions 78826 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r78826 | victor.stinner | 2010-03-10 23:30:19 +0100 (mer., 10 mars 2010) | 5 lines
      
          Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt
          (SIGINT). If an error occurs while importing the site module, the error is
          printed and Python exits. Initialize the GIL before importing the site
          module.
        ........
      ................
      ffbc2f63
    • Victor Stinner's avatar
      Merged revisions 78875 via svnmerge from · 38c36f85
      Victor Stinner yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r78875 | victor.stinner | 2010-03-12 18:00:41 +0100 (ven., 12 mars 2010) | 5 lines
      
        Issue #6697: use %U format instead of _PyUnicode_AsString(), because
        _PyUnicode_AsString() was not checked for error (NULL).
      
        The unicode string is no more truncated to 200 or 400 *bytes*.
      ........
      38c36f85
    • Victor Stinner's avatar
      Merged revisions 78868-78869 via svnmerge from · 19495a7a
      Victor Stinner yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r78868 | victor.stinner | 2010-03-12 15:20:59 +0100 (ven., 12 mars 2010) | 25 lines
      
        Merged revisions 78835-78837 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r78835 | victor.stinner | 2010-03-11 13:34:39 +0100 (jeu., 11 mars 2010) | 7 lines
      
          Issue #7774: Set sys.executable to an empty string if argv[0] has been
          set to an non existent program name and Python is unable to retrieve the real
          program name.
      
          Fix also sysconfig: if sys.executable is an empty string, use the current
          working directory.
        ........
          r78836 | victor.stinner | 2010-03-11 14:27:35 +0100 (jeu., 11 mars 2010) | 4 lines
      
          Fix test_executable introduce in previous commit (r78835): Windows is able to
          retrieve the absolute Python path even if argv[0] has been set to a non
          existent program name.
        ........
          r78837 | victor.stinner | 2010-03-11 14:46:06 +0100 (jeu., 11 mars 2010) | 3 lines
      
          Another fix to test_executable() of test_sys: set the current working to avoid
          the #7774 bug.
        ........
      ................
        r78869 | victor.stinner | 2010-03-12 15:27:16 +0100 (ven., 12 mars 2010) | 2 lines
      
        Oops, I loose the NEWS change in my previous backport (r78868) of r78835.
      ................
      19495a7a
    • Victor Stinner's avatar
      Merged revisions 78899 via svnmerge from · 09e4697a
      Victor Stinner yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r78899 | victor.stinner | 2010-03-13 04:28:34 +0100 (sam., 13 mars 2010) | 14 lines
      
        Merged revisions 78898 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r78898 | victor.stinner | 2010-03-13 04:27:07 +0100 (sam., 13 mars 2010) | 7 lines
      
          sqlite3: Fix a segfault on calling a connection with something else than a
          string. Initialize all attributes to be able to call the statement destructor
          on error.
      
          Avoid also a duplicate connection in some tests: setUp() does already open a
          connection (":memory:").
        ........
      ................
      09e4697a
    • Victor Stinner's avatar
      Merged revisions 78894 via svnmerge from · 8a685f71
      Victor Stinner yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r78894 | victor.stinner | 2010-03-13 01:57:22 +0100 (sam., 13 mars 2010) | 4 lines
      
        sqlite3: Fix _PyUnicode_AsStringAndSize() error handler.
      
        Destroy begin_statement (not statement) on error.
      ........
      8a685f71
  10. 18 Mar, 2010 1 kayıt (commit)
  11. 05 Mar, 2010 1 kayıt (commit)
  12. 04 Mar, 2010 3 kayıt (commit)
  13. 03 Mar, 2010 3 kayıt (commit)
  14. 02 Mar, 2010 1 kayıt (commit)
  15. 01 Mar, 2010 1 kayıt (commit)
  16. 24 Şub, 2010 1 kayıt (commit)
  17. 23 Şub, 2010 1 kayıt (commit)
  18. 22 Şub, 2010 1 kayıt (commit)
  19. 14 Şub, 2010 1 kayıt (commit)
  20. 13 Şub, 2010 1 kayıt (commit)
    • Mark Dickinson's avatar
      Merged revisions 78172-78173 via svnmerge from · 6243c6ab
      Mark Dickinson yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r78172 | mark.dickinson | 2010-02-13 18:34:53 +0000 (Sat, 13 Feb 2010) | 4 lines
      
        Issue #7924: Fix an intermittent 'XXX undetected error' crash in
        test_capi, due to test_capsule failing to clear an exception.  Many
        thanks to Florent Xicluna for the diagnosis and fix.
      ........
        r78173 | mark.dickinson | 2010-02-13 18:37:34 +0000 (Sat, 13 Feb 2010) | 1 line
      
        Revert an earlier attempt (r76810) to fix the intermittent test_capi failures fixed in r78172.
      ........
      6243c6ab
  21. 04 Şub, 2010 2 kayıt (commit)
  22. 03 Şub, 2010 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions 77937 via svnmerge from · 23b9ef72
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r77937 | benjamin.peterson | 2010-02-02 20:35:45 -0600 (Tue, 02 Feb 2010) | 75 lines
      
        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.
        ........
      ................
      23b9ef72
  23. 02 Şub, 2010 1 kayıt (commit)
  24. 31 Ock, 2010 1 kayıt (commit)
    • Antoine Pitrou's avatar
      Merged revisions 77895-77896 via svnmerge from · 66f9fea7
      Antoine Pitrou yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r77895 | antoine.pitrou | 2010-01-31 23:47:27 +0100 (dim., 31 janv. 2010) | 12 lines
      
        Merged revisions 77890 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r77890 | antoine.pitrou | 2010-01-31 23:26:04 +0100 (dim., 31 janv. 2010) | 7 lines
      
          - Issue #6939: Fix file I/O objects in the `io` module to keep the original
            file position when calling `truncate()`.  It would previously change the
            file position to the given argument, which goes against the tradition of
            ftruncate() and other truncation APIs.  Patch by Pascal Chambon.
        ........
      ................
        r77896 | antoine.pitrou | 2010-02-01 00:12:29 +0100 (lun., 01 févr. 2010) | 3 lines
      
        r77895 broke doctest.
      ................
      66f9fea7
  25. 29 Ock, 2010 1 kayıt (commit)
  26. 27 Ock, 2010 1 kayıt (commit)
  27. 22 Ock, 2010 1 kayıt (commit)
  28. 17 Ock, 2010 1 kayıt (commit)