[issue35208] IDLE: Squeezed line count ignores wrapping before newline

2018-12-24 Thread miss-islington
miss-islington added the comment: New changeset 0e0cc553ab4c234e583b410accc7069eb97e392a by Miss Islington (bot) in branch '3.7': bpo-35208: Fix IDLE Squeezer line counting (GH-10449) https://github.com/python/cpython/commit/0e0cc553ab4c234e583b410accc7069eb97e392a -- nosy:

[issue35208] IDLE: Squeezed line count ignores wrapping before newline

2018-12-24 Thread Tal Einat
Tal Einat added the comment: New changeset 44a79cc5b3d1fb0c03c99077aa26def85ec26c67 by Tal Einat in branch 'master': bpo-35208: Fix IDLE Squeezer line counting (GH-10449) https://github.com/python/cpython/commit/44a79cc5b3d1fb0c03c99077aa26def85ec26c67 --

[issue35208] IDLE: Squeezed line count ignores wrapping before newline

2018-12-24 Thread miss-islington
Change by miss-islington : -- pull_requests: +10539 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35208] IDLE: Squeezed line count ignores wrapping before newline

2018-12-24 Thread Tal Einat
Change by Tal Einat : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue35208] IDLE: Squeezed line count ignores wrapping before newline

2018-12-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: The specific bug being fixed here is that wrapped lines before newline are ignored because after if s[pos] == '\n': linecount += 1 current_column = 0 this block if current_column > 0: lines, column =