[issue35485] Mac: tkinter windows turn black while resized

2018-12-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue35485> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34313] Tkinter crashes with Tk-related error on macOS with ActiveTcl 8.6

2018-12-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: I installed 64-bit 3.7.2rc1 on my Macbook, with 8.6.9, and so far IDLE itself runs fine. (Other than new blackout issue reported in #34313.) I will let someone else test 32/64 bit release, which Ned says also uses 8.6.9. Vlad says in msg323040 "on 8.

[issue34313] Tkinter crashes with Tk-related error on macOS with ActiveTcl 8.6

2018-12-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: I get it now. [:8] meant .0 to .7 inclusive, like range(8). I understand that until last spring, the tcl/tk/tkinter situation on Mac was a bit like the old American wild west. But then Ned more or less tamed it for 3.7 and now 3.6. We no longer install

[issue35208] IDLE: Squeezed lines count ignores window width

2018-12-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: There are 2 questions. 1. Should we review squeezer, in light of further complemplation and experience, and possibly patch it in a couple of weeks or so? Yes. 2. Is there such a severe bug that we should possibly rush a fix and ask Ned to cherry-pick

[issue35485] Mac: tkinter windows turn black while resized

2018-12-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: I presume that tip has patches not in the distributed 8.6.9. Ned, if my system is not unique and this is fixed by an identifiable patch, please consider including it. -- keywords: +3.7regression ___ Python

[issue35441] Dead (and buggy) code due to mishandling of PyList_SetItem() errors

2018-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: Can this be closed? -- nosy: +terry.reedy ___ Python tracker <https://bugs.python.org/issue35441> ___ ___ Python-bugs-list m

[issue35442] Chain of several subcommands in argparse

2018-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: A better place to discuss format and API is python-ideas list. Almost certainly will see responses there. -- nosy: +terry.reedy stage: -> test needed versions: +Python 3.8 ___ Python tracker <

[issue35448] ConfigParser .read() - handling of nonexistent files

2018-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: Since the code and doc agree, and since the proposal is to add a call parameter, this would be an enhancement for next release only, not a bug fix. The proposal seems reasonable. I might use it for IDLE. IDLE uses .read within this subclass method

[issue35449] documenting objects

2018-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: The reason that modules, classes, and functions need a special rule for assigning the .__doc__ attribute is that one cannot get a reference to the module, class, or function within the body of its definition. And putting the docstring at the top of a file

[issue35450] venv module doesn't create a copy of python binary by default

2018-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: Close this? -- nosy: +terry.reedy versions: -Python 3.5 ___ Python tracker <https://bugs.python.org/issue35450> ___ ___ Pytho

[issue35453] pathlib.Path: glob and rglob should accept PathLike patterns

2018-12-14 Thread Terry J. Reedy
Change by Terry J. Reedy : -- stage: -> test needed type: -> enhancement versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/i

[issue35457] robotparser reads empty robots.txt file as "all denied"

2018-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: https://docs.python.org/2.7/library/robotparser.html#module-robotparser and https://docs.python.org/3/library/urllib.robotparser.html#module-urllib.robotparser refers users, for file structure, to http://www.robotstxt.org/orig.html. This says nothing about the

[issue35472] python 3.7.2 rc1 bumped the build requirements for no reason

2018-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: Should we add '(subject to change in any release)' after # Require Sphinx 1.7 for build. Matthias, I presume you are on some Linux. Would a script to temporarily change conf.py to build the docs work for you? To be reasonably sure that 1.6.6 is

[issue35480] argparse: add a full fledged parser as a subparser

2018-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: I presume you mean to close this. -- nosy: +terry.reedy stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/i

[issue35482] python372rc1.chm is ill

2018-12-14 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue35

[issue35486] subprocess module import hooks breaks back compatibility

2018-12-14 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +brett.cannon, eric.snow, ncoghlan stage: -> test needed title: subprocess module breaks backwards compatibility with import hooks -> subprocess module import hooks breaks back compatibility type: ->

[issue35492] Missing colon on func statement in library/sys doc

2018-12-14 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue35495] argparse does not honor default argument for nargs=argparse.REMAINDER argument

