[issue42498] smtplib is glitchy after receive server code 500

2021-01-05 Thread Pandu E POLUAN
Pandu E POLUAN added the comment: The "problem" is that smtplib.SMTP does the following, in essence: 1. Open connection to server 2. Send EHLO 3. Read server response The PROXY injection causes a response from the server, but the response gets "cached" in the incoming TCP buffer. The injecti

[issue42508] macOS IDLE with Tk 8.6.10 in 3.9.1rc1 universal2 installer fails smoke test

2021-01-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset d05b470d6ad6dfe0d4933ffc3c5c1e2c03b390bd by Miss Islington (bot) in branch '3.8': bpo-42508: Keep IDLE running on macOS (GH-23577) (#23670) https://github.com/python/cpython/commit/d05b470d6ad6dfe0d4933ffc3c5c1e2c03b390bd -- _

[issue42508] macOS IDLE with Tk 8.6.10 in 3.9.1rc1 universal2 installer fails smoke test

2021-01-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: I believe that this issue is done. Please open a new one if more is needed. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker _

[issue32631] IDLE: revise zzdummy.py

2021-01-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset d82392facefe0564dd55aa2adf04bf21c704858d by Terry Jan Reedy in branch '3.9': [3.9] bpo-32631: IDLE: Enable zzdummy example extension module (GH-14491) https://github.com/python/cpython/commit/d82392facefe0564dd55aa2adf04bf21c704858d --

[issue42822] Missing backslashes in documentation for 3.8 and 3.9

2021-01-05 Thread Julien Palard
Change by Julien Palard : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue32631] IDLE: revise zzdummy.py

2021-01-05 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +22945 pull_request: https://github.com/python/cpython/pull/24115 ___ Python tracker ___ __

[issue32631] IDLE: revise zzdummy.py

2021-01-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: https://stackoverflow.com/questions/65567057/how-can-i-get-started-developing-extensions-for-python-idle prompted me to finish this enough to merge it. My intention was that in the absence of a selection, all lines should be prefixed, not just the current on

[issue32631] IDLE: revise zzdummy.py

2021-01-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset a087a97438e922fcace357ff4c29806ff65838d8 by Terry Jan Reedy in branch '3.8': [3.8] bpo-32631: IDLE: Enable zzdummy example extension module (GH-14491) https://github.com/python/cpython/commit/a087a97438e922fcace357ff4c29806ff65838d8 --

[issue32631] IDLE: revise zzdummy.py

2021-01-05 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue33944] Deprecate and remove code execution in pth files

2021-01-05 Thread László Kiss Kollár
Change by László Kiss Kollár : -- nosy: +lkollar ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue42828] Python readline module

2021-01-05 Thread Marco Franzo
New submission from Marco Franzo : It would be better to write at the end of the program this: os.system('stty sane') because when you import readline, at the end of program, the console remains unusable -- assignee: docs@python components: Documentation messages: 384379 nosy: docs@p

[issue42828] Python readline module

2021-01-05 Thread Steven D'Aprano
Steven D'Aprano added the comment: > when you import readline, at the end of program, the console remains unusable I cannot replicate that. I've been using readline in versions of Python starting from 2.4 to 3.9 and it has not left the console in an unusual state. Can you give an example of

[issue42829] get_type_hints throws for nested class with __future__ annotations

2021-01-05 Thread Svyatoslav
New submission from Svyatoslav : If a class X has nested class Y and class X has annotation Y AFTER the definition of Y, get_type_hints(X) throws NameError if import from future annotations is present. This is because get_type_hints looks only at mro of the class. Its namespace must be inclu

[issue42455] Add decorator_factory function to functools module

2021-01-05 Thread Nick Coghlan
Nick Coghlan added the comment: I think the idea is a plausible and well-presented suggestion, but I'm afraid I'm still going to agree with the view that we shouldn't add this. >From a maintainability point of view, *generically* detecting the difference >between "applied without parentheses

