[issue37149] link to official documentation tkinter failed !!!

2019-07-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 45bc61b97178b27ae05bd3eb95481bf0325795bb by Terry Jan Reedy in branch 'master': bpo-37149: Replace dead link for online Tkinter reference (GH-14616) https://github.com/python/cpython/commit/45bc61b97178b27ae05bd3eb95481b

[issue37149] link to official documentation tkinter failed !!!

2019-07-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: Ned, PR-14616 replaces a dead link to the most important online Tkinter reference. Please consider cherry-picking the 3.7 backport (already merged) into the upcoming 3.7.4. Many people are lost without the reference, as they find reading the tcl/tk

[issue37149] link to official documentation tkinter failed !!!

2019-07-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: The 2.7 backport shows a clean 2.7 diff, Travis merged and passed it, but required Appveyor just says 'non-mergeable' with no details, and no way to discover why or to cleanly retry. I will try close and

[issue37487] PyList_GetItem() document regarding index

2019-07-06 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +14437 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14623 ___ Python tracker <https://bugs.python.org/issu

[issue37487] PyList_GetItem() document: index can be 0

2019-07-06 Thread Terry J. Reedy
Change by Terry J. Reedy : -- assignee: docs@python -> terry.reedy stage: patch review -> commit review title: PyList_GetItem() document regarding index -> PyList_GetItem() document: index can be 0 versions: +Python 2.7, Python 3.7, Python 3.8, Python 3.9 -P

[issue37487] PyList_GetItem() document: index can be 0

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset f8709e804d16ec5d44b1d2f00d59a0f78df7b792 by Terry Jan Reedy in branch 'master': bpo-37487: Fix PyList_GetItem index description. (GH-14623) https://github.com/python/cpython/commit/f8709e804d16ec5d44b1d2f00d59a0

[issue37456] FAQ says positional arguments aren't a thing

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: I will remove the sentence. -- assignee: docs@python -> terry.reedy nosy: +terry.reedy stage: -> commit review type: -> behavior versions: +Python 3.9 ___ Python tracker <https://bugs.python.or

[issue37456] FAQ says positional arguments aren't a thing

2019-07-06 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +14441 stage: commit review -> patch review pull_request: https://github.com/python/cpython/pull/14627 ___ Python tracker <https://bugs.python.org/issu

[issue37487] PyList_GetItem() document: index can be 0

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 9c930d076a7225694b369d30636a29acb556c2be by Terry Jan Reedy (Miss Islington (bot)) in branch '3.7': bpo-37487: Fix PyList_GetItem index description. (GH-14623) (GH-14625) https://github.com/python/cpyt

[issue37487] PyList_GetItem() document: index can be 0

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset ad3720359faa933d04bde3d3222fd54e73ee7feb by Terry Jan Reedy (Miss Islington (bot)) in branch '3.8': bpo-37487: Fix PyList_GetItem index description. (GH-14623) (GH-14624) https://github.com/python/cpyt

[issue37487] PyList_GetItem() document: index can be 0

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset dd3862e167d573b6e9a3348c365229ca958d1f1f by Terry Jan Reedy (Miss Islington (bot)) in branch '2.7': bpo-37487: Fix PyList_GetItem index description. (GH-14623) (GH-14626) https://github.com/python/cpyt

[issue37487] PyList_GetItem() document: index can be 0

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

[issue37456] FAQ says positional arguments aren't a thing

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 6f2a8c08573c71b78d2f6e2bfaf31641a0cd092b by Terry Jan Reedy in branch 'master': bpo-37456: Slash ('/') is now part of syntax. (GH-14627) https://github.com/python/cpython/commit/6f2a8c08573c71b78d2f

[issue37478] Docs: Method os.chdir() does not mention errors that can be raised

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: Please ask your questions about doc conventions, both about exceptions and function/method. Either someone will point to something in the devguide, or we might get a discussion about something that should be added. I would not merge more extensive changes

