[issue30666] IDLE: add tests for auto-completions

2017-06-14 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE ___ Python tracker <http://bugs.python.org/issue30666> ___ ___ Python-bugs-list mai

[issue30667] IDLE: revise doc subsections 'Completions'

2017-06-14 Thread Terry J. Reedy
New submission from Terry J. Reedy: The current subsection omits Expand Word and seems not as clear as it could be. Completions rely on source information. Three possible sources are the text, Shell globals, and filesystem. Open latter two by tab, shortcut, or (in special circumstance

[issue15786] IDLE code completion window can hang or misbehave with mouse

2017-06-14 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +2242 ___ Python tracker <http://bugs.python.org/issue15786> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30666] IDLE: add tests for autocomplete window.

2017-06-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: #30632 (and #30348) partly address 1., so transferring it there, and keeping this for autocomplete_w. -- title: IDLE: add tests for auto-completions -> IDLE: add tests for autocomplete window. ___ Python trac

[issue30632] IDLE: add unittests to test_autocomplete

2017-06-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: Ping. Please answer question about two PRs. For #30666, I wrote 1. Test_autocomplete.AutoCompleteTest has a test_method for each method of autocomplete.AutoComplete. The last 5 test methods are empty ('pass'). Finish them. A couple of the method

[issue15786] IDLE code completion window can hang or misbehave with mouse

2017-06-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 32fd874afe55e396e3c9a5af35e7bb3d8e0b8f02 by terryjreedy in branch 'master': bpo-15786: Fix IDLE autocomplete return problem. (#2198) https://github.com/python/cpython/commit/32fd874afe55e396e3c9a5af35e7bb

[issue15786] IDLE code completion window can hang or misbehave with mouse

2017-06-14 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +2243 ___ Python tracker <http://bugs.python.org/issue15786> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15786] IDLE code completion window can hang or misbehave with mouse

2017-06-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 6628006941f4382813a9af4628894c99bb333b8f by terryjreedy in branch '3.6': [3.6]bpo-15786: Fix IDLE autocomplete return problem. (#2198) (#2199) https://github.com/python/cpython/commit/6628006941f4382813a9af4628894c

[issue15786] IDLE code completion window can hang or misbehave with mouse

2017-06-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: With the severe click bug apparently fixed, I focused on Suddha Sourav last sentence "In addition, pressing enter does not autocomplete but execute what was meant to be selected." In current freshly started IDLE, for example >>> re.c<

[issue27609] IDLE completions: format, factor, and fix

2017-06-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: #30666 Add completion tests #30667 Revise completion doc #15786 and additional discussion of completion behavior Tab in opened box should and usually completes, but sometimes not. I don't have a consistent example. -- nosy: -pytho

[issue27609] IDLE completions: format, factor, and fix

2017-06-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: #30632 autocomplete tests #30666 autocomplete_w tests -- dependencies: +IDLE: add tests for autocomplete window., IDLE: add unittests to test_autocomplete, IDLE: revise doc subsections 'Completions' -IDLE code completion window can hang or

[issue30348] IDLE: Add test_autocomplete unittest

2017-06-15 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- title: IDLE: Add test_autocoplete unittest -> IDLE: Add test_autocomplete unittest ___ Python tracker <http://bugs.python.org/issu

[issue694339] IDLE: Dedenting with Shift+Tab

2017-06-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: <> is a predefined virtual event. https://www.tcl.tk/man/tcl8.6/TkCmd/event.htm I can't find <> listed there. I don't remember if I actually saw it before mentioning it. While I like mimicking smart_indent, I don't know if we

[issue30642] Fix leaks in idlelib

2017-06-15 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue30674] IDLE: add docstrings to grep.py

2017-06-16 Thread Terry J. Reedy
New submission from Terry J. Reedy: On PR 2213, Cheryl said "One other question -- when I run this, the dialog box always opens way on the bottom of my screen. Has anyone requested a change to this before? Or would it be worth mentioning on idle-dev?" Louie sees top left on Mac,

[issue30674] IDLE: add docstrings to grep.py

2017-06-16 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> commit review versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issue30674> ___ ___ Python-bugs-lis

[issue30682] f-string assert is too restrictive

2017-06-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Before the patch, eval("f'\\\n'") gives me the same assertion failure, with an IDLE freeze instead of core dump equivalent, but is seems that the string should be of length 2. >>> len('\\\n') 2 >>> len

[issue30674] IDLE: add docstrings to grep.py

2017-06-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Are you two using different Linux distributions with different graphics managers? Could tk act different on different distributions? -- ___ Python tracker <http://bugs.python.org/issue30

[issue24813] Redesign Help => About IDLE, make it non-modal

2017-06-16 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy stage: -> test needed title: Idle Help dialogs shouldn't be modal -> Redesign Help => About IDLE, make it non-modal versions: +Python 3.7 -Python 2.7, Python 3.5 ___ Pyth

[issue30674] IDLE: add docstrings to grep.py

2017-06-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Since all three search boxes call the same open, they use the same hidden placement algorithm. On Windows, the last position when closed is re-used for the next open for the duration of the IDLE session. When IDLE is closed and reopened, the initial

[issue30629] lower() is called twice

2017-06-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 3358d589fb51372a56ddcfffa277855e5661c4c0 by terryjreedy (Motoki Naruse) in branch 'master': bpo-30629: Remove second call of str.lower() in html.parser.parse_endtag. (#2099) https://github.com/python/cpyt

[issue30629] lower() is called twice

2017-06-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: This appears to be your first CPython contribution. Welcome. We hope it is not the last. If you prepare a PR to add yourself to Misc/ACKS, in appropriate alphabetical position, I will merge it. Just suggest me as a reviewer. -- resolution

[issue30630] Missing MSI files

2017-06-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Unless you are experimenting, you only need 3.6.1. 3.0 is deprecated in the sense that it was not meant for production use. This tracker is for developing the next releases of CPython. If you have any more questions, try python-list. -- nosy

[issue30637] Syntax error reported on compile(...), but not on compile(..., ast.PyCF_ONLY_AST)

2017-06-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Python grammar is constrained to be, I believe, LL(1). Whatever the constraint is, there are a few syntax rules that either cannot be written or would be difficult to write within the constraint. So they are checked during compilation. Can you suggest a

[issue30667] IDLE: revise doc subsection 'Completions'

2017-06-16 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- title: IDLE: revise doc subsections 'Completions' -> IDLE: revise doc subsection 'Completions' ___ Python tracker <http://

[issue30670] pprint for dict in sorted order or insert order?

2017-06-16 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> later stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue30670> ___ ___

[issue29616] input() after restarting causes bug

2017-06-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> works for me stage: -> resolved status: pending -> closed ___ Python tracker <http://bugs.python.or

[issue6171] IDLE - TreeWidget draw and double-click (Ubuntu)

2017-06-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: (In 3.6, TreeWidget.py became tree.py.) Even though IDLE trees now appear to work correctly, including on Ubuntu, I am concerned about possible memory leaks, which are usually detected by repeatedly running a module's test file. Test_tree does not lea

[issue12420] distutils tests fail if PATH is not defined

2017-06-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: test_distutils now passes on 3.6, so this is out-of-date for 3.x. On installed 2.7.13 (released Dec 2016) ERROR: test_get_outputs (distutils.tests.test_build_ext.BuildExtTestCase) FAIL: test_customize_compiler_before_get_config_vars

[issue13601] sys.stderr should be line-buffered when stderr is not a TTY

2017-06-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: -terry.reedy ___ Python tracker <http://bugs.python.org/issue13601> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17773] test_pydoc fails with the installed testsuite (2.7)

2017-06-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue18967] Find a less conflict prone approach to Misc/NEWS

2017-06-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: Has this been superseded by core_workflow issues? -- ___ Python tracker <http://bugs.python.org/issue18967> ___ ___ Python-bug

[issue19956] inspect.getsource(obj.foo) fails when foo is an injected method constructed from another method

2017-06-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: Any review of the revised patch? -- ___ Python tracker <http://bugs.python.org/issue19956> ___ ___ Python-bugs-list mailin

[issue20663] Introduce exception argument to iter

2017-06-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> rejected stage: needs patch -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue25303] Add option to py_compile to compile for syntax checking without writing bytecode

2017-06-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: Closing, as suggested above. -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue25918] AssertionError in lib2to3 on 2.7.11 Windows