2018-12-14 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +bethard stage: -> test needed versions: +Python 3.8 -Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.org/issu

[issue35402] Upgrade macOS and Windows installers to Tcl 8.6.9 and Tk 8.6.9.1

2018-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thank you both for the updates. After I wrote my previous message, I realized that there is a difference between updating tcl/tk to take advantage of bug fixes (after testing for regressions), and enhancing tkinter to give directly access to new tk

[issue35208] IDLE: Squeezed lines count ignores window width

2018-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: My suggest simple rule would sqeeze it. With n = 50 and k = 75, if len(s) > n*k or s.count('\n') > n: squeeze(s) would squeeze at 3750. With k = 50, as 2500. I am not sure yet what to do about wrapping. For development, a count of actua

[issue34864] In Idle, Mac tabs make editor status line disappear.

2018-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: PR 6665, for #33397 (add font resizing to text view and help viewer) got listed because I discovered that increasing and decreasing font size with control wheel/+/- can cause the [close] button to disappear and reappear. (I hope to use FontSizer for editor

[issue34864] In Idle, Mac tabs make editor status line disappear.

2018-12-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Ned, the warning is non-specific as to what might go wrong. I would not want to remove it until I had tested everything possibly relevant with tabbing set. And there is still the possibility that people will run IDLE with earlier tk releases. The #33397

[issue35521] IDLE: Add doc section for Code Context and ref links.

2018-12-19 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: +Python 3.6, Python 3.7 ___ Python tracker <https://bugs.python.org/issue35521> ___ ___ Python-bugs-list mailin

[issue35521] IDLE: Add doc section for Code Context and ref links.

2018-12-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: Great. Since you included half of the other needed ref links in the PR, and I mentioned them in the blurb, I am going to include the other half in this PR as a followup PR. -- title: IDLE: Add doc section for Code Conext -> IDLE: Add doc sect

[issue35521] IDLE: Add doc section for Code Context and ref links.

