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

2019-10-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: After remembering to recompile (sorry), the test passes and clipgoard_get returns the rocket. Very nice, thank you. -- ___ Python tracker

[issue38368] Crash when subclassing ctypes.Union

2019-10-04 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I am adding 3.8 regression since the report says 3.8.0b4 works and segfaults with 3.8.0RC1. -- keywords: +3.8regression nosy: +lukasz.langa, xtreak ___ Python tracker

[issue35212] Expressions with format specifiers in f-strings give wrong code position in AST

2019-10-04 Thread Arminius
Arminius added the comment: There is another instance of incorrectly reported offsets in f-strings, in this case affecting multi-line strings. Example: ( f'aaa{foo}bbb' f'ccc{bar}ddd' f'eee{baz}fff' ) Relevant part of the syntax tree: JoinedStr( lineno=2, col_offset=4,

[issue38354] Fix for bug 30378 regressed SysLogHandler by making it resolve addresses at initialization instead of in `.emit()`

2019-10-04 Thread Vinay Sajip
Vinay Sajip added the comment: This could perhaps be handled by just swallowing errors in the constructor (as is done for Unix sockets, for example) and trying to connect in emit() if there is no connection. Not sure I want to go down the caching route - it complicates things for what is a

[issue38368] Crash when subclassing ctypes.Union

2019-10-04 Thread Doug O'Riordan
New submission from Doug O'Riordan : Ran into Segfaults while trying to use pysnmp with 3.8.0rc1. The code is running fine on 3.8.0b04. $ python3.8 Python 3.8.0rc1 (default, Oct 2 2019, 14:15:18) [GCC 4.8.5 20150623 (Red Hat 4.8.5-36)] on linux Type "help", "copyright", "credits" or "license"

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread Vinay Sajip
Change by Vinay Sajip : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 2.7 ___ Python tracker ___

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 4f82a53c5d34df00bf2d563c2417f5e2638d1004 by Vinay Sajip (Miss Islington (bot)) in branch '3.7': bpo-38235: Correct some arguments names in logging documentation (GH-16571) (GH-16577)

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 3af2733a8265a2685b2c0466a58a66e544a81c64 by Vinay Sajip (Miss Islington (bot)) in branch '3.8': bpo-38235: Correct some arguments names in logging documentation (GH-16571) (GH-16576)

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

2019-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: What is the result of new tests? python.bat -m test -v -uall test_tk -m test_clipboard* -- ___ Python tracker ___

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +16169 pull_request: https://github.com/python/cpython/pull/16577 ___ Python tracker ___

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +16168 pull_request: https://github.com/python/cpython/pull/16576 ___ Python tracker ___

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 3142c667b50254daaa28f22c79bdda177136bd03 by Vinay Sajip (Ashley Whetter) in branch 'master': bpo-38235: Correct some arguments names in logging documentation (GH-16571)

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

2019-10-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: What do you mean by fixed? After deleting and remaking a pr_16545 branch, I see the same result for clipboard_get. -- ___ Python tracker

[issue38337] inspect: getmembers calls properties

2019-10-04 Thread Jonas Drotleff
Jonas Drotleff added the comment: Oh, yes I see what you mean. That's my fault, it seems like I copied the wrong line. Sorry. But the important piece is the 'var' attribute. Sorry for the confusion. -- ___ Python tracker

[issue38366] dataclasses: generate the _hash_action table from the if-else tree

2019-10-04 Thread Raymond Hettinger
Raymond Hettinger added the comment: I concur with Eric. The original code is preferable. -- nosy: +rhettinger ___ Python tracker ___

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread Raymond Hettinger
Change by Raymond Hettinger : -- assignee: rhettinger -> vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list

<    1   2