2017-06-18 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> not a bug stage: -> resolved ___ Python tracker <http://bugs.python.org/issue25918> ___ ___ Python-bugs-list

[issue29366] os.listdir has inconsistent behavior when run on a non-directory

2017-06-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: Eryk, does your last comment suggest that we close this? -- ___ Python tracker <http://bugs.python.org/issue29366> ___ ___ Pytho

[issue30360] getpass.getpass() does not accept stdin from an Expect script

2017-06-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: As suggested, and with no further response, closing. -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue27609] IDLE completions: format, factor, and fix

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE ___ Python tracker <http://bugs.python.org/issue27609> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30422] Add roadmap.txt section to idlelib

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE ___ Python tracker <http://bugs.python.org/issue30422> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26143] Ensure that IDLE's stdlib imports are from the stdlib

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE ___ Python tracker <http://bugs.python.org/issue26143> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25488] IDLE: Remove '', user_dir, and idlelib from sys.path when added

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: #25488 and #26143 address related issues of sys.path as seen by IDLE and user code. #26143 focuses on what IDLE sees, and user modules shadowing IDLE modules, #25488 focuses on what user code sees, and the presence of idlelib in sys.path making buggy code

[issue26143] Ensure that IDLE's stdlib imports are from the stdlib

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: #25488 and #26143 address related issues of sys.path as seen by IDLE and user code. #26143 focuses on what IDLE sees, and user modules shadowing IDLE modules, #25488 focuses on what user code sees, and the presence of idlelib in sys.path making buggy code