2018-12-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 01421bec1e0d25df17599cfa1160adbbcd08e949 by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-35521: IDLE: Add code context section to docs (#11205) https://github.com/python/cpython/commit/01421bec1e0d25df17599cfa1160ad

[issue34162] idlelib/NEWS.txt for 3.8.0 (and backports)

2018-12-19 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +10484 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issue34162> ___ ___ Python-

[issue35521] IDLE: Add doc section for Code Context and ref links.

2018-12-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: No more 3.6 backports. -- versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issue35521> ___ ___ Python-bug

[issue34162] idlelib/NEWS.txt for 3.8.0 (and backports)

2018-12-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 87ec1104b369865c3c41d2d91ac7aee29cfb632e by Terry Jan Reedy in branch 'master': bpo-34162: Update idlelib/NEWS.txt to 2018-12-20. (#11255) https://github.com/python/cpython/commit/87ec1104b369865c3c41d2d91ac7ae

[issue34162] idlelib/NEWS.txt for 3.8.0 (and backports)

2018-12-19 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +10485 ___ Python tracker <https://bugs.python.org/issue34162> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34162] idlelib/NEWS.txt for 3.8.0 (and backports)

2018-12-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 93f5694bb0c147ae48da492d6eb627562f8d by Terry Jan Reedy in branch '3.7': [3.7] bpo-34162: Update idlelib/NEWS.txt to 2018-12-20 (GH-11255) (#11256) https://github.com/python/cpython/commit/93f5694bb0c147ae48da492d6eb624

[issue35521] IDLE: Add doc section for Code Context and ref links.

2018-12-19 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +10486 ___ Python tracker <https://bugs.python.org/issue35521> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35521] IDLE: Add doc section for Code Context and ref links.

2018-12-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: I did not find the references in the text I remembered, but found 2 more involving the menu section. -- ___ Python tracker <https://bugs.python.org/issue35

[issue35521] IDLE: Add doc section for Code Context and ref links.

2018-12-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 292cd6e33104d9f458232a14998fe5c62f7f7e81 by Terry Jan Reedy in branch 'master': bpo-35521: Add more cross-refs to IDLE docs (#11257) https://github.com/python/cpython/commit/292cd6e33104d9f458232a14998fe5

[issue35521] IDLE: Add doc section for Code Context and ref links.

2018-12-20 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue35485] Mac: tkinter windows turn black while resized

2018-12-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: The point of the minimal code snippet is that the behavior is tk/tkinter generic and not specific to Texts or IDLE or particular non-default parameters or geometry. -- ___ Python tracker <https://bugs.python.

[issue35208] IDLE: Squeezed lines count ignores window width

2018-12-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: Tal, trying to understand your confused description of what behavior you want to fix required me to experiment and think. There are at least 2 separate issues: triggering of auto-squeeze and lines reported (regardless of what triggers squeezing). The

[issue22703] Idle Code Context menu entrie(s)

2018-12-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: This is a dependency of #33610. -- versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issue22703> ___ ___ Pytho

[issue35485] Mac: tkinter windows turn black while resized

2018-12-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: Raymond, as Ned explains above, there seem to be no really good options for the upcoming releases on Mac. The *ed paragraph below has my best guess at to whether a Mac-IDLE user should install or ignore. --- Basic options A, to hold up the release

[issue22703] Idle Code Context menu entrie(s)

2018-12-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: Both pr-11214 and the pr-11286 (3.7 backport, not listed below) have been merged. Tal: I am pretty sure the Options menu should continue to work on Macs, but a test to verify would be helpful. -- nosy: +taleinat

[issue22703] Idle Code Context menu entrie(s)

2018-12-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue35555] IDLE: Gray out Code Context on non-editor windows

2018-12-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: PR 11282 should have been listed above. -- stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue11566] hypot define in pyconfig.h clashes with g++'s cmath

2018-12-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: What current 3.x versions have this issue? This issue was opened against 2.7. This was changed to 3.3 in 2013 (3.3 should have just been added with control-click). I reverted to 2.7 and tentatively added 3.8, but this needs to be checked. The PR is

[issue35500] Align expected and actual calls on mock.assert_called_with error message

2018-12-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: We don't usually wrap error messages, but this is plausible. With the addition to the first line, we don't need to repeat 'call'. We can line things up without violating the PEP 8 recommendation against doing so with spaces. Also,

[issue35514] Docs on reference count detail. enhancement.

2018-12-22 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +serhiy.storchaka __ Python tracker <https://bugs.python.org/issue35514> __ ___ Python-bugs-list mailin

[issue35548] memoryview needlessly (?) requires represented object to be hashable

2018-12-22 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: +Python 3.8 -Python 3.4, Python 3.5, Python 3.6 __ Python tracker <https://bugs.python.org/issue35

[issue35533] argparse standard error usage for exit / error

2018-12-22 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +bethard versions: +Python 3.8 __ Python tracker <https://bugs.python.org/issue35533> __ ___ Python-bug

[issue35555] IDLE: Gray out Code Context on non-editor windows

2018-12-23 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: +Python 3.7 ___ Python tracker <https://bugs.python.org/issue3> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35555] IDLE: Gray out Code Context on non-editor windows

2018-12-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thank you. The backport is PR 11300. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[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:

[issue35555] IDLE: Gray out Code Context on non-editor windows

2018-12-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 8874f511e7473b08d6b0ccd9261dd415a072a34d by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-3: IDLE: Gray out Code Context menu item on non-editors (#11282) https://github.com/python/cpyt

[issue35555] IDLE: Gray out Code Context on non-editor windows

2018-12-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset d4f7616da3c9aa870e9e2580e1019d6a62173e12 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.7': bpo-3: IDLE: Gray out Code Context menu item on non-editors (GH-11282) (GH-11300) https://github.com/python/cpyt

[issue35485] Mac: tkinter windows turn black while resized

2018-12-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: https://stackoverflow.com/questions/53923262/pyenv-installed-version-opening-idle-in-black-screen reports that with 3.6.7 in a venv running on Mac Mohave (with 3.7.2 installed), IDLE opens with a black screen. Is there another report like this

[issue35598] IDLE: Modernize config_key module

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10599 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10598 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28097] IDLE: document all key bindings, add menu items for more.

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: +Python 3.7, Python 3.8 -Python 3.6 ___ Python tracker <https://bugs.python.org/issue28097> ___ ___ Python-bugs-list m

[issue35598] IDLE: Modernize config_key module

2018-12-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am going to merge on the presumption that you will follow through at least with more tests. Currently missing other than mac-code, according to coverage output: switch from 'advanced to basic and calls to final_key_selected, build_key_s

[issue35598] IDLE: Modernize config_key module

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: +Python 3.7 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2018-12-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: If you submit further PRs for this issue, the blurb will need to be changed as blurbs are for issues, not PRs. -- ___ Python tracker <https://bugs.python.org/issue35

[issue28097] IDLE: document all key bindings, add menu items for more.

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10590 ___ Python tracker <https://bugs.python.org/issue28097> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28097] IDLE: document all key bindings, add menu items for more.

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10589 ___ Python tracker <https://bugs.python.org/issue28097> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2018-12-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 55698cc39549523cafc13cc8dd47960d8f73a59f by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-35598: IDLE: Update config_key.py with PEP8 names (GH-11330) https://github.com/python/cpython/commit/55698cc39549523cafc13cc8dd4796

[issue35598] IDLE: Modernize config_key module

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10611 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35598] IDLE: Modernize config_key module

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10610 ___ Python tracker <https://bugs.python.org/issue35598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28097] IDLE: document all key bindings, add menu items for more.

2018-12-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: Response to history issues raised in PR: 1. Not erasing output/history is a feature: some shells save and restore recent history when close and open. Shell restart is an alternative to that. I fairly often replay statements after restart. 2. I think

[issue35591] IDLE: Traceback on Find Selection

2018-12-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks for reporting this. It is easy to trigger. And after a bit of analysis, easy to fix. self.bell is set as top.bell in searchbase.SearchDialogBase.create_widgets(). The latter is called by SDB.open(), which is called for Find, Find-again if there

[issue35591] IDLE: Traceback on Find Selection

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +10618 stage: commit review -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35591] IDLE: Traceback on Find Selection

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10620 ___ Python tracker <https://bugs.python.org/issue35591> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35591] IDLE: Traceback on Find Selection

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch, patch pull_requests: +10618, 10619 stage: commit review -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35591] IDLE: Traceback on Find Selection

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch, patch, patch pull_requests: +10618, 10619, 10620 stage: commit review -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35591] IDLE: Traceback on Find Selection

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10619 ___ Python tracker <https://bugs.python.org/issue35591> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35591] IDLE: Traceback on Find Selection