[issue37456] FAQ says positional arguments aren't a thing

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 90631f9bc5f78ec6cdc2096d5c5ae26e41e5f150 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.8': bpo-37456: Slash ('/') is now part of syntax. (GH-14627) (GH-14628) https://github.com/p

[issue37491] IndexError in get_bare_quoted_string

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: An Python exception is not a crash; a crash is the program stopping without an exception and proper cleanup. If s is a string (rather than, for instance, None), s and (s[0] == char) is equivalent to s[0:1] == char -- nosy: +terry.reedy type: crash

[issue37480] add ptpython to list of alternate interpreters

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: My problems with this chapter are that it mostly ignores Windows, omits IDLE which has most of the 'advanced features' discussed, and some others (I could fix this), confuses a bit 'interpreter' as code executor versus 'interactive

[issue37478] Docs: Method os.chdir() does not mention errors that can be raised

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 0717b4d9b3899c5c2ca13031e4ff619a15a4d368 by Terry Jan Reedy (Kyle Stanley) in branch 'master': bpo-37478: Specify possible exceptions for os.chdir() (GH-14611) https://github.com/python/cpython/commit/0717b4d9b3899c5c2ca13031e4ff61

[issue37478] Docs: Method os.chdir() does not mention errors that can be raised

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 4e6bfc4c605d92d2395fbcded9cf45cdd1ced810 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.8': bpo-37478: Specify possible exceptions for os.chdir() (GH-14611) (GH-14629) https://github.com/python/cpyt

[issue37478] Docs: Method os.chdir() does not mention errors that can be raised

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 1dd65075955337183ba2f78cb11a1eec2466dc74 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.7': bpo-37478: Specify possible exceptions for os.chdir() (GH-14611) (GH-14630) https://github.com/python/cpyt

[issue37478] Docs: Method os.chdir() does not mention errors that can be raised

2019-07-06 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +14445 pull_request: https://github.com/python/cpython/pull/14631 ___ Python tracker <https://bugs.python.org/issue37

[issue37478] Docs: Method os.chdir() does not mention errors that can be raised

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset a9b40e4546ca631e5ab41376b5b72e8f296f557d by Terry Jan Reedy in branch 'master': bpo-37478: Add missing 'and'. (GH-14631) https://github.com/python/cpython/commit/a9b40e4546ca631e5ab4

[issue37478] Specify possible exceptions for os.chdir()

2019-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: Spinoff issues should be separate. -- title: Docs: Method os.chdir() does not mention errors that can be raised -> Specify possible exceptions for os.chdir() ___ Python tracker <https://bugs.python.org/issu

[issue30663] IDLE: Add lineno sidebar to editor window

2019-07-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: A closing note: Saimadhav Heblikar's initial patch on #17535 was a standalone proof-of-concept file was based on Canvas and Text subclasses. The latter consisted mostly of two tk.eval(tcl_code) calls. I rejected the idea of using tk.eval, as revie

[issue37149] link to official documentation tkinter failed !!!

2019-07-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Larry, I have the same request of you that I did for Ned. Please backport PR-14616 to 3.5. It replaces a dead link to the most important online Tkinter reference. Many people are lost without the reference, as they find reading the tcl/tk reference much

[issue26806] IDLE not displaying RecursionError tracebacks and hangs

2019-07-08 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +14464 pull_request: https://github.com/python/cpython/pull/14657 ___ Python tracker <https://bugs.python.org/issue26

[issue37501] Test failures when CPython is built without docstrings

2019-07-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: Compiling without docstrings only affects compiled functions. (Is this option unix only, for servers?) This caused failures in 6 /test test functions. Running with -00 only affects python functions. It causes failure in 19 test function on Windows. For

[issue37524] IDLE error on closing 3.8+ debug build

2019-07-09 Thread Terry J. Reedy
New submission from Terry J. Reedy : In Win Command Prompt, in master repository or 3.8 worktree with 32 bit debug build: F:\dev\3x>python Running Debug|Win32 interpreter... Python 3.9.0a0 (heads/master:110a47c4f4, Jul 9 2019, 01:31:55) [MSC v.1900 32 bit (Intel)] on win32 Type &q

