[issue36152] IDLE: Remove close_when_done from colorizer close()

2019-02-28 Thread Cheryl Sabella
Change by Cheryl Sabella : -- assignee: cheryl.sabella -> terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue33944] Deprecate and remove pth files

2019-02-28 Thread Ivan Pozdeev
Change by Ivan Pozdeev : -- pull_requests: +12117 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue36153] Freeze support documentation is misleading.

2019-02-28 Thread Sridhar Iyer
New submission from Sridhar Iyer : The documentation on freeze_support listed on https://docs.python.org/3/library/multiprocessing.html need to be fixed This mentions: "Calling freeze_support() has no effect when invoked on any operating system other than Windows. In addition, if the module i

[issue33944] Deprecate and remove pth files

2019-02-28 Thread Steve Dower
Steve Dower added the comment: The sitecustomize.py file is totally available, and the only limitation there is packages can't inject themselves into it on installation. And if you want to trigger it on a package import then you totally can (though there's *another* discussion about that bei

[issue29571] test_re is failing when local is set for `en_IN`

2019-02-28 Thread STINNER Victor
STINNER Victor added the comment: AppVeyor failed on the backport to Python 3.7 of my fix: PR 12108. Ok, now I understand the bug in Python 3.7. locale.getlocale(locale.LC_CTYPE)[1] returns None because Python doesn't set LC_CTYPE to the user preferred locale. I'm not sure of which locale is

[issue36152] IDLE: Remove close_when_done from colorizer close()

2019-02-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks for digging up the history. I would have approved without, but feel better with. Using the colorizer close method to close a window seemed flakey to me, and it seems someone else thought the same long ago. I suspect the machinery was left to avoid

[issue36153] Freeze support documentation is misleading.

2019-02-28 Thread Windson Yang
Windson Yang added the comment: IIUC, your script (using Sklearn/tensorflow) will cause an infinite loop when building with pyinstaller. Would you mind upload an example script so I can try to reproduce it? -- nosy: +Windson Yang ___ Python tracke

[issue29539] [smtplib] collect response data for all recipients

2019-02-28 Thread Windson Yang
Windson Yang added the comment: sls, are you working on this feature now? -- nosy: +Windson Yang ___ Python tracker ___ ___ Python-

[issue36142] Add a new _PyPreConfig step to Python initialization to setup memory allocator and encodings

2019-02-28 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +12118 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36142] Add a new _PyPreConfig step to Python initialization to setup memory allocator and encodings

2019-02-28 Thread STINNER Victor
STINNER Victor added the comment: New changeset f684d83d86e1990784816d4b243d724e6ab8304f by Victor Stinner in branch 'master': bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111) https://github.com/python/cpython/commit/f684d83d86e1990784816d4b243d724e6ab8304f -- ___

[issue36142] Add a new _PyPreConfig step to Python initialization to setup memory allocator and encodings

2019-02-28 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +12119 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36122] Second run of 2to3 continues to modify output

2019-02-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> not a bug type: enhancement -> behavior ___ Python tracker ___ ___ Python-bugs-list ma

[issue36075] python 2to3 conversion tool is generating file with extra line for every input line

2019-02-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: I suspect that this may not be a cpython issue, in which case, it should be closed here as 'not-a-bug'. I suggest that you present this on python-list and ask 'where is the bug most likely to be?' You should get more readers there. -- nosy: +terry.

[issue36075] python 2to3 conversion tool is generating file with extra line for every input line

2019-02-28 Thread Saba Kauser
Saba Kauser added the comment: Could you please share the URL -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue36066] Add `empty` block to `for` and `while` loops.

2019-02-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: Syntax changes need PEPs. By default, syntax changes are rejected. This is especially true for new keywords, as any acceptible word will already be in use, and hence its introduction *will* break code. We are still having issues over having temporarily mad

[issue36075] python 2to3 conversion tool is generating file with extra line for every input line

