[issue37326] Python distributions do not contain libffi license

2019-06-17 Thread Ammar Askar
Ammar Askar added the comment: LICENSE.txt only contains Python's licensing information. You can find all the external licenses in https://docs.python.org/3/license.html?highlight=libffi#libffi On Windows, this is also distributed as part of Doc/pythonXXX.chm If you don't think this is suff

[issue37326] Python distributions do not contain libffi license

2019-06-17 Thread Gregory Szorc
Gregory Szorc added the comment: FWIW LICENSE.txt on Windows contains licenses for additional projects starting on line 258 (at least in CPython 3.7.3), which contains the section header "Additional Conditions for this Windows binary build". But, the Doc/pythonXXX.chm does indeed contain lib

[issue37326] Windows LICENSE.txt do not contain libffi license

2019-06-17 Thread Ammar Askar
Ammar Askar added the comment: Oh whoops, I was looking at my py2 folder. Let's reopen in that case. -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware resolution: not a bug -> stage: resolved -> status: closed -> open title: Python distributions do not con

[issue37317] asyncio gather doesn't handle custom exceptions that inherit from BaseException

2019-06-17 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: On master this returns the below output. Maybe this change in master was due to 431b540bf79f0982559b1b0e420b1b085f667bb7 (issue32528) that is available with 3.8+ ? ./python.exe ../backups/bpo37317.py BEGIN THIS DONE: 1 THIS DONE: 2 THIS DONE: 3 THI

[issue37295] Possible optimizations for math.comb()

2019-06-17 Thread Tim Peters
Tim Peters added the comment: In real life, I expect 99.999%+ of calls will be made with small arguments, so (1) is worth it. I like Mark's suggestion to use uint64_t so the acceptable range doesn't depend on platform. At least in the world I live in, 32-bit boxes are all but extinct anywa

[issue37327] python re bug

2019-06-17 Thread aixian le
New submission from aixian le : the code is: banner = "HTTP/1.0 404 Not Found\r\nDate: Mon, 17 Jun 2019 13:15:44 GMT\r\nServer:\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n404 Not Found\r\n404 Not Found\r\nThe requested URL /PSIA/index was not found on this server.

[issue37328] remove deprecated HTMLParser.unescape

2019-06-17 Thread Inada Naoki
New submission from Inada Naoki : HTMLParser.unescape was removed once but resurrected because of distlib depended on it. (see https://bugs.python.org/issue19688 ) Since it is deprecated from 3.4, it's safe to remove. -- components: Library (Lib) messages: 345954 nosy: inada.naoki pr

[issue37327] python re bug

2019-06-17 Thread aixian le
aixian le added the comment: the code is: banner = "HTTP/1.0 404 Not Found\r\nDate: Mon, 17 Jun 2019 13:15:44 GMT\r\nServer:\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n404 Not Found\r\n404 Not Found\r\nThe requested URL /PSIA/index was not found on this server.\r

[issue37328] remove deprecated HTMLParser.unescape

2019-06-17 Thread Inada Naoki
Change by Inada Naoki : -- keywords: +patch pull_requests: +14023 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14186 ___ Python tracker ___

[issue37295] Possible optimizations for math.comb()

2019-06-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > Me, I'd wait for them to complain, and encourage _them_ to learn something > useful by writing a patch to fix it :-) +1! -- ___ Python tracker

<    1   2   3