[issue37524] IDLE error on closing 3.8+ debug build

2019-07-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +taleinat ___ Python tracker <https://bugs.python.org/issue37524> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37524] IDLE error on closing 3.8+ debug build

2019-07-09 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +ZackerySpytz ___ Python tracker <https://bugs.python.org/issue37524> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37524] IDLE error on closing 3.8+ debug build

2019-07-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am pretty sure that this started sometime well after 3.7 was split off from master. Perhaps there was some change in python shutdown not backported to 3.7. -- ___ Python tracker <https://bugs.python.

[issue37491] IndexError in get_bare_quoted_string

2019-07-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: To avoid such questions, bug reports should contain exception messages and usually at least some of the tracebacks. >>> ''[0] Traceback (most recent call last): File "", line 1, in ''[0] IndexError: strin

[issue37491] IndexError in get_bare_quoted_string

2019-07-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: Also, quotes should be attributed to a file and patch snipped should indicate the target. As for the bug, the author(s) of the expressions "value[1:]" and "value[0]" presumably *expected* value to initially have length 2 so that it wo

[issue37530] IDLE: simplify, optimize, and clean up code context

2019-07-09 Thread Terry J. Reedy
New submission from Terry J. Reedy : Issue for Tal's PR 14675, dependency of #33610. 1. Only create CodeContext instances for "real" editors windows, but not e.g. shell or output windows. - Previously, were created but never activated because menu item deactivated. This is

[issue33610] IDLE: Make multiple improvements to CodeContext

2019-07-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: #37530 addresses I2, events (Tal, see msg319241 above). I considered this to be about next in priority. It also does some I1 cleanup. In that list, the 2nd M3 should be M4. The comment "D1 is PR 7579" should have referred to PR 7597, merged

[issue26806] IDLE not displaying RecursionError tracebacks and hangs

