[issue33709] test.support.FS_NONASCII returns incorrect result in Windows with non-US locale

2018-12-06 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 29a4cbff92862207eb9df9a970b3636b8b06ff5d by Serhiy Storchaka (native-api) in branch '2.7': [2.7] bpo-33709: test_ntpath and test_posixpath fail in Windows with ACP!=1252. (GH-7278) (GH-7279)

[issue34172] multiprocessing.Pool and ThreadPool leak resources after being deleted

2018-12-06 Thread STINNER Victor
STINNER Victor added the comment: I reverted the change in 2.7, 3.6, 3.7 and master branches because it introduces a regression and we are very close to a release: https://mail.python.org/pipermail/python-dev/2018-December/155920.html I don't want to have the pressure to push a quick fix. I

[issue35384] The repr of ctypes.CArgObject fails for non-ascii character

2018-12-06 Thread miss-islington
miss-islington added the comment: New changeset f9d8b686285926c985cfe88a8392a9a497c0a916 by Miss Islington (bot) in branch '3.6': bpo-35384: The repr of ctypes.CArgObject no longer fails for non-ascii character. (GH-10863)

[issue35384] The repr of ctypes.CArgObject fails for non-ascii character

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

[issue30835] AttributeError when parsing multipart email with invalid non-decodable Content-Transfer-Encoding

2018-12-06 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- stage: -> test needed versions: +Python 3.8 -Python 3.5 ___ Python tracker ___ ___

[issue35378] multiprocessing.Pool.imaps iterators do not maintain alive the multiprocessing.Pool objects

2018-12-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: Let's step back a bit here. This kind of code has never been supported. As Victor says, we should be careful not to add any potential sources of reference cycles. The reason the code originally "worked" is that it actually leaked the Pool object (and

[issue35384] The repr of ctypes.CArgObject fails for non-ascii character

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

[issue35384] The repr of ctypes.CArgObject fails for non-ascii character

2018-12-06 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 3ffa8b9ba190101f674a0e524e482a83ed09cccd by Serhiy Storchaka in branch 'master': bpo-35384: The repr of ctypes.CArgObject no longer fails for non-ascii character. (GH-10863)

[issue35384] The repr of ctypes.CArgObject fails for non-ascii character

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

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

2018-12-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset af1f977575331623547d53247d99be8953a13b9f by Terry Jan Reedy in branch '3.6': [3.6] bpo-34162: Update idlelib NEWS to 2018-12-05 (GH-10964) (GH-10979) https://github.com/python/cpython/commit/af1f977575331623547d53247d99be8953a13b9f --

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

2018-12-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset de8037db8c203ca0a1bf549f690230d5e7b8429e by Terry Jan Reedy in branch '3.7': [3.7] bpo-34162: Update idlelib NEWS to 2018-12-05 (GH-10964) (GH-10980) https://github.com/python/cpython/commit/de8037db8c203ca0a1bf549f690230d5e7b8429e --

Re: tkinter resizable text with grid

2018-12-06 Thread Peter Otten
Paulo da Silva wrote: > Does anybody know why this code does not expand the text widget when I > increase the window size (with mouse)? I want height and width but as > minimum (or may be initial) size. > > import tkinter as tk > > class App: > def __init__(self,master): >

<    1   2