[issue28572] IDLE: add tests for config dialog.

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE ___ Python tracker <http://bugs.python.org/issue28572> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27477] IDLE: Switch search dialogs to ttk widgets, and other refinement

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE ___ Python tracker <http://bugs.python.org/issue27477> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27465] IDLE:Make help source menu entries unique and sorted.

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE ___ Python tracker <http://bugs.python.org/issue27465> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27452] IDLE: Cleanup config code

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE ___ Python tracker <http://bugs.python.org/issue27452> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27388] IDLE configdialog: reduce multiple references to Var names

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE ___ Python tracker <http://bugs.python.org/issue27388> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27099] IDLE: turn builting extensions into regular modules

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE ___ Python tracker <http://bugs.python.org/issue27099> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22893] Idle: __future__ does not work in startup code.

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE ___ Python tracker <http://bugs.python.org/issue22893> ___ ___ Python-bugs-list mai

[issue26353] IDLE: Saving Shell should not add \n

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE ___ Python tracker <http://bugs.python.org/issue26353> ___ ___ Python-bugs-list mai

[issue22742] IDLE shows traceback when printing non-BMP character

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE -Library (Lib) versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue25522] IDLE: warn if save-as name matches stdlib name

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE versions: +Python 3.7 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue25244] Idle: refine right-click behavior

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE ___ Python tracker <http://bugs.python.org/issue25244> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25198] Idle: improve idle.html help viewer.

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE ___ Python tracker <http://bugs.python.org/issue25198> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25219] Update doc for Idle command line options.

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE ___ Python tracker <http://bugs.python.org/issue25219> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25218] Automate creation of idlelib/help.html from Doc/.../idle.html

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +Build, IDLE ___ Python tracker <http://bugs.python.org/issue25218> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30495] IDLE: modernize textview module

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: You were waiting on my review of the revised patch. 1. Remove the help_about changes. Reworking help_about is #24813. I just reviewed Mark Roseman's patch. I do not want the button frames because I would like to get rid of the buttons. Besides th