[issue39457] Add an autocommit property to sqlite3.Connection with a PEP 249 compliant manual commit mode and migrate

2021-01-05 Thread James Oldfield
James Oldfield added the comment: If this ever gets implemented, "autocommit" would be a terrible name for it. That word has a very specific meaning in SQLite, which is essentially the same as "not in a transaction started with BEGIN ...". At the moment, if you want to explicitly control whe

[issue42830] tempfile mkstemp() leaks file descriptors if os.close() is not called

2021-01-05 Thread Mieczysław Torchała
New submission from Mieczysław Torchała : tempfile mkstemp() documentation says: "Unlike TemporaryFile(), the user of mkstemp() is responsible for deleting the temporary file when done with it." mkstemp() returns a tuple: file_descriptor, file_path = mkstemp() Calling only os.unlink(file_pa

[issue42455] Add decorator_factory function to functools module

2021-01-05 Thread Nick Coghlan
Nick Coghlan added the comment: Sorry, I meant to include this comment as well: The other filter I applied here was "Could someone figure out the boilerplate code themselves in less time than it would take them to find, read, and understand the documentation for the new helper function?" I'

[issue42829] get_type_hints throws for nested class with __future__ annotations

2021-01-05 Thread Svyatoslav
Svyatoslav added the comment: > This is because get_type_hints looks only at mro of the class. Its namespace must be included too as locals < I'll correct myself. get_type_hints() looks at all entites of mro of a class. If globals are not defined, globals of an entity module are used. But if

[issue42823] Incorrect frame.f_lineno when frame.f_trace is set

2021-01-05 Thread Mark Shannon
Mark Shannon added the comment: New changeset ee9f98d9f4b881ee15868a836a2b99271df1bc0e by Mark Shannon in branch 'master': bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099) https://github.com/python/cpython/commit/ee9f98d9f4b881ee15868a836a2b99271df1bc0e -- _

[issue42823] Incorrect frame.f_lineno when frame.f_trace is set

2021-01-05 Thread Mark Shannon
Change by Mark Shannon : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue42681] Incorrect range checks/documentation in curses

2021-01-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 9b3a53a8264d4c469a3f3d8c037e74c010be3e5c by Serhiy Storchaka in branch '3.9': [3.9] bpo-42681: Fix test_curses failures related to color pairs (GH-24089) (GH-24113) https://github.com/python/cpython/commit/9b3a53a8264d4c469a3f3d8c037e74c010be

[issue41798] [C API] Revisit usage of the PyCapsule C API with multi-phase initialization API

2021-01-05 Thread Erlend Egeberg Aasland
Erlend Egeberg Aasland added the comment: Hai Shi, do you mind if I have a go at the socket module CAPI capsule? -- nosy: +erlendaasland ___ Python tracker ___ ___

[issue36543] Remove old-deprecated ElementTree features (part 2)

2021-01-05 Thread Petr Viktorin
Petr Viktorin added the comment: Let me just point out there's an official process for making incompatible changes now: https://www.python.org/dev/peps/pep-0387/#making-incompatible-changes A warning must be emitted (not just mentioned in docs) for two releases before a feature is removed.

[issue42681] Incorrect range checks/documentation in curses

2021-01-05 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +22946 pull_request: https://github.com/python/cpython/pull/24116 ___ Python tracker ___

[issue42831] IDLE fix colours for MacOS dark mode

2021-01-05 Thread E. Paine
New submission from E. Paine : Currently IDLE, in some places, uses predefined colours which assume it is in light mode. However, on the new Universal2 installers (I tested using 3.10.0a4) this causes issues, where this can no longer be assumed. Taking the "About IDLE" dialogue as an example,

[issue41798] [C API] Revisit usage of the PyCapsule C API with multi-phase initialization API

2021-01-05 Thread hai shi
hai shi added the comment: > Hai Shi, do you mind if I have a go at the socket module CAPI capsule? Welcome to join this bpo, you can enhance those extension modules if you like :) -- ___ Python tracker ___

