1. 10 Nov, 2018 1 commit
  2. 08 Nov, 2018 2 commits
  3. 07 Nov, 2018 3 commits
  4. 06 Nov, 2018 1 commit
  5. 05 Nov, 2018 1 commit
    • Serhiy Storchaka's avatar
      [2.7] bpo-35133: Fix mistakes when concatenate string literals on different... · 3e3e1a27
      Serhiy Storchaka authored
      [2.7] bpo-35133: Fix mistakes when concatenate string literals on different lines. (GH-10284) (GH-10335) (GH-10336)
      
      Two kind of mistakes:
      
      1. Missed space. After concatenating there is no space between words.
      
      2. Missed comma. Causes unintentional concatenating in a list of strings.
      (cherry picked from commit 34fd4c20)
      (cherry picked from commit 7054e5c80b6e98cd44e22d1bc2d7f0a94343089d)
      3e3e1a27
  6. 04 Nov, 2018 1 commit
  7. 03 Nov, 2018 1 commit
  8. 02 Nov, 2018 1 commit
  9. 01 Nov, 2018 1 commit
  10. 31 Oct, 2018 1 commit
  11. 30 Oct, 2018 1 commit
  12. 29 Oct, 2018 3 commits
  13. 28 Oct, 2018 2 commits
  14. 27 Oct, 2018 2 commits
  15. 26 Oct, 2018 4 commits
  16. 24 Oct, 2018 2 commits
  17. 23 Oct, 2018 1 commit
  18. 21 Oct, 2018 1 commit
  19. 20 Oct, 2018 5 commits
  20. 19 Oct, 2018 2 commits
  21. 17 Oct, 2018 1 commit
  22. 16 Oct, 2018 2 commits
  23. 15 Oct, 2018 1 commit
    • Victor Stinner's avatar
      bpo-34989: python-gdb.py: fix current_line_num() (GH-9889) (GH-9899) · aadb44ee
      Victor Stinner authored
      python-gdb.py now handles errors on computing the line number
      of a Python frame.
      
      Changes:
      
      * PyFrameObjectPtr.current_line_num() now catchs any Exception on
        calling addr2line(), instead of failing with a surprising "<class
        'TypeError'> 'FakeRepr' object is not subscriptable" error.
      * All callers of current_line_num() now handle current_line_num()
        returning None.
      * PyFrameObjectPtr.current_line() now also catchs IndexError on
        getting a line from the Python source file.
      
      (cherry picked from commit 2e438cc2)
      aadb44ee