[issue36324] Inverse cumulative normal distribution function

2019-03-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks Steven. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue36356] Failure to build with address sanitizer

2019-03-18 Thread Ben Harper
New submission from Ben Harper : Trying to run make after './configure --with-address-sanitizer --with-pydebug' fails with leak of locale string -- components: Build messages: 338315 nosy: btharper priority: normal severity: normal status: open title: Failure to build with address sani

[issue36356] Failure to build with address sanitizer

2019-03-18 Thread Ben Harper
Change by Ben Harper : -- keywords: +patch pull_requests: +12380 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue36356] Failure to build with address sanitizer

2019-03-18 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue36340] 3.7.3rc1 Install Certificates fails on macOS

2019-03-18 Thread Ned Deily
Ned Deily added the comment: At first glance, I'm not sure what happened here; we do try to make Install Certificates as bulletproof as possible. As you probably know, clicking on the file causes it to be opened with the macOS application that Launch Services determines is appropriate. By

[issue26789] Please do not log during shutdown

2019-03-18 Thread Peer Sommerlund
Change by Peer Sommerlund : -- nosy: +Peer Sommerlund ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue36357] Build 32bit Python on Windows with SSE2 instruction set

2019-03-18 Thread Ma Lin
New submission from Ma Lin : On windows, it seems 32bit builds (3.7.2/3.8.0a2) don't using SSE2 sufficiently. I test on 3.8 branch, python38.dll only uses XMM register 28 times. The official build is the same. After enable this option, python38.dll uses XMM register 11,704 times. --- a/PCbuil

[issue36315] Unable to install Python 3.7.2

2019-03-18 Thread Steve Dower
Steve Dower added the comment: In your %TEMP% directory, there should be at least one more log file (probably only one other) alongside the one you attached. It will have "core_JustForMe" in the title. Could you find and attach this file? It has the actual cause of the error in it.

[issue36340] 3.7.3rc1 Install Certificates fails on macOS

2019-03-18 Thread Dima Tisnek
Dima Tisnek added the comment: I've figured out what's going on: When Installer runs, it asks for user's su passwords, does a bunch of stuff, and then starts "Running package scripts". While it's "running scripts", towards the end of that process, with "about one minute remaining", the Find

[issue35859] Capture behavior depends on the order of an alternation

2019-03-18 Thread Ma Lin
Change by Ma Lin : -- pull_requests: +12381 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue35859] Capture behavior depends on the order of an alternation

2019-03-18 Thread Ma Lin
Ma Lin added the comment: I guess PR12427 is mature enough for review, I have been working on it these days. You may review these commits one by one, commit message is review guide. https://github.com/python/cpython/pull/12427/commits Maybe you will need two or three days to understand it, a

[issue36358] bool type does not support True or False as command line argv

2019-03-18 Thread Abhinav Gupta
New submission from Abhinav Gupta : If I have a type=bool argument in argparser and I provide the value for it using command-line, it always evaluates to True. Is this expected? Is there no alternative to using '' for False and any other string for True? -- components: Library (Lib) m

<    1   2   3