2019-02-28 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: @sabakauser You can find python-list mailing list here : https://mail.python.org/mailman/listinfo/python-list -- nosy: +xtreak ___ Python tracker

[issue36154] Python quit unexpectedly error

2019-02-28 Thread kellena
New submission from kellena : I'm on a Mac running Mojave, version 10.14.3. I installed Python 3.7. I'm now getting a "Python quit unexpectedly" error consistently and I don't know why or if I did something to cause it. I've tried uninstalling and reinstalling but I'm still getting the error.

[issue36072] str.translate() behaves differently for ASCII-only and other strings

2019-02-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: I agree. The fact the CPython attempts to optimize all_ascii.translate(table) is a CPython implementation detail, not a language feature. -- assignee: -> docs@python components: +Documentation nosy: +docs@python, terry.reedy resolution: -> not a bu

[issue29539] [smtplib] collect response data for all recipients

2019-02-28 Thread David Ford (FirefighterBlu3)
David Ford (FirefighterBlu3) added the comment: i have a fully built patch and personally tested (i use it 24/7) but haven't done test_* yet as was requested On Thu, Feb 28, 2019 at 9:16 PM Windson Yang wrote: > > Windson Yang added the comment: > > sls, are you working on this feature now?

[issue36018] Add a Normal Distribution class to the statistics module

2019-02-28 Thread Raymond Hettinger
Change by Raymond Hettinger : -- pull_requests: +12120 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue36018] Add a Normal Distribution class to the statistics module

2019-02-28 Thread miss-islington
miss-islington added the comment: New changeset 9add4b3317629933d88cf206a24b15e922fa8941 by Miss Islington (bot) (Raymond Hettinger) in branch 'master': bpo-36018: Add documentation link to "random variable" (GH-12114) https://github.com/python/cpython/commit/9add4b3317629933d88cf206a24b15e92

[issue36075] python 2to3 conversion tool is generating file with extra line for every input line

2019-02-28 Thread Saba Kauser
Saba Kauser added the comment: Thanks Karthikeyan! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue33608] [subinterpreters] Add a cross-interpreter-safe mechanism to indicate that an object may be destroyed.

2019-02-28 Thread David Bolen
David Bolen added the comment: I suspect changes for this issue may be creating test_io failures on my windows builders, most notably my x86 Windows 7 builder where test_io has been failing both attempts on almost all builds. It fails with a lock failure during interpreter shutdown, and com

[issue36103] Increase shutil.COPY_BUFSIZE

2019-02-28 Thread Inada Naoki
Change by Inada Naoki : -- keywords: +patch pull_requests: +12121 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-lis

[issue36155] ./python -m test -m test_gc fails

2019-02-28 Thread Karthikeyan Singaravelan
New submission from Karthikeyan Singaravelan : I am not sure of the exact cause about this failure but `./python.exe -m test -m test_gc` fails though `./python.exe -m test -v test_gc` passes. This test was recently added with 175421b58cc97a2555e474f479f30a6c5d2250b0 and issue36016. ./python.e

[issue33127] Python 2.7.14 won't build ssl module with Libressl 2.7.0

2019-02-28 Thread Larry Hastings
Larry Hastings added the comment: New changeset 56f8783e3e32ddc0cb84a96711e3861aea9895ac by larryhastings (Alex Viscreanu) in branch '3.5': [3.5] bpo-33127: Compatibility patch for LibreSSL 2.7.0 (GH-6210) (#10994) https://github.com/python/cpython/commit/56f8783e3e32ddc0cb84a96711e3861aea989

[issue34623] _elementtree.c doesn't call XML_SetHashSalt()

2019-02-28 Thread Larry Hastings
Change by Larry Hastings : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue36155] ./python -m test -m test_gc fails

2019-02-28 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: It seems that some collection from some other test is happening between the three calls to get_objects: self.assertIn(l, gc.get_objects(generation=0)) self.assertNotIn(l, gc.get_objects(generation=1)) self.assertNotIn(l, gc.get_objects(generation=2))

<    1   2