[issue41798] [C API] Revisit usage of the PyCapsule C API with multi-phase initialization API

2021-01-05 Thread Erlend Egeberg Aasland
Erlend Egeberg Aasland added the comment: > Welcome to join this bpo, you can enhance those extension modules if you like > :) Thanks :) I'll take a look at socket first. -- ___ Python tracker

[issue41798] [C API] Revisit usage of the PyCapsule C API with multi-phase initialization API

2021-01-05 Thread Christian Heimes
Christian Heimes added the comment: PySocketModuleAPI.timeout_error now points to builtin TimeoutError exception. I'm also in the process of removing PySocketModuleAPI from _ssl.c. -- nosy: +christian.heimes ___ Python tracker

[issue41798] [C API] Revisit usage of the PyCapsule C API with multi-phase initialization API

2021-01-05 Thread Erlend Egeberg Aasland
Erlend Egeberg Aasland added the comment: > I'm also in the process of removing PySocketModuleAPI from _ssl.c. That's the only user of the API, right? In that case, I'll target _decimal instead. Hai Shi is working on _curses and _datetime, AFAIK. -- _

[issue42780] os.set_inheritable() fails for O_PATH file descriptors on Linux

2021-01-05 Thread cptpcrd
cptpcrd added the comment: I've put together some tests (patch attached). Should I PR this to python/cpython? -- Added file: https://bugs.python.org/file49721/set-inheritable-test.patch ___ Python tracker _

[issue39457] Add an autocommit property to sqlite3.Connection with a PEP 249 compliant manual commit mode and migrate

2021-01-05 Thread Géry
Géry added the comment: > If this ever gets implemented, "autocommit" would be a terrible name for it. > That word has a very specific meaning in SQLite, which is essentially the > same as "not in a transaction started with BEGIN ...". Yes if you are talking about SQLite, the database ENGINE:

[issue41798] [C API] Revisit usage of the PyCapsule C API with multi-phase initialization API

2021-01-05 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- pull_requests: +22947 pull_request: https://github.com/python/cpython/pull/24117 ___ Python tracker ___ __

[issue42681] Incorrect range checks/documentation in curses

2021-01-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset e2c847e0c518dd6c63a898b8265ba54b71548bd6 by Serhiy Storchaka in branch '3.8': [3.8] [3.9] bpo-42681: Fix test_curses failures related to color pairs (GH-24089) (GH-24113) (GH-24116) https://github.com/python/cpython/commit/e2c847e0c518dd6c63a

[issue27820] Possible bug in smtplib when initial_response_ok=False

2021-01-05 Thread Pandu E POLUAN
Change by Pandu E POLUAN : -- keywords: +patch pull_requests: +22948 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24118 ___ Python tracker ___ _

[issue36543] Remove old-deprecated ElementTree features (part 2)

2021-01-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This process is not new. The problem is that in this particular case warning will do more harm than removing the module. If we cannot just remove it, we should not introduce warning. It will be kept forever. --

[issue36543] Remove old-deprecated ElementTree features (part 2)

2021-01-05 Thread Petr Viktorin
Petr Viktorin added the comment: Should the process be changed? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue36543] Remove old-deprecated ElementTree features (part 2)

2021-01-05 Thread Christian Heimes
Christian Heimes added the comment: The process is fine. A deprecation warning will give users time to update code before it hits production. -- ___ Python tracker ___ __

[issue42681] Incorrect range checks/documentation in curses

2021-01-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Well, a simple documentation issue has grown into large and complex changes that fix several bugs. * Incorrect parameter name in color_pair(). * Incorrectly documented ranges for color and pair numbers. * Based on incorrect documentation, incorrect checks w

[issue42637] Python macos11.0 release note tkinter problems in news

2021-01-05 Thread E. Paine
Change by E. Paine : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bug

[issue42681] Incorrect range checks/documentation in curses