2018-12-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: I expect that people have run into this. But since callback exceptions do not crash IDLE, the only symptom when not running from a terminal is the lack of the 'bell' sound. -- ___ Python track

[issue35591] IDLE: Traceback on Find Selection

2018-12-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset c465682718f15cd3deb6b37db5fb607718ac64ed by Terry Jan Reedy in branch 'master': bpo-35591: IDLE Find Selection now works when selection not found (GH-11339) https://github.com/python/cpython/commit/c465682718f15cd3deb6b37db5fb60

[issue35591] IDLE: Traceback on Find Selection

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10622 ___ Python tracker <https://bugs.python.org/issue35591> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35591] IDLE: Traceback on Find Selection

2018-12-27 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10623 ___ Python tracker <https://bugs.python.org/issue35591> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35591] IDLE: Traceback on Find Selection

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : ___ Python tracker <https://bugs.python.org/issue35591> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/o

[issue35591] IDLE: Traceback on Find Selection

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10628 ___ Python tracker <https://bugs.python.org/issue35591> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35591] IDLE: Traceback on Find Selection

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10629 ___ Python tracker <https://bugs.python.org/issue35591> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35591] IDLE: Traceback on Find Selection

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue35555] IDLE: Gray out Code Context on non-editor windows

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10632 ___ Python tracker <https://bugs.python.org/issue3> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35555] IDLE: Gray out Code Context on non-editor windows

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10631 ___ Python tracker <https://bugs.python.org/issue3> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35555] IDLE: Gray out Code Context on non-editor windows