[issue21674] Idle: Add 'find all' in current file

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE ___ Python tracker <http://bugs.python.org/issue21674> ___ ___ Python-bugs-list mai

[issue18318] Idle: stop depending on console output

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE ___ Python tracker <http://bugs.python.org/issue18318> ___ ___ Python-bugs-list mai

[issue18064] IDLE: add current directory to open_module

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: For IDLE development, I would love to have idlelib and idlelib.idle_test on the open line. Perhaps this should be user configurable: Favorite directories for opening files. -- ___ Python tracker <h

[issue18064] IDLE: add current directory to open_module

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issu

[issue25090] IDLE: remove noisy icons from class (module) browser

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy stage: -> test needed versions: +Python 3.7 -Python 2.7, Python 3.5 ___ Python tracker <http://bugs.python.org/i

[issue17060] IDLE -- jump to home should not go past the PS1 and PS2 prompts

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am closing this instead of #18444 because the latter has more extensive discussion. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> IDLE: Mac OS X pressing ctrl-A in Python shell moved cursor befor

[issue18444] IDLE: Mac OS X pressing ctrl-A in Python shell moved cursor before the prompt, which then makes the keyboard unresponsive.

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.4 ___ Python tracker <http://bugs.python.org/issue18444> ___ ___ Python-bug

[issue18444] IDLE: Mac OS X pressing ctrl-A in Python shell moved cursor before the prompt, which then makes the keyboard unresponsive.

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: I closed #17060 as a duplicate of this. Roger Serwy there said "The .home_callback() in Lib/idlelib/EditorWindow.py contains the logic from #3851 for placing the cursor at the beginning of the prompt, but it requires that a key combination be bound t

[issue20917] Idle: Enhance font change notification system

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE stage: -> test needed versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/i

[issue25036] IDLE - infrastructure changes so editors don't assume they're in a toplevel

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy stage: -> test needed versions: +Python 3.7 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/i

[issue25031] IDLE - file list improvements

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy stage: -> test needed versions: +Python 3.7 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/i

[issue25015] Idle: scroll Text faster with mouse wheel

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE versions: +Python 3.7 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue24996] IDLE: debugger local/global vars should not be editable

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE stage: -> test needed versions: +Python 3.7 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/i

[issue24996] IDLE: debugger local/global vars should not be editable

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: I believe an Entry validator can reject all keystrokes. It seem feasible that globals could be changed. I could look at what pdb can do and if so, how. -- ___ Python tracker <http://bugs.python.org/issue24

[issue24936] Idle: handle 'raise' properly when running with subprocess (2.7)

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: The Runtime error is what current py 3 raises. TypeError is what 2.7.13 raises. Since the only problem is for someone who read the doc running 'raise' in IDLE 2.7 in -n mode, closing. -- assignee: -> terry.reedy components: +ID

[issue24212] Idle, 2.7, backport idlelib.__main__, enable py -m idlelib

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am no longer patching IDLE for 2.7. -- assignee: -> terry.reedy components: +IDLE resolution: -> wont fix stage: needs patch -> resolved status: open -> closed ___ Python tracker <http://

[issue18330] Fix idlelib.PyShell.build_subprocess_arglist use of __import__

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue23431] Idle Application Not Responding

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: No followup, no issue. If IDLE did not run but python did, the next thing to have tried would have been .../python3.4 -c "import tkinter; tkinter.Tk()" -- nosy: +terry.reedy resolution: -> out of date stage: -> resolved status