2021-01-05 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Thanks a lot Serhiy for the fantastic work! -- ___ Python tracker ___ ___ Python-bugs-list

[issue42832] classmethod change in 3.9 needs better documentation

2021-01-05 Thread Irit Katriel
New submission from Irit Katriel : The change in issue 19072 broke our code where a decorator assumes that __get__ is only called for instance methods. It might be worth adding this to What's new in 3.9. Also in the documentation: https://docs.python.org/3/library/functions.html#classmethod I

[issue19072] classmethod doesn't honour descriptor protocol of wrapped callable

2021-01-05 Thread Irit Katriel
Irit Katriel added the comment: I've created a followup issue re documentation of this change: issue42832 -- nosy: +iritkatriel ___ Python tracker ___

[issue42804] Unable to compile the cpython code x86 windows

2021-01-05 Thread Zachary Ware
Zachary Ware added the comment: It seems possible that the fetch of the Tcl/Tk binaries failed somehow; you can try removing the entire `externals` directory (or just anything in it that includes `tcl` or `tk`); you can use `PCbuild\get_externals.bat --clean` to do so. -- _

[issue42804] Unable to compile the cpython code x86 windows

2021-01-05 Thread Steve Dower
Steve Dower added the comment: If we can solve it, that would be better. The access denied error looks a bit like a build process (or previous Python build?) is still running that has locked one of the files. Restarting the PC is the easiest way to make sure nothing is using them, or you cou

[issue41818] Lib/pty.py major revision

2021-01-05 Thread Petr Viktorin
Change by Petr Viktorin : -- nosy: +petr.viktorin nosy_count: 11.0 -> 12.0 pull_requests: +22949 pull_request: https://github.com/python/cpython/pull/24119 ___ Python tracker _

[issue41818] Lib/pty.py major revision

2021-01-05 Thread Petr Viktorin
Petr Viktorin added the comment: I noticed an issue in one of the newly added tests; see GH-24119 -- ___ Python tracker ___ ___ Pyt

[issue42833] Lib/urllib/request.py: digest algorithm should be case insensitive

2021-01-05 Thread Pierre Tardy
Change by Pierre Tardy : -- components: +Library (Lib) status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue42794] test_nntplib fails on CI

2021-01-05 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +22950 pull_request: https://github.com/python/cpython/pull/22632 ___ Python tracker ___

[issue42833] Lib/urllib/request.py: digest algorithm should be case insensitive

2021-01-05 Thread Pierre Tardy
New submission from Pierre Tardy : original bug report: https://github.com/buildbot/buildbot/issues/5743 Twisted by default advertises its algorithm in lowercase, which is uncommon, but allowed by the spec. https://tools.ietf.org/html/rfc3230#section-4.1.1 python's request.py is only suppor

[issue40052] Incorrect pointer alignment in _PyVectorcall_Function() of cpython/abstract.h

2021-01-05 Thread Petr Viktorin
Petr Viktorin added the comment: New changeset 6e72ab909de58e89b5a7cd6899587e203cf129a3 by Miss Islington (bot) in branch '3.9': [3.9] bpo-40052: Fix alignment issue in PyVectorcall_Function() (GH-23999) (GH-24005) https://github.com/python/cpython/commit/6e72ab909de58e89b5a7cd6899587e203cf1

[issue42834] [subinterpreters] Convert "global" static variable caches in _json to heap variables

2021-01-05 Thread Ken Jin
New submission from Ken Jin : _json currently uses a few static locals for caching of PyUnicode and one Exception object. This patch aims to move them to the heap. Apologies if this isn't the right way to track subinterpreter issues, I took a look at issue36876 but it seemed like a meta issu

[issue40052] Incorrect pointer alignment in _PyVectorcall_Function() of cpython/abstract.h

2021-01-05 Thread Petr Viktorin
Change by Petr Viktorin : -- pull_requests: +22951 pull_request: https://github.com/python/cpython/pull/24120 ___ Python tracker ___ ___

