1. 25 Eki, 2016 1 kayıt (commit)
  2. 11 Eyl, 2016 2 kayıt (commit)
  3. 08 Agu, 2016 1 kayıt (commit)
  4. 26 May, 2016 1 kayıt (commit)
  5. 24 May, 2016 1 kayıt (commit)
  6. 20 Ock, 2016 1 kayıt (commit)
    • Victor Stinner's avatar
      co_lnotab supports negative line number delta · f3914eb1
      Victor Stinner yazdı
      Issue #26107: The format of the co_lnotab attribute of code objects changes to
      support negative line number delta.
      
      Changes:
      
      * assemble_lnotab(): if line number delta is less than -128 or greater than
        127, emit multiple (offset_delta, lineno_delta) in co_lnotab
      * update functions decoding co_lnotab to use signed 8-bit integers
      
        - dis.findlinestarts()
        - PyCode_Addr2Line()
        - _PyCode_CheckLineNumber()
        - frame_setlineno()
      
      * update lnotab_notes.txt
      * increase importlib MAGIC_NUMBER to 3361
      * document the change in What's New in Python 3.6
      * cleanup also PyCode_Optimize() to use better variable names
      f3914eb1
  7. 05 Ock, 2016 1 kayıt (commit)
  8. 12 May, 2015 1 kayıt (commit)
  9. 16 Şub, 2015 2 kayıt (commit)
  10. 14 Kas, 2013 1 kayıt (commit)
  11. 08 Tem, 2013 1 kayıt (commit)
  12. 06 Ara, 2012 1 kayıt (commit)
  13. 04 Kas, 2012 2 kayıt (commit)
  14. 21 Tem, 2012 1 kayıt (commit)
  15. 20 May, 2012 1 kayıt (commit)
  16. 28 Eyl, 2011 1 kayıt (commit)
  17. 21 Eyl, 2011 1 kayıt (commit)
  18. 15 Nis, 2011 2 kayıt (commit)
  19. 23 Mar, 2011 1 kayıt (commit)
  20. 15 Mar, 2011 2 kayıt (commit)
  21. 11 Mar, 2011 1 kayıt (commit)
  22. 30 Kas, 2010 1 kayıt (commit)
  23. 22 Agu, 2010 1 kayıt (commit)
  24. 09 May, 2010 4 kayıt (commit)
  25. 16 Ock, 2010 1 kayıt (commit)
    • Antoine Pitrou's avatar
      Issue #6690: Optimize the bytecode for expressions such as `x in {1, 2, 3}`, · b7fbcd39
      Antoine Pitrou yazdı
      where the right hand operand is a set of constants, by turning the set into
      a frozenset and pre-building it as a constant.  The comparison operation
      is made against the constant instead of building a new set each time it is
      executed (a similar optimization already existed which turned a list of
      constants into a pre-built tuple).  Patch and additional tests by Dave
      Malcolm.
      b7fbcd39
  26. 27 Eki, 2009 1 kayıt (commit)
    • Georg Brandl's avatar
      Merged revisions… · f004d9dc
      Georg Brandl yazdı
      Merged revisions 73206,73232,73299,73683,74020,74185,74544,74643,74647,74817,74838-74839,74865,74946,75402,75459,75604,75696 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r73206 | georg.brandl | 2009-06-04 11:15:12 +0200 (Do, 04 Jun 2009) | 1 line
      
        #3584: ignore trailing newlines when placing the caret for a SyntaxError location.
      ........
        r73232 | georg.brandl | 2009-06-04 20:59:58 +0200 (Do, 04 Jun 2009) | 1 line
      
        Add test for #3684.
      ........
        r73299 | georg.brandl | 2009-06-08 20:41:36 +0200 (Mo, 08 Jun 2009) | 1 line
      
        Typo fix.
      ........
        r73683 | georg.brandl | 2009-06-29 16:44:49 +0200 (Mo, 29 Jun 2009) | 1 line
      
        Fix error handling in PyCode_Optimize, by Alexander Schremmer at EuroPython sprint.
      ........
        r74020 | georg.brandl | 2009-07-16 09:18:07 +0200 (Do, 16 Jul 2009) | 1 line
      
        #5910: fix kqueue for calls with more than one event.
      ........
        r74185 | georg.brandl | 2009-07-23 11:17:09 +0200 (Do, 23 Jul 2009) | 1 line
      
        Fix the "pylocals" gdb command.
      ........
        r74544 | georg.brandl | 2009-08-24 19:12:30 +0200 (Mo, 24 Aug 2009) | 1 line
      
        #6775: fix python.org URLs in README.
      ........
        r74643 | georg.brandl | 2009-09-04 08:59:20 +0200 (Fr, 04 Sep 2009) | 2 lines
      
        Issue #2666: Handle BROWSER environment variable properly for unknown browser names in the webbrowser module.
      ........
        r74647 | georg.brandl | 2009-09-04 10:17:04 +0200 (Fr, 04 Sep 2009) | 2 lines
      
        Issue #5275: In Cookie's Cookie.load(), properly handle non-string arguments as documented.
      ........
        r74817 | georg.brandl | 2009-09-16 11:05:11 +0200 (Mi, 16 Sep 2009) | 1 line
      
        Make deprecation notices as visible as warnings are right now.
      ........
        r74838 | georg.brandl | 2009-09-16 18:22:12 +0200 (Mi, 16 Sep 2009) | 1 line
      
        Remove some more boilerplate from the actual tests in test_pdb.
      ........
        r74839 | georg.brandl | 2009-09-16 18:36:39 +0200 (Mi, 16 Sep 2009) | 1 line
      
        Make the pdb displayhook compatible with the standard displayhook: do not print Nones. Add a test for that.
      ........
        r74865 | georg.brandl | 2009-09-17 09:49:37 +0200 (Do, 17 Sep 2009) | 1 line
      
        #6912: add "with" block support to pindent.
      ........
        r74946 | georg.brandl | 2009-09-19 10:43:16 +0200 (Sa, 19 Sep 2009) | 1 line
      
        Update bug tracker reference.
      ........
        r75402 | georg.brandl | 2009-10-14 17:51:48 +0200 (Mi, 14 Okt 2009) | 1 line
      
        #7125: fix typo.
      ........
        r75459 | georg.brandl | 2009-10-17 10:57:43 +0200 (Sa, 17 Okt 2009) | 1 line
      
        Fix refleaks in _ctypes PyCSimpleType_New, which fixes the refleak seen in test___all__.
      ........
        r75604 | georg.brandl | 2009-10-22 13:36:50 +0200 (Do, 22 Okt 2009) | 1 line
      
        Fix stylesheet for multi-paragraph impl-details.
      ........
        r75696 | georg.brandl | 2009-10-25 21:25:43 +0100 (So, 25 Okt 2009) | 1 line
      
        Fix a demo.
      ........
      f004d9dc
  27. 22 Eki, 2009 1 kayıt (commit)
  28. 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
  29. 21 Tem, 2009 1 kayıt (commit)
  30. 29 Haz, 2009 1 kayıt (commit)
  31. 28 Haz, 2009 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions 72912,72920,72940 via svnmerge from · 876b2f28
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r72912 | benjamin.peterson | 2009-05-25 08:13:44 -0500 (Mon, 25 May 2009) | 5 lines
      
        add a SETUP_WITH opcode
      
        It speeds up the with statement and correctly looks up the special
        methods involved.
      ........
        r72920 | benjamin.peterson | 2009-05-25 15:12:57 -0500 (Mon, 25 May 2009) | 1 line
      
        take into account the fact that SETUP_WITH pushes a finally block
      ........
        r72940 | benjamin.peterson | 2009-05-26 07:49:59 -0500 (Tue, 26 May 2009) | 1 line
      
        teach the peepholer about SETUP_WITH
      ........
      876b2f28
  32. 26 May, 2009 1 kayıt (commit)