1. 04 Nis, 2012 1 kayıt (commit)
  2. 28 Tem, 2011 1 kayıt (commit)
  3. 25 Haz, 2011 3 kayıt (commit)
  4. 29 Tem, 2011 1 kayıt (commit)
  5. 25 Haz, 2011 1 kayıt (commit)
  6. 11 Eyl, 2010 2 kayıt (commit)
  7. 15 Agu, 2010 1 kayıt (commit)
  8. 13 Agu, 2010 1 kayıt (commit)
  9. 17 Nis, 2010 1 kayıt (commit)
  10. 16 Nis, 2010 1 kayıt (commit)
  11. 11 Nis, 2010 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions 79548,79557,79616-79617,79716,79778,79795,79803,79896 via svnmerge from · 6a6666ab
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r79548 | martin.v.loewis | 2010-04-01 02:40:51 -0500 (Thu, 01 Apr 2010) | 3 lines
      
        Issue #8032: For gdb7, a python-gdb.py file is added to the build,
        allowing to use advanced gdb features when debugging Python.
      ........
        r79557 | antoine.pitrou | 2010-04-01 12:56:57 -0500 (Thu, 01 Apr 2010) | 5 lines
      
        Issue #8281: rename test_gdb_sample.py to gdb_sample.py, otherwise it gets picked
        as a regular test by regrtest.py, and fails.
      ........
        r79616 | mark.dickinson | 2010-04-02 15:22:21 -0500 (Fri, 02 Apr 2010) | 1 line
      
        Add python.exe-gdb.py to svn:ignore, for the benefit of OS X developers.
      ........
        r79617 | mark.dickinson | 2010-04-02 15:34:26 -0500 (Fri, 02 Apr 2010) | 1 line
      
        Add python-gdb.py and python.exe-gdb.py to distclean target in Makefile.
      ........
        r79716 | martin.v.loewis | 2010-04-03 13:54:07 -0500 (Sat, 03 Apr 2010) | 2 lines
      
        Don't install python-gdb.py as an executable.
      ........
        r79778 | r.david.murray | 2010-04-04 20:34:50 -0500 (Sun, 04 Apr 2010) | 3 lines
      
        Issue 8287: try to fix the gdb-python install errors on Solaris
        and FreeBSD.  Patch by Dave Malcolm.
      ........
        r79795 | ronald.oussoren | 2010-04-05 06:21:21 -0500 (Mon, 05 Apr 2010) | 7 lines
      
        Ensure that the gdb hooks can be installed when
        srcdir != builddir.
      
        Without this patch it is no longer possible to
        build python when you don't run configure from
        the root of the source tree.
      ........
        r79803 | r.david.murray | 2010-04-05 11:28:49 -0500 (Mon, 05 Apr 2010) | 3 lines
      
        Issue 8316: make test_gdb robust in the face of differing terminal
        widths.  Patch by Dave Malcolm.
      ........
        r79896 | martin.v.loewis | 2010-04-07 14:11:32 -0500 (Wed, 07 Apr 2010) | 2 lines
      
        Issue #8337: Disable the remaining test also for now.
      ........
      6a6666ab
  12. 01 Nis, 2010 1 kayıt (commit)
  13. 13 Agu, 2009 1 kayıt (commit)
    • Georg Brandl's avatar
      Merged revisions 74126,74130-74131,74149,74155,74157,74180-74183,74398 via svnmerge from · 194da4a7
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r74126 | alexandre.vassalotti | 2009-07-21 02:39:03 +0200 (Di, 21 Jul 2009) | 14 lines
      
        Merged revisions 73871 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73871 | alexandre.vassalotti | 2009-07-06 22:17:30 -0400 (Mon, 06 Jul 2009) | 7 lines
      
          Grow the allocated buffer in PyUnicode_EncodeUTF7 to avoid buffer overrun.
      
          Without this change, test_unicode.UnicodeTest.test_codecs_utf7 crashes in
          debug mode. What happens is the unicode string u'\U000abcde' with a length
          of 1 encodes to the string '+2m/c3g-' of length 8. Since only 5 bytes is
          reserved in the buffer, a buffer overrun occurs.
        ........
      ................
        r74130 | alexandre.vassalotti | 2009-07-21 02:57:50 +0200 (Di, 21 Jul 2009) | 2 lines
      
        Add ignore rule for the Doc/tools/jinga2/ directory.
      ................
        r74131 | alexandre.vassalotti | 2009-07-21 04:51:58 +0200 (Di, 21 Jul 2009) | 13 lines
      
        Merged revisions 73683,73786 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73683 | georg.brandl | 2009-06-29 10:44:49 -0400 (Mon, 29 Jun 2009) | 1 line
      
          Fix error handling in PyCode_Optimize, by Alexander Schremmer at EuroPython sprint.
        ........
          r73786 | benjamin.peterson | 2009-07-02 18:56:16 -0400 (Thu, 02 Jul 2009) | 1 line
      
          condense with assertRaises
        ........
      ................
        r74149 | ezio.melotti | 2009-07-21 22:37:52 +0200 (Di, 21 Jul 2009) | 9 lines
      
        Merged revisions 74148 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74148 | ezio.melotti | 2009-07-21 23:18:27 +0300 (Tue, 21 Jul 2009) | 1 line
      
          #6536 fixed typo
        ........
      ................
        r74155 | alexandre.vassalotti | 2009-07-22 04:24:49 +0200 (Mi, 22 Jul 2009) | 2 lines
      
        Issue #6242: Fix deallocator of io.StringIO and io.BytesIO.
      ................
        r74157 | alexandre.vassalotti | 2009-07-22 05:07:33 +0200 (Mi, 22 Jul 2009) | 2 lines
      
        Issue #6241: Better type checking for the arguments of io.StringIO.
      ................
        r74180 | ezio.melotti | 2009-07-22 23:17:14 +0200 (Mi, 22 Jul 2009) | 9 lines
      
        Merged revisions 74179 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74179 | ezio.melotti | 2009-07-23 00:08:49 +0300 (Thu, 23 Jul 2009) | 1 line
      
          #6423 has_key -> in
        ........
      ................
        r74181 | alexandre.vassalotti | 2009-07-22 23:27:53 +0200 (Mi, 22 Jul 2009) | 6 lines
      
        Clean up test_curses.
      
        By using __stdout__ directly, test_curses caused regrtest.py
        to duplicate the output of some test results.
      ................
        r74182 | alexandre.vassalotti | 2009-07-22 23:29:01 +0200 (Mi, 22 Jul 2009) | 2 lines
      
        Use assertGreater instead of assertTrue(x > y).
      ................
        r74183 | alexandre.vassalotti | 2009-07-23 01:27:17 +0200 (Do, 23 Jul 2009) | 4 lines
      
        Specialize assertTrue checks when possible.
      
        We should get slightly more helpful failure messages with this change.
      ................
        r74398 | georg.brandl | 2009-08-13 11:16:39 +0200 (Do, 13 Aug 2009) | 1 line
      
        #6694: fix old function names.
      ................
      194da4a7
  14. 21 Tem, 2009 1 kayıt (commit)
  15. 17 Tem, 2009 1 kayıt (commit)
    • Alexandre Vassalotti's avatar
      Merged revisions 73930-73932,73937-73939,73945,73951,73954,73962-73963,73970 via svnmerge from · 711ed4ae
      Alexandre Vassalotti yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r73930 | amaury.forgeotdarc | 2009-07-10 12:47:42 -0400 (Fri, 10 Jul 2009) | 2 lines
      
        #6447: typo in subprocess docstring
      ........
        r73931 | ezio.melotti | 2009-07-10 16:25:56 -0400 (Fri, 10 Jul 2009) | 1 line
      
        more cleanups and if zlib -> skipUnless(zlib)
      ........
        r73932 | kristjan.jonsson | 2009-07-11 04:44:43 -0400 (Sat, 11 Jul 2009) | 3 lines
      
        http://bugs.python.org/issue6460
        Need to be careful with thread switching when testing the xmlrpc server.  The server thread may not have updated stats when the client thread tests them.
      ........
        r73937 | georg.brandl | 2009-07-11 06:12:36 -0400 (Sat, 11 Jul 2009) | 1 line
      
        Fix style.
      ........
        r73938 | georg.brandl | 2009-07-11 06:14:54 -0400 (Sat, 11 Jul 2009) | 1 line
      
        #6446: fix import_spam() function to use correct error and reference handling.
      ........
        r73939 | georg.brandl | 2009-07-11 06:18:10 -0400 (Sat, 11 Jul 2009) | 1 line
      
        #6448: clarify docs for find_module().
      ........
        r73945 | georg.brandl | 2009-07-11 06:51:31 -0400 (Sat, 11 Jul 2009) | 1 line
      
        #6456: clarify the meaning of constants used as arguments to nl_langinfo().
      ........
        r73951 | georg.brandl | 2009-07-11 10:23:38 -0400 (Sat, 11 Jul 2009) | 2 lines
      
        array.array is actually a class.
      ........
        r73954 | tarek.ziade | 2009-07-11 13:21:00 -0400 (Sat, 11 Jul 2009) | 1 line
      
        reverted changes for #6459 (doesn't apply on 2.x)
      ........
        r73962 | benjamin.peterson | 2009-07-11 18:15:13 -0400 (Sat, 11 Jul 2009) | 1 line
      
        put downloaded test support files in Lib/test/data instead of the cwd
      ........
        r73963 | benjamin.peterson | 2009-07-11 18:25:24 -0400 (Sat, 11 Jul 2009) | 1 line
      
        ignore things in Lib/test/data/
      ........
        r73970 | hirokazu.yamamoto | 2009-07-11 22:04:47 -0400 (Sat, 11 Jul 2009) | 1 line
      
        Fixed distutils test.
      ........
      711ed4ae
  16. 11 Tem, 2009 2 kayıt (commit)
  17. 24 May, 2009 2 kayıt (commit)
  18. 31 Tem, 2008 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions 65209-65216,65225-65226,65233,65239,65246-65247,65255-65256 via svnmerge from · d6313715
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r65209 | raymond.hettinger | 2008-07-23 19:08:18 -0500 (Wed, 23 Jul 2008) | 1 line
      
        Finish-up the partial conversion from int to Py_ssize_t for deque indices and length.
      ........
        r65210 | raymond.hettinger | 2008-07-23 19:53:49 -0500 (Wed, 23 Jul 2008) | 1 line
      
        Parse to the correct datatype.
      ........
        r65211 | benjamin.peterson | 2008-07-23 21:27:46 -0500 (Wed, 23 Jul 2008) | 1 line
      
        fix spacing
      ........
        r65212 | benjamin.peterson | 2008-07-23 21:31:28 -0500 (Wed, 23 Jul 2008) | 1 line
      
        fix markup
      ........
        r65213 | benjamin.peterson | 2008-07-23 21:45:37 -0500 (Wed, 23 Jul 2008) | 1 line
      
        add some documentation for 2to3
      ........
        r65214 | raymond.hettinger | 2008-07-24 00:38:48 -0500 (Thu, 24 Jul 2008) | 1 line
      
        Finish conversion from int to Py_ssize_t.
      ........
        r65215 | raymond.hettinger | 2008-07-24 02:04:55 -0500 (Thu, 24 Jul 2008) | 1 line
      
        Convert from long to Py_ssize_t.
      ........
        r65216 | georg.brandl | 2008-07-24 02:09:21 -0500 (Thu, 24 Jul 2008) | 2 lines
      
        Fix indentation.
      ........
        r65225 | benjamin.peterson | 2008-07-25 11:55:37 -0500 (Fri, 25 Jul 2008) | 1 line
      
        teach .bzrignore about doc tools
      ........
        r65226 | benjamin.peterson | 2008-07-25 12:02:11 -0500 (Fri, 25 Jul 2008) | 1 line
      
        document default value for fillvalue
      ........
        r65233 | raymond.hettinger | 2008-07-25 13:43:33 -0500 (Fri, 25 Jul 2008) | 1 line
      
        Issue 1592:  Better error reporting for operations on closed shelves.
      ........
        r65239 | benjamin.peterson | 2008-07-25 16:59:53 -0500 (Fri, 25 Jul 2008) | 1 line
      
        fix indentation
      ........
        r65246 | andrew.kuchling | 2008-07-26 08:08:19 -0500 (Sat, 26 Jul 2008) | 1 line
      
        This sentence continues to bug me; rewrite it for the second time
      ........
        r65247 | andrew.kuchling | 2008-07-26 08:09:06 -0500 (Sat, 26 Jul 2008) | 1 line
      
        Remove extra words
      ........
        r65255 | skip.montanaro | 2008-07-26 19:49:02 -0500 (Sat, 26 Jul 2008) | 3 lines
      
        Close issue 3437 - missing state change when Allow lines are processed.
        Adds test cases which use Allow: as well.
      ........
        r65256 | skip.montanaro | 2008-07-26 19:50:41 -0500 (Sat, 26 Jul 2008) | 2 lines
      
        note robotparser bug fix.
      ........
      d6313715
  19. 25 Tem, 2008 1 kayıt (commit)
  20. 16 May, 2008 1 kayıt (commit)
    • Alexandre Vassalotti's avatar
      Merged revisions 63066-63076,63079,63081-63085,63087-63097,63099,63101-63104 via svnmerge from · 8ae3e055
      Alexandre Vassalotti yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r63066 | georg.brandl | 2008-05-11 10:56:04 -0400 (Sun, 11 May 2008) | 2 lines
      
        #2709 followup: better description of Tk's pros and cons.
      ........
        r63067 | georg.brandl | 2008-05-11 11:05:13 -0400 (Sun, 11 May 2008) | 2 lines
      
        #1326: document and test zipimporter.archive and zipimporter.prefix.
      ........
        r63068 | georg.brandl | 2008-05-11 11:07:39 -0400 (Sun, 11 May 2008) | 2 lines
      
        #2816: clarify error messages for EOF while scanning strings.
      ........
        r63069 | georg.brandl | 2008-05-11 11:17:41 -0400 (Sun, 11 May 2008) | 3 lines
      
        #2787: Flush stdout after writing test name, helpful when running
        hanging or long-running tests. Patch by Adam Olsen.
      ........
        r63070 | georg.brandl | 2008-05-11 11:20:16 -0400 (Sun, 11 May 2008) | 3 lines
      
        #2803: fix wrong invocation of heappush in seldom-reached code.
        Thanks to Matt Harden.
      ........
        r63073 | benjamin.peterson | 2008-05-11 12:38:07 -0400 (Sun, 11 May 2008) | 2 lines
      
        broaden .bzrignore
      ........
        r63076 | andrew.kuchling | 2008-05-11 15:15:52 -0400 (Sun, 11 May 2008) | 1 line
      
        Add message to test assertion
      ........
        r63083 | andrew.kuchling | 2008-05-11 16:08:33 -0400 (Sun, 11 May 2008) | 1 line
      
        Try setting HOME env.var to fix test on Win32
      ........
        r63092 | georg.brandl | 2008-05-11 16:53:55 -0400 (Sun, 11 May 2008) | 2 lines
      
        #2809 followup: even better split docstring.
      ........
        r63094 | georg.brandl | 2008-05-11 17:03:42 -0400 (Sun, 11 May 2008) | 4 lines
      
        - #2250: Exceptions raised during evaluation of names in rlcompleter's
          ``Completer.complete()`` method are now caught and ignored.
      ........
        r63095 | georg.brandl | 2008-05-11 17:16:37 -0400 (Sun, 11 May 2008) | 2 lines
      
        Clarify os.strerror()s exception behavior.
      ........
        r63097 | georg.brandl | 2008-05-11 17:34:10 -0400 (Sun, 11 May 2008) | 2 lines
      
        #2535: remove duplicated method.
      ........
        r63104 | alexandre.vassalotti | 2008-05-11 19:04:27 -0400 (Sun, 11 May 2008) | 2 lines
      
        Moved the Queue module stub in lib-old.
      ........
      8ae3e055
  21. 11 May, 2008 1 kayıt (commit)
  22. 08 May, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 62805,62811,62841-62842,62848-62849,62853-62854 via svnmerge from · e4ca8156
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r62805 | christian.heimes | 2008-05-07 01:59:53 +0200 (Wed, 07 May 2008) | 1 line
      
        Re-added getbuildinfo.c solution item
      ........
        r62811 | benjamin.peterson | 2008-05-07 04:23:43 +0200 (Wed, 07 May 2008) | 2 lines
      
        update .bzrignore
      ........
        r62841 | christian.heimes | 2008-05-08 00:54:17 +0200 (Thu, 08 May 2008) | 1 line
      
        Replace more float hacks with correct math functions
      ........
        r62842 | benjamin.peterson | 2008-05-08 01:11:54 +0200 (Thu, 08 May 2008) | 2 lines
      
        Practice EAFP, and revert 62787
      ........
        r62848 | raymond.hettinger | 2008-05-08 06:35:20 +0200 (Thu, 08 May 2008) | 1 line
      
        Frozensets do not benefit from autoconversion.
      ........
        r62849 | raymond.hettinger | 2008-05-08 06:36:12 +0200 (Thu, 08 May 2008) | 1 line
      
        The __all__ variable forgot to expose the gcd() function.
      ........
        r62853 | raymond.hettinger | 2008-05-08 09:23:30 +0200 (Thu, 08 May 2008) | 1 line
      
        Fix-up the enumerate type example and move it to the end.
      ........
        r62854 | ronald.oussoren | 2008-05-08 12:34:39 +0200 (Thu, 08 May 2008) | 3 lines
      
        Fix for issue 1770190: platform.mac_ver() now returns the right
        version on OSX 10.4.10
      ........
      e4ca8156
  23. 07 May, 2008 1 kayıt (commit)
  24. 15 Nis, 2008 1 kayıt (commit)
    • Neal Norwitz's avatar
      Merged revisions… · 32dde221
      Neal Norwitz yazdı
      Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-61464,61466-61467,61469-61470,61476-61477,61479,61481-61482,61485,61487,61490,61493-61494,61497,61499-61502,61505-61506,61508,61511-61514,61519,61521-61522,61530-61531,61533-61537,61541-61555,61557-61558,61561-61562,61566-61569,61572-61574,61578-61579,61583-61584,61588-61589,61592,61594,61598-61601,61603-61604,61607-61612,61617,61619-61620,61624,61626,61628-61630,61635-61638,61640-61643,61645,61648,61653-61655,61659-61662,61664,61666,61668-61671,61673,61675,61679-61680,61682,61685-61686,61689-61695,61697-61699,61701-61703,61706,61710,61713,61717,61723,61726-61730,61736,61738,61740,61742,61745-61752,61754-61760,61762-61764,61768,61770-61772,61774-61775,61784-61787,61789-61792,61794-61795,61797-61806,61808-61809,61811-61812,61814-61819,61824,61826-61833,61835-61840,61843-61845,61848,61850,61854-61862,61865-61866,61868,61872-61873,61876-61877,61883-61888,61890-61891,61893-61899,61901-61903,61905-61912,61914,61917,61920-61921,61927,61930,61932-61934,61939,61941-61942,61944-61951,61955,61960-61963,61980,61982-61983,61991,61994-61996,62001-62003,62008-62010,62016-62017,62022,62024,62027,62031-62034,62041,62045-62046,62055-62058,62060-62066,62068-62074,62076-62079,62081-62083,62086-62089,62092-62094,62098,62101,62104,62106-62109,62115-62122,62124-62125,62128,62130,62132,62134-62135,62137,62139-62140,62144,62146,62151,62155,62157,62162-62166,62171-62172,62175-62176,62178,62181-62186,62188-62192,62196,62200-62203,62206,62211-62213,62215-62218,62222,62224-62226,62228,62232,62236,62240-62245,62248,62250-62254,62256-62258,62262,62264-62265,62267-62270,62272-62276,62280-62288,62291-62292,62299-62301,62307,62312,62316-62318,62322-62331,62333-62337,62339-62344,62346-62348 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r62323 | brett.cannon | 2008-04-13 10:09:43 -0700 (Sun, 13 Apr 2008) | 3 lines
      
        Add an explicit check for output in a test to try to diagnose a failure on
        Windows.
      ........
        r62324 | brett.cannon | 2008-04-13 10:41:31 -0700 (Sun, 13 Apr 2008) | 3 lines
      
        Fix spliting on colons on Windows machines with a file path by limiting the
        number of splits.
      ........
        r62329 | benjamin.peterson | 2008-04-13 13:35:56 -0700 (Sun, 13 Apr 2008) | 2 lines
      
        #2627 Let it be known what pgen generates
      ........
        r62330 | benjamin.peterson | 2008-04-13 13:40:03 -0700 (Sun, 13 Apr 2008) | 2 lines
      
        Added an ignore file for Bazaar #2510
      ........
        r62331 | georg.brandl | 2008-04-13 13:50:29 -0700 (Sun, 13 Apr 2008) | 2 lines
      
        Improve -X error message.
      ........
        r62334 | andrew.kuchling | 2008-04-13 15:39:12 -0700 (Sun, 13 Apr 2008) | 1 line
      
        Add example
      ........
        r62340 | amaury.forgeotdarc | 2008-04-14 12:55:40 -0700 (Mon, 14 Apr 2008) | 2 lines
      
        Update project files for all Windows supported compilers
      ........
        r62341 | amaury.forgeotdarc | 2008-04-14 13:07:48 -0700 (Mon, 14 Apr 2008) | 6 lines
      
        Correct a refleak found by "regrtest.py -R:: test_structmembers"
      
        Some other minor updates in _warnings.c:
        - make a function static
        - rename a shadowing local variable
      ........
        r62347 | andrew.kuchling | 2008-04-14 19:24:15 -0700 (Mon, 14 Apr 2008) | 1 line
      
        Various items; begin writing the SSL section
      ........
        r62348 | neal.norwitz | 2008-04-14 20:46:21 -0700 (Mon, 14 Apr 2008) | 1 line
      
        Prevent namespace pollution, add static for internal functions
      ........
      32dde221
  25. 13 Nis, 2008 1 kayıt (commit)