[issue42834] [subinterpreters] Convert "global" static variable caches in _json to heap variables

2021-01-05 Thread Ken Jin
Change by Ken Jin : -- keywords: +patch pull_requests: +22952 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24121 ___ Python tracker ___

[issue42833] Lib/urllib/request.py: digest algorithm should be case insensitive

2021-01-05 Thread Pierre Tardy
Change by Pierre Tardy : -- pull_requests: +22953 status: pending -> open pull_request: https://github.com/python/cpython/pull/24122 ___ Python tracker ___

[issue36543] Remove old-deprecated ElementTree features (part 2)

2021-01-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Deprecation warning may help users of old lower-quality code at the cost of harming users of old higher-quality code. It does not look right to me. -- ___ Python tracker

[issue41818] Lib/pty.py major revision

2021-01-05 Thread Soumendra Ganguly
Soumendra Ganguly added the comment: Thank you for the fix. That test was created by modifying an existing test which already had that issue; it is documented in a comment by user nnorwitz in the file. If your solution resolves the problem for all the tests in "class PtyTest", then can you p

[issue39457] Add an autocommit property to sqlite3.Connection with a PEP 249 compliant manual commit mode and migrate

2021-01-05 Thread James Oldfield
James Oldfield added the comment: > Yes if you are talking about SQLite, the database ENGINE I sure was! In this comment I will stick to saying either "SQLite engine" or "sqlite3 driver" as appropriate, hopefully that will be clearer. > But here I am talking about SQLite3, the Python databas

[issue36543] Remove old-deprecated ElementTree features (part 2)

2021-01-05 Thread Christian Heimes
Christian Heimes added the comment: Apparently my defusedxml package is low-quality code... Anyhow PEP 387 has clear rules how to handle incompatible changes. Every core dev has to follow these rules. You cannot simply ignore the rule, because you don't like it. If you want to change the rul

[issue42831] IDLE fix colours for MacOS dark mode

2021-01-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: This might be related to #7949, about KDE/GTK dark themes. In general, IDLE only controls colors for Shell and editor windows, leaving dialogs to system default. This appears to be true for the settings and search dialogs. 'About' is unusual in having some

[issue39457] Add an autocommit property to sqlite3.Connection with a PEP 249 compliant manual commit mode and migrate

2021-01-05 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: I think there's a bit of a misunderstanding here. When relying on a DB-API driver's transaction API, you are not allowed to issue separate transaction commands to the DB backend via the .execute() methods. You have to use conn.commit() and conn.rollback().

[issue42531] importlib.resources.path() raises TypeError for packages without __file__

2021-01-05 Thread William Schwartz
William Schwartz added the comment: @jaraco Did you have any other questions after my comments in msg382423? Do you think you or someone else could review PR 23611? Thanks! -- ___ Python tracker ___

[issue36543] Remove old-deprecated ElementTree features (part 2)

2021-01-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I do not understand what this discussion in a long-closed article is about. If you propose to add warning, I am against it. You are against removing the module. Well, the module will not be removed, the warning is no longer needed. The issue is closed. I

[issue42831] IDLE fix colours for MacOS dark mode

2021-01-05 Thread E. Paine
E. Paine added the comment: I have also done a grep and believe the other affected parts from the user's perspective are the debugger (I haven't checked if Mark's version also suffers), the help dialog and hover tip (e.g. over the squeezer button). > Would it work to just remove those specif

[issue39457] Add an autocommit property to sqlite3.Connection with a PEP 249 compliant manual commit mode and migrate

2021-01-05 Thread Géry
Géry added the comment: @james.oldfield > What that answer doesn't mention is that, even with even with > isolation_mode=None, it's perfectly possible to start a transaction, which > takes the SQLite engine out of autocommit mode. Exactly, so since autocommit=True is equivalent to isolation_

[issue38285] Asyncio BaseEventLoop can support socket types other than SOCK_STREAM