[issue14944] Setup & Usage documentation for pydoc, IDLE, & 2to3

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am not sure where installed scripts are documented in Using Python. 'idle' and 'idle3' are not installed on Windows. -- title: Setup & Usage documentation for pydoc, idle & 2to3 -> Setup & Usage documentati

[issue17583] IDLE HOWTO

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: Cheryl, what do you think of the revised patch? I imagine it needs some updating for *nix, but does it seem useful to a beginner? -- nosy: +csabella versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.3, Python 3.4

[issue24212] Idle, 2.7, backport idlelib.__main__, enable py -m idlelib

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: I wanted this for the same reason you backported test.__main__ in #30223, but I'm not going to fix the problems. -- ___ Python tracker <http://bugs.python.org/is

[issue22209] Idle: add better access to extension information

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue22010] Idle: better management of Shell window output

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issue22

[issue17506] Improve IDLE news handling

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: To minimize news merge headaches, I have been pushing news items separately from IDLE patches, usually in batches of at least two. It has not been too much bother to copy from NEWS.txt to NEWS. If and when news handling is automated, I will request that

[issue21787] Idle: make 3.x Hyperparser.get_expression recognize ...

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE versions: +Python 3.6, Python 3.7 -Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue21624] Idle: polish htests

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issue21

[issue21673] Idle: hilite search terms in hits in Find in Files output window

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issue21

[issue21632] Idle: sychronize text files across versions as appropriate.

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issue21

[issue21632] Idle: sychronize text files across versions as appropriate.

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: Help.txt has been replaced by help.html, generated from idle.html, generated from idle.rst, which is so far kept in sync for current maintenance and feature versions. Readme.txt has been replaced and is in sync for 3.6 and 7. The 3.6 and 3.7 code have one

[issue18504] IDLE:Improvements- Improving Mock_Text

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue18

[issue18504] IDLE: Improve Mock_Text

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- title: IDLE:Improvements- Improving Mock_Text -> IDLE: Improve Mock_Text ___ Python tracker <http://bugs.python.org/issu

[issue21474] Idle: updata fixwordbreaks() for unicode identifiers

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE versions: +Python 3.6, Python 3.7 -Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue21473] Idle: test startup scripts.

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy components: +IDLE versions: +Python 3.6, Python 3.7 -Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue21359] IDLE Redo command accelerator acts as Undo with current OS X Cocoa Tk 8.5.15

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE nosy: +terry.reedy stage: -> test needed versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue20403] Idle options dialog: add help

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: Help has been restored, but perhaps not with this patch. Before closing, I should check if there is anything I want to use. -- assignee: -> terry.reedy components: +IDLE versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.3, Python

[issue18583] Idle: enhance FormatParagraph

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE versions: +Python 3.6 -Python 2.7, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue18

[issue18583] Idle: enhance FormatParagraph

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.7 ___ Python tracker <http://bugs.python.org/issue18583> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18316] Idle 2.7: update to simplify cross-version patches

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am no longer patching IDLE for 2.7, partly because of the testing issue. -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue18152] Idle: add 2.7 backport script

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue17583] IDLE HOWTO

2017-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks. This is helpful and got me started thinking. I don't want to duplicate the reference doc too much, but a reference is just that, a reference. The menu items are discussed in the order they appear, not the order a beginner might use the most c

[issue30629] lower() is called twice

2017-06-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 5cc7ac24da10568d2a910a91a24183b904118cf8 by terryjreedy (Motoki Naruse) in branch 'master': bpo-30629: Add Motoki Naruse to Misc/ACKS (#2284) https://github.com/python/cpython/commit/5cc7ac24da10568d2a910a91a24183

[issue30629] lower() is called twice

2017-06-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: What persuaded me to make the offer was your extra effort to include the link to the specific line and the minimal quote needed to explain. The link made it trivial to look at the context of the change. -- assignee: -> terry.reedy status: o

<    45   46   47   48   49   50   51   52   53   54   >