2018-12-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: A function to change state will be needed in the future, as illustrated by a preliminary version of PR-11325. On that PR, I requested that this part of that PR should be attached to this issue instead, with no change in the blurb

[issue22703] Idle Code Context menu entrie(s)

2018-12-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: I understand. Until tcl/tk can be patched to work with both Mohave and past macOS versions, it is a nasty situation. -- ___ Python tracker <https://bugs.python.org/issue22

[issue35555] IDLE: Gray out Code Context on non-editor windows

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10635 ___ Python tracker <https://bugs.python.org/issue3> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35555] IDLE: Gray out Code Context on non-editor windows

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10634 ___ Python tracker <https://bugs.python.org/issue3> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28097] IDLE: document all key bindings, add menu items for more.

2018-12-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: Cheryl, the addition looks nice. But for anything else, lets discuss here first. -- ___ Python tracker <https://bugs.python.org/issue28

[issue34055] IDLE Shell: check syntax before smart indent

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10544 ___ Python tracker <https://bugs.python.org/issue34055> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34055] IDLE Shell: check syntax before smart indent

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10545 ___ Python tracker <https://bugs.python.org/issue34055> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28097] IDLE: document all key bindings, add menu items for more.

2018-12-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset c0381aaea4ad3e866bde70393c4f7efe9bcf3568 by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-28097: IDLE - Add Previous/Next History to Shell menu (#11325) https://github.com/python/cpyt

[issue28097] IDLE: document all key bindings, add menu items for more.

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10638 ___ Python tracker <https://bugs.python.org/issue28097> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28097] IDLE: document all key bindings, add menu items for more.

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10637 ___ Python tracker <https://bugs.python.org/issue28097> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34055] IDLE Shell: check syntax before smart indent

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +10639, 10640, 10641 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue34055] IDLE Shell: check syntax before smart indent

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +10639, 10640 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/issue34055> ___ _

[issue34055] IDLE Shell: check syntax before smart indent

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +10639 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/issue34055> ___ ___ Python-

[issue34055] IDLE: erroneous 'smart' indents in shell

2018-12-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: I changed the title back to the symptom description, rather than the wrong fix. As Cheryl noted, the cause of the specific regression is the erroneous deletion of one line in pyshell.PyShell. The simplest fix is to put is back. Globally replacing

[issue34055] IDLE: erroneous 'smart' indents in shell

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10641 ___ Python tracker <https://bugs.python.org/issue34055> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34055] IDLE: erroneous 'smart' indents in shell

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10640 ___ Python tracker <https://bugs.python.org/issue34055> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34055] IDLE: erroneous 'smart' indents in shell

2018-12-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 4bc246786f003cdf1fffb3403b4cd92fc42ba9ef by Terry Jan Reedy in branch 'master': bpo-34055: Revert deletion of line in IDLE's PyShell (#11346) https://github.com/python/cpython/commit/4bc246786f003cdf1fffb3403

[issue34055] IDLE: erroneous 'smart' indents in shell

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10644 ___ Python tracker <https://bugs.python.org/issue34055> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34055] IDLE: erroneous 'smart' indents in shell

2018-12-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10643 ___ Python tracker <https://bugs.python.org/issue34055> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35570] 2to3 creates code using deprecated imp module

2018-12-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: It was decided in #21446 to only backport the change, labelled an enhancement, to 3.7 and it is now too late to challenge that decision as 3.6 only gets security fixes. -- nosy: +terry.reedy resolution: -> duplicate stage: -> resolved status

<    55   56   57   58   59   60   61   62   63   64   >