2021-01-05 Thread John Beeler
John Beeler added the comment: For what it's worth, a library I use currently hacks in this functionality by accessing the private method _create_connection_transport directly. This is done to allow a SOCK_RAW to be passed (which is itself required to then enable asyncio to be used for handl

[issue42829] get_type_hints throws for nested class with __future__ annotations

2021-01-05 Thread Guido van Rossum
Guido van Rossum added the comment: If you want this to work you have to pass the namespace where B is defined as locals to get_type_hint(). The recommended approach is to make B a global class; where that is not possible (as in your second example) you should chose a different name. We're

[issue42828] Python readline module

2021-01-05 Thread Guido van Rossum
Guido van Rossum added the comment: This should be discussed on a user forum, not in our bug tracker. -- nosy: +gvanrossum resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker _

[issue39457] Add an autocommit property to sqlite3.Connection with a PEP 249 compliant manual commit mode and migrate

2021-01-05 Thread mike bayer
mike bayer added the comment: > Under your proposal, the first line would be changed to say > "autocommit=True", even though not all the code below is in autocommit mode > (according to the SQLite engine's definition). What's more, I could insert > this line of code between statements 3 and

[issue42498] smtplib is glitchy after receive server code 500

2021-01-05 Thread izomiac
izomiac added the comment: I agree, it's my suspicion that the server's error message and python's outbound command are sent so close to each other that buffering ensures they disagree about the exact sequence of commands/responses. As for my server, it was HAProxy doing the injection and I

[issue38285] Asyncio BaseEventLoop can support socket types other than SOCK_STREAM

2021-01-05 Thread Malversán
Malversán added the comment: That means the core code also works for SOCK_RAW sockets. It's only limited by explicit socket type checks at a higher level. As a curious note (not related to the issue), I'm also using the SOCK_SEQPACKET connection created with BaseEventLoop to access a custom d

[issue42828] Python readline module

2021-01-05 Thread Marco Franzo
Marco Franzo added the comment: So, I use Ubuntu 20.10 and the terminal is the one distributed with the system. I think this problem born in my code here: def generate_input(): while True: str = input().strip() yield helloworld_pb2.Operazione(operazione = str) I think th

[issue41798] [C API] Revisit usage of the PyCapsule C API with multi-phase initialization API

2021-01-05 Thread Erlend Egeberg Aasland
Erlend Egeberg Aasland added the comment: > I'm also in the process of removing PySocketModuleAPI from _ssl.c. BTW, do we still want to keep the socket CAPI for external users? -- ___ Python tracker ___

[issue41798] [C API] Revisit usage of the PyCapsule C API with multi-phase initialization API

2021-01-05 Thread Christian Heimes
Christian Heimes added the comment: > BTW, do we still want to keep the socket CAPI for external users? Yes, at least for a while. socket.h is not part of the public include headers. It's still possible that the CAPI is used by an external project. -- ___

[issue42827] pegen parser: Multiline eval with assignment to function call: assertion failed

2021-01-05 Thread Lysandros Nikolaou
Change by Lysandros Nikolaou : -- pull_requests: +22954 pull_request: https://github.com/python/cpython/pull/24124 ___ Python tracker ___ __

[issue42818] AttributeError: 'zipimporter' object has no attribute 'find_spec'

2021-01-05 Thread Klaus Ethgen
Klaus Ethgen added the comment: I don't know if that is an issue with zipimporter or an issue with a version of setuptools. My knowledge of python is very limited. But from what I can see in the backtrace it is missing find_spec. How ever that reverting is or should be implemented, it seams

[issue41837] Upgrade installers to OpenSSL 1.1.1i

2021-01-05 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +22955 pull_request: https://github.com/python/cpython/pull/24125 ___ Python tracker ___ _

[issue41798] [C API] Revisit usage of the PyCapsule C API with multi-phase initialization API

2021-01-05 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- pull_requests: +22956 pull_request: https://github.com/python/cpython/pull/24126 ___ Python tracker ___ __

[issue42746] python3.7.3 - ssl.SSLContext() - "Killed"

2021-01-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: 3.7.3 is an old release of an old version. It has already been patched a few times. If you cannot upgrade to at least the last bugfix release of 3.7, you are somewhat on your own. The word 'Killed' in not in the ssl module, so I presume it comes from the

[issue42712] Segmentation fault in running ast.literal_eval() with large expression size.

2021-01-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: I closed the following by Xinmeng as duplicates of this: #42713 eval(...) #42714 compile(...) #42715 exec(...) #42716 ast.parse(...) This is probably a duplicate of #42609, and should likely be closed also. -- nosy: +terry.reedy

[issue41837] Upgrade installers to OpenSSL 1.1.1i

2021-01-05 Thread Steve Dower
Steve Dower added the comment: New changeset afb71443788a7b20f9104243b3d8d37e3d12cfe2 by Steve Dower in branch 'master': bpo-41837: Updated Windows installer to include OpenSSL 1.1.1i (GH-24125) https://github.com/python/cpython/commit/afb71443788a7b20f9104243b3d8d37e3d12cfe2 -- __

[issue41837] Upgrade installers to OpenSSL 1.1.1i

2021-01-05 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +22957 pull_request: https://github.com/python/cpython/pull/24127 ___ Python tracker ___ _

[issue42584] Upgrade macOS and Windows installers to use SQLite 3.34.0

2021-01-05 Thread Steve Dower
Steve Dower added the comment: New changeset dd74c01d3bd2833f72ffe400a1d10b8583c0ba6a by Erlend Egeberg Aasland in branch 'master': bpo-42584: Update Windows installer to use SQLite 3.34.0 (GH-23675) https://github.com/python/cpython/commit/dd74c01d3bd2833f72ffe400a1d10b8583c0ba6a -

[issue38946] IDLE on macOS 10.15 Catalina does not open double-clicked files if app already launched

2021-01-05 Thread Ned Deily
Ned Deily added the comment: Thanks, Ronald and others. I have done some testing now with macOS 11 Big Sur and retested on 10.15 Catalina and with various versions of Tk and what I am seeing is as follows. - On macOS 11.1 Big Sur with IDLE.app from the python.org 3.9.1 universal2 installer

[issue42584] Upgrade macOS and Windows installers to use SQLite 3.34.0

2021-01-05 Thread Erlend Egeberg Aasland
Erlend Egeberg Aasland added the comment: Ned Deily, can you fix the macOS backports? -- ___ Python tracker ___ ___ Python-bugs-lis

[issue41798] [C API] Revisit usage of the PyCapsule C API with multi-phase initialization API

2021-01-05 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- pull_requests: +22958 pull_request: https://github.com/python/cpython/pull/24128 ___ Python tracker ___ __

[issue42584] Upgrade macOS and Windows installers to use SQLite 3.34.0

2021-01-05 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- pull_requests: +22959 pull_request: https://github.com/python/cpython/pull/24129 ___ Python tracker ___ __

[issue42584] Upgrade macOS and Windows installers to use SQLite 3.34.0

2021-01-05 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- pull_requests: +22960 pull_request: https://github.com/python/cpython/pull/24130 ___ Python tracker ___ __

[issue42584] Upgrade macOS and Windows installers to use SQLite 3.34.0

2021-01-05 Thread Erlend Egeberg Aasland
Erlend Egeberg Aasland added the comment: Steve Dower, do you mind if I create backports for the Windows build as well? -- resolution: -> fixed status: open -> pending ___ Python tracker ___

[issue42584] Upgrade macOS and Windows installers to use SQLite 3.34.0

2021-01-05 Thread miss-islington
miss-islington added the comment: New changeset f27451dc35f1c69be0c26e8aeafee7ba6771039a by Erlend Egeberg Aasland in branch '3.8': [3.8] bpo-42584: Update macOS installer to use SQLite 3.34.0 (GH-23674). (GH-24129) https://github.com/python/cpython/commit/f27451dc35f1c69be0c26e8aeafee7ba677

[issue22213] Make pyvenv style virtual environments easier to configure when embedding Python

2021-01-05 Thread Andrew Brunner
Change by Andrew Brunner : -- nosy: +abrunner73 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue42584] Upgrade macOS and Windows installers to use SQLite 3.34.0