2019-07-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 6aeb2fe606408aae14c246470794f1303b3be812 by Terry Jan Reedy in branch 'master': bpo-26806: IDLE should run without docstrings (#14657) https://github.com/python/cpython/commit/6aeb2fe606408aae14c246470794f1

[issue26806] IDLE not displaying RecursionError tracebacks and hangs

2019-07-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset b82188d9bad1774624cb1788dbdec2f0d7d65688 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.8': bpo-26806: IDLE should run without docstrings (GH-14657) (GH-14677) https://github.com/python/cpyt

[issue26806] IDLE not displaying RecursionError tracebacks and hangs

2019-07-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset f54f062f68ac82fc3e7c92345b4d5fbe2534dc84 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.7': bpo-26806: IDLE should run without docstrings (GH-14657) (GH-14678) https://github.com/python/cpyt

[issue30663] IDLE: Add lineno sidebar to editor window

2019-07-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: Oakley's patch was intentionally very general, allowing line number heights to vary because of different fonts, font sizes, or widget inclusions. This required positioning line numbers by pixel (hence canvas) and accommodating line size changes even i

[issue37524] IDLE error on closing 3.8+ debug build

2019-07-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: One time after doing something unusual with IDLE (editing theme?, not sure) I did not get message on exit. But next time, back again. -- ___ Python tracker <https://bugs.python.org/issue37

[issue36390] IDLE: Refactor formatting methods from editor

2019-07-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: I believe I meant the opposite of what I said, which fortunately is what Tal did. PR 14500 is the one I looked at and commented on and the name change in PR 14500 is what needed to be included in PR 12481 (done). I would like to retitle this issue '

[issue36390] IDLE: Refactor formatting methods from editor

2019-07-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: When this is merged, I will open a format menu master issue listing todos. Dependencies will include 4 issues, #24817, #5150 (two items), #18583 (with patch), and #23367 (with patch), other than #36219, follow-up code revisions, and revising README.txt

[issue37524] IDLE error on closing 3.8+ debug build

2019-07-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: I still see it after update and rebuild. What could be different? An error in one of my files? -- ___ Python tracker <https://bugs.python.org/issue37

[issue37524] IDLE error on closing 3.8+ debug build

2019-07-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: "Exception ignored" is not produced by IDLE, and we have seen this before. multicall, line 29 says: # In 3.4, if no shell window is ever open, the underlying Tk widget is # destroyed before .__del__ methods here are called. The following #

[issue37524] IDLE error on closing 3.8+ debug build

2019-07-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: Possible sweep-more-under-the-rug fix for both current issues: add links and, after current 'except tkinter.TclError', except AttributeError: pass -- ___ Python track

[issue37551] IDLE: Quitting with a new, unsaved editor window causes an exception

2019-07-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: I see the traceback I reported on #37524, whichever way I close. In both cases, EditorWindow.close is called and we get an AttributeError because a file has become None. close() calls maybesave before _close, so the exception I see happens before _close is

[issue37559] IDLE: Scrolling issues with code context shown

2019-07-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: I repeated Tal's experiment, on Windows, and added more. I list below multiple issues related to code context and scrolling, and possible solutions. 1: two geometry modes. After the text height is set on start up or by restore height, CC height is

[issue22121] Start IDLE from icon in a better place.

2019-07-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: Steve, there is a problem in both lines of this suggestion. if os.path.normcase(os.getcwd()) == os.path.normcase(sys.prefix): os.chdir(get_default_location(sys.platform)) On my 3.8 repository build, >>> import os; os.getcwd() 'F:\\de

[issue22121] Start IDLE from icon in a better place.

2019-07-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- assignee: -> terry.reedy ___ Python tracker <https://bugs.python.org/issue22121> ___ ___ Python-bugs-list mailing list Un

[issue37559] IDLE: Scrolling issues with code context shown

2019-07-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: Whereas I found the fixed size to be much less usable. The default of 3 lines was too few and often useless when context is needed whereas a realistic size of, say, 8, wasted too much space too much of the time. I might prefer deleting the feature to

[issue34788] ipaddress module fails on rfc4007 scoped IPv6 addresses

2019-07-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: FWIW: Marking Component: Documentation means that the issue is only about changing the doc. Hence the auto-assignment to the nebulous docs group, which no longer exists in the form it once did. Enhancement issues nearly always need a doc change but are

[issue37530] IDLE: simplify, optimize, and clean up code context

2019-07-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: PR 14030 for #17535 (line numbers) also has code for 1. I want to merge this first, and fix-up the other. Changing context font at the same time as the text font, instead of up to 1 second later, eliminates a visual glitch and is a user-visible improvement

[issue33610] IDLE: Make multiple improvements to CodeContext

2019-07-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: I2: replace font/hightlight loop with notification and immediate change instead of a delay is a bugfix. In testing PR 14675 for #37530 I discovered a bug. 'Show' always shows a single blank line, as if the top visible line were the top line o

[issue37559] IDLE: Scrolling issues with code context shown

2019-07-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: 'at least' means 'get something working, then consider expanding'. The scrollwheel is tougher without built-in start/stop events equivalent to press/release. We could, however, synthesize them. But I want to start with mouse butto

[issue37605] CI should not depend on gmane response

2019-07-16 Thread Terry J. Reedy
New submission from Terry J. Reedy : On Travis, 'Documentation tests' passing is apparently required. Line 23 of nntplib.rst is ">>> s = NNTP('news.gmane.org')" I use gmane and occasional failures to respond are routine. Being able to merge should

[issue27452] IDLE: Cleanup config code

2019-07-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset f8d4cc7dbbf54b9c5435c3080582a4aa421a067d by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-27452: IDLE: Cleanup config.py code (GH-14577) https://github.com/python/cpython/commit/f8d4cc7dbbf54b9c5435c3080582a4

[issue27452] IDLE: Cleanup config code

2019-07-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: As near as I can tell, 'python file.py' results in absolute __file__ in 3.9 versus still relative in 3.8. -- ___ Python tracker <https://bugs.python.o

[issue22121] Start IDLE from icon in a better place.

2019-07-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: An implementation note mostly to myself: In 3.8 and before, 'python relative/path/to/file.py' results in the __file__ attribute of the main module being the relative path, and a possibly unnormalized full path is os.curdir + __file__. I believe

[issue27452] IDLE: Cleanup config code

2019-07-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 178f09f8b7d25348d46751a774666dd4ec32f3e6 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.8': bpo-27452: IDLE: Cleanup config.py code (GH-14577) (GH-14802) https://github.com/python/cpython/commit/178f09f8b7d25348d46751a774666d

[issue27452] IDLE: Cleanup config code

2019-07-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset efd23a199b1415a9850a914d525a1e5711fdd6d8 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.7': bpo-27452: IDLE: Cleanup config.py code (GH-14577) (GH-14803) https://github.com/python/cpython/commit/efd23a199b1415a9850a914d525a1e

[issue27452] IDLE: Cleanup config code

2019-07-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks for preparing the PR. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7 ___ Python tracker <https://bugs.python.or

[issue36390] IDLE: Refactor formatting methods from editor

2019-07-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 82494aa6d947c4a320c09c58fe0f100cdcf7af0b by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-36390: IDLE: Combine region formatting methods. (GH-12481) https://github.com/python/cpython/commit/82494aa6d947c4a320c09c58fe0f10

[issue36390] IDLE: Refactor formatting methods from editor

2019-07-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 1fc43a3fafd22eb20832459654fd125f12aa3738 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.8': bpo-36390: IDLE: Combine region formatting methods. (GH-12481) (GH-14811) https://github.com/python/cpyt

[issue36390] IDLE: Refactor formatting methods from editor

2019-07-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 093e9b1268f21624a09777818903f1088c674689 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.7': bpo-36390: IDLE: Combine region formatting methods. (GH-12481) (GH-14812) https://github.com/python/cpyt

[issue36390] IDLE: Refactor formatting methods from editor

2019-07-17 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +14621 pull_request: https://github.com/python/cpython/pull/14827 ___ Python tracker <https://bugs.python.org/issue36

[issue36390] IDLE: Move formatting functions into new format module.

2019-07-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: The new PR moves the remaining Format functions to format.py. I only edited enough to make things work. I did not add tests for the 2 indent methods. They only change future indents, leaving existing indents as it. They need change, possibly elimination

[issue36390] IDLE: Move formatting functions into new format module.

2019-07-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 1b3892243433da7eae7f5f3a4f98f13d309c8926 by Terry Jan Reedy in branch 'master': bpo-36390: Gather IDLE Format menu functions into format.py (#14827) https://github.com/python/cpython/commit/1b3892243433da7eae7f5f3a4f98f1

[issue36390] IDLE: Move formatting functions into new format module.

2019-07-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 028f1d2479a9a508e1f0bfcff42c20c348244549 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.8': bpo-36390: Gather IDLE Format menu functions into format.py (GH-14827) (GH-14829) https://github.com/python/cpyt

[issue36390] IDLE: Move formatting functions into new format module.

2019-07-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 5eb19fddd2d6c70ded14a91cf083681d750d593b by Terry Jan Reedy (Miss Islington (bot)) in branch '3.7': bpo-36390: Gather IDLE Format menu functions into format.py (GH-14827) (GH-14830) https://github.com/python/cpyt

[issue36390] IDLE: Move formatting functions into new format module.

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

[issue33610] IDLE: Make multiple improvements to CodeContext

2019-07-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset e0a1f8fb5c60886dbddf1a3ccb5d47576bdd43e2 by Terry Jan Reedy (Tal Einat) in branch 'master': bpo-33610: IDLE's code-context always shows current context immediately (GH-14821) https://github.com/python

[issue33610] IDLE: Make multiple improvements to CodeContext

2019-07-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 86eb5daaf31860da479e034d69e9a6d4f47a8eb6 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.8': bpo-33610: IDLE's code-context always shows current context immediately (GH-14821) (#14846) https://github.com/python

[issue37614] Pasteing 🌹into idle makes it crash

2019-07-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: As said multiple times on #13153, IDLE exits with a traceback that is visible when it is started from a command line (python -m idlelib). It usually ends with File "F:\dev\3x\lib\tkinter\__init__.py", line 1420, in mainloop self.tk.

[issue13153] IDLE 3.x on Windows exits when pasting non-BMP unicode

2019-07-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: Closed #37614 in favor of this. We now have only Python with FSR and mostly only tcl 8.6 to worry about. But I presume the Windows clipboard still uses uft-16le. Experimenting with pasting 𐒢 or '𐒢', I usually get the 'ed' message

[issue29446] Improve tkinter 'import *' situation

2019-07-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: I agree that for python x.y, the names imported by 'import *' should be fixed and *not* depend on other imports. -- versions: +Python 3.9 -Python 2.7, Python 3.5, Python 3.6, Python 3.7 ___ Python track

[issue3726] Allow ', ' delimiters in logging.config.fileConfig()

2019-07-20 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -14658 ___ Python tracker <https://bugs.python.org/issue3726> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37605] CI should not depend on gmane response

2019-07-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: gmane was down awhile yesterday, so another merge (temporarily) blocked because of this. If either of you knows how to fix this, please do so. -- ___ Python tracker <https://bugs.python.org/issue37

[issue37627] Minor improvements to IDLE's "Run Customized"

2019-07-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 35b87e6001bd991f625abe305951c77ddeb9a9c5 by Terry Jan Reedy (Ngalim Siregar) in branch 'master': bpo-37627: Initialize IDLE Custom Run dialog with previous entries (#14870) https://github.com/python/cpyt

[issue37627] Minor improvements to IDLE's "Run Customized"

2019-07-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +14668 pull_request: https://github.com/python/cpython/pull/14883 ___ Python tracker <https://bugs.python.org/issue37

[issue1346874] httplib simply ignores CONTINUE

2019-07-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: -terry.reedy versions: -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker <https://bugs.python.org/issue1346

[issue37644] Sphinx (Travis doc build) is blocking merging

2019-07-21 Thread Terry J. Reedy
New submission from Terry J. Reedy : One of the required CI tests is a Travis doc build, even if a PR does not touch any doc file. The following failure appears to be deterministic on master and 3.8. A 3.7 backport passed. It has happened multiple times on multiple PRs today. Example

[issue37644] Sphinx (Travis doc build) is blocking merging

2019-07-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +14672 pull_request: https://github.com/python/cpython/pull/14887 ___ Python tracker <https://bugs.python.org/issue37

[issue37644] Sphinx (Travis doc build) is blocking merging

2019-07-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: Although the error message says line 267, the suspicious line is on 273 for the copies in my repository on windows. If 267 does not work, I will revise and merge my overlapping PR that removes the number. Most of the entries in susp-ignored.csv do not

[issue37627] Minor improvements to IDLE's "Run Customized"

2019-07-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 4214f1ec3b3c73badd639229eff81eb5e57b82ec by Terry Jan Reedy in branch 'master': bpo-37627: Add acknowledgment (#14883) https://github.com/python/cpython/commit/4214f1ec3b3c73badd639229eff81e

[issue17535] IDLE editor line numbers

2019-07-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: Tal's 2 issues above have been resolved. 1. Line numbers are initially off by default but this can be reversed on the Settings General tab. 2. Line numbers can be shown and hidden for a window on the Option menu. The only bug I know of that must be

[issue17535] IDLE editor line numbers

2019-07-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: Ned, about window menus and Mac's single menu: tk and macOS work together to switch the menu to the menu of a window that becomes active. I opened two editor windows and clicked 'Show Code Context' in just one of them. The menu then

[issue36595] IDLE: Add search to textview.ViewWindow

2019-07-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: If a ViewWindow has more that 24 lines, then it has a button bar at the bottom that currently has one button -- [Close]. 1. Make the bar permanent, regardless of size. The next steps are to adapt the editor code for Find. 2. Add another button [Search] or

[issue29446] Improve tkinter 'import *' situation

2019-07-23 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +14693 pull_request: https://github.com/python/cpython/pull/14919 ___ Python tracker <https://bugs.python.org/issue29

[issue29446] Improve tkinter 'import *' situation

2019-07-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset c6fd6c83b70df76421d05a7628367e64a2f83589 by Terry Jan Reedy in branch 'master': bpo-29446: IDLE -- add explicit imports (GH-14919) https://github.com/python/cpython/commit/c6fd6c83b70df76421d05a7628367e

[issue29446] Improve tkinter 'import *' situation

2019-07-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset fc63d5a361f7d20282019cad84336a242c124267 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.8': bpo-29446: IDLE -- add explicit imports (GH-14919) (GH-14920) https://github.com/python/cpython/commit/fc63d5a361f7d20282019cad84336a

[issue29446] Improve tkinter 'import *' situation

2019-07-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset aee260f1c4d32bf67edec209d949294d4dc403c1 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.7': bpo-29446: IDLE -- add explicit imports (GH-14919) (#14921) https://github.com/python/cpython/commit/aee260f1c4d32bf67edec209d94929

[issue17535] IDLE editor line numbers

2019-07-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: A note on the first 3 comments in msg223086 of 2014-07-15. 1. Canvas versus Text: The prototype posted by Brian Oakley on SO had to use a Canvas because it was meant to work even with texts with multiple fonts and in-line widgets. IDLE's editor, int

[issue17535] IDLE editor line numbers

2019-07-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: After-thought test 2: proportional fonts* work fine. Nearly all have monospaced digits, with extra space around '1' if there is no bottom bar. So those also have nicely aligned right-justified columns in the sidebar. And the one font I

[issue35771] IDLE: Fix tooltip Hovertiptest failure

2019-07-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: I had forgotten about this, but by coincidence, it occurred again today, on 'x86 Windows7 3.7' after PR-14919 was merged. This may be the same machine as I might have left '7' off 'Windows' in the original report. The 'wi

[issue37628] IDLE: Fix Font sample (config dialog) geometry

2019-07-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: I consider it a bug for *IDLE* to place and size windows so that the bottom of the window is hidden. (If users, perhaps temporarily, move a window down so that the bottom is hidden, that is their business.) This is especially bad for the Settings dialog

[issue29446] Improve tkinter 'import *' situation

2019-07-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 76b645124b3aaa34bc664eece43707c01ef1b382 by Terry Jan Reedy (Flavian Hautbois) in branch 'master': bpo-29446: tkinter 'import *' only imports what it should (GH-14864) https://github.com/p

[issue29446] Improve tkinter 'import *' situation

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

[issue37628] IDLE: Fix Font sample (config dialog) geometry

2019-07-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: And maybe a horizontal scroll. In any case, line wrap should be off. Feel free to whip up a minimal change PR that we can merge before Monday. -- ___ Python tracker <https://bugs.python.org/issue37

[issue17535] IDLE editor line numbers

2019-07-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: The current right margin is 1 pixel. Let's try making it 2. -- ___ Python tracker <https://bugs.python.org/issue17535> ___ ___

[issue17535] IDLE editor line numbers

2019-07-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 46ebd4a6a22431ce9676546d2bbe5a6dcd1cc1c1 by Terry Jan Reedy (Tal Einat) in branch 'master': bpo-17535: Increase line number horizontal padding by 2 pixels (GH-14959) https://github.com/python/cpyt

<    43   44   45   46   47   48   49   50   51   52   >