2021-01-05 Thread miss-islington
miss-islington added the comment: New changeset e9a71dab094c0467f07d13cce4324c8a93727863 by Erlend Egeberg Aasland in branch '3.9': [3.9] bpo-42584: Update macOS installer to use SQLite 3.34.0 (GH-23674) (GH-24130) https://github.com/python/cpython/commit/e9a71dab094c0467f07d13cce4324c8a9372

[issue42746] python3.7.3 - ssl.SSLContext() - "Killed"

2021-01-05 Thread Christian Heimes
Christian Heimes added the comment: What exactly happens when you try to instantiate an SSLContext() object? Does it just print the string "Killed" or does the process stop and segfault immediately? If it's a segfault then it is likely caused by an incompatibility between recent LibreSSL an

[issue41837] Upgrade installers to OpenSSL 1.1.1i

2021-01-05 Thread Steve Dower
Steve Dower added the comment: New changeset c8333931434389ae72da9eb0471054f4393249db by Steve Dower in branch '3.9': bpo-41837: Updated Windows installer to include OpenSSL 1.1.1i (GH-24125) https://github.com/python/cpython/commit/c8333931434389ae72da9eb0471054f4393249db -- _

[issue41837] Upgrade installers to OpenSSL 1.1.1i

2021-01-05 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +22961 pull_request: https://github.com/python/cpython/pull/24131 ___ Python tracker ___ _

[issue42584] Upgrade macOS and Windows installers to use SQLite 3.34.0

2021-01-05 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +22962 pull_request: https://github.com/python/cpython/pull/24132 ___ Python tracker ___ _

[issue42835] Can't Built libxml2 When Using Python 3.9.x

2021-01-05 Thread Michael L. Boom
New submission from Michael L. Boom : When building libxml2 using Python 3.9.0 or Python 3.9.1 and gcc 10.2.0 I get the below error. Others are having this problem according to my Google search. make[4]: Entering directory '/local/users/michael.l.boom/gits/scoring_engine/git/aae_tmp_dir/libxml

[issue40956] Use Argument Clinic in sqlite3

2021-01-05 Thread Berker Peksag
Berker Peksag added the comment: New changeset c7f8d3caf0b10c19cd46b1b334a98628eac15672 by Erlend Egeberg Aasland in branch 'master': bpo-40956: Convert _sqlite3.Cursor to Argument Clinic (GH-24007) https://github.com/python/cpython/commit/c7f8d3caf0b10c19cd46b1b334a98628eac15672 --

[issue40810] sqlite3 test CheckTraceCallbackContent fails for sqlite v3.7.3 through 3.7.14.1

2021-01-05 Thread Berker Peksag
Berker Peksag added the comment: New changeset cf0b23908cc902ac38cd83dd7ca5afdf89e1543b by Erlend Egeberg Aasland in branch 'master': bpo-40810: Require SQLite 3.7.15 (GH-24106) https://github.com/python/cpython/commit/cf0b23908cc902ac38cd83dd7ca5afdf89e1543b -- ___

[issue40810] sqlite3 test CheckTraceCallbackContent fails for sqlite v3.7.3 through 3.7.14.1

2021-01-05 Thread Berker Peksag
Berker Peksag added the comment: I think this is now done. Thank you, Erlend! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker __

[issue40810] sqlite3 test CheckTraceCallbackContent fails for sqlite v3.7.3 through 3.7.14.1

2021-01-05 Thread Berker Peksag
Change by Berker Peksag : -- versions: -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

  1   2   >