[issue44076] issue with list in Python 3.8.5

2021-05-08 Thread Steven D'Aprano
Steven D'Aprano added the comment: I doubt it is a memory issue. Tell us what investigation you did that lead you to that conclusion. Python code doesn't normally just stop working for no reason. I expect that you changed your code in some way and introduced a bug. This is not a help desk

[issue1606233] readline on popen3 file returns empty string before end

2021-05-08 Thread Irit Katriel
Irit Katriel added the comment: Closing as there is little chance we can do anything about a 15-year old issue with no reproducer (chances are it was already fixed by now if it was actually a bug). -- nosy: +iritkatriel resolution: -> rejected stage: test needed -> resolved status:

[issue44076] issue with list in Python 3.8.5

2021-05-08 Thread Mohamed
Mohamed added the comment: I'm using tkinter for a long time, my application was running fine till 1st May, and suddenly happen this issue. After adding a new data to a list, it showing in some places of tkinter components. For example, in treeview, it shows based on running specfic

[issue44077] IP_RECVTOS option is missing from socket module

2021-05-08 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 1.0 -> 2.0 pull_requests: +24645 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25992 ___ Python tracker

[issue43992] Unable to get external dependencies for CPython on Ubuntu Linux 20.04.1

2021-05-08 Thread Ned Deily
Ned Deily added the comment: This isn't a bug with Python, it is a development environment issue. The discussion would be more appropriate in help forums, like on discuss.python.org or Stackoverflow. And, if there si some deficiency in the devguide, there is a tracker for issues with it:

[issue44035] Regenerating the configure script fails even if dependencies are satisfied

2021-05-08 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Seems to work like a charm: ❯ docker run -v`pwd`:/src tiran/cpython_autoconf Rebuilding configure script autoreconf: Entering directory `.' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal --force autoreconf: configure.ac:

[issue44045] canonicalize "upper-case" -> "uppercase"; "lower-case" -> "lowercase"

2021-05-08 Thread Andrei Kulakov
Andrei Kulakov added the comment: https://dictionary.cambridge.org/us/dictionary/english/lower-case lists lower-case as a valid variant for nouns as well as adjectives. -- nosy: +andrei.avk ___ Python tracker

[issue44074] patchcheck checks against branch "master" not "main"

2021-05-08 Thread Ned Deily
Change by Ned Deily : -- nosy: +pablogsal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43992] Unable to get external dependencies for CPython on Ubuntu Linux 20.04.1

2021-05-08 Thread Shreyan Avigyan
Shreyan Avigyan added the comment: This problem doesn't exist in RPM Linux. Therefore creating a new DebianBuild directory (like there is PCBuild, Mac) just for Debian Linux. (I haven't tested RPM Linux and can't access any right now therefore I don't know if the problem exists there or

[issue43992] Unable to get external dependencies for CPython on Ubuntu Linux 20.04.1

2021-05-08 Thread Christian Heimes
Christian Heimes added the comment: I have been following this issue for a while. I feel it's getting increasingly offtopic for Python bug tracker. Any concerns or problems with your distro are better suited for the help and discussion forums of your distribution. Ah, Ned just closed the

[issue43149] Misleading error message for except with missing parens (3.10.a5)

2021-05-08 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +24650 pull_request: https://github.com/python/cpython/pull/25997 ___ Python tracker

[issue43992] Unable to get external dependencies for CPython on Ubuntu Linux 20.04.1

2021-05-08 Thread Christian Heimes
Change by Christian Heimes : -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue44080] Bias in random.choices(long_sequence)

2021-05-08 Thread Dennis Sweeney
New submission from Dennis Sweeney : Problem: Random.choices() never returns sequence entries at large odd indices. For example: >>> import random >>> [x % 2 for x in random.choices(range(2**53), k=20)] [0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1] >>> [x % 2 for x in

[issue41830] "NameError: name 'AttributeError' is not defined"

2021-05-08 Thread Irit Katriel
Irit Katriel added the comment: The link to the logs is not working now, and without more info there isn't much we can do. Sanka, are you able to reproduce this on a newer python version and tell us how? -- nosy: +iritkatriel resolution: -> rejected status: open -> pending

[issue44078] Output relative path when using PurePath.relative_to

2021-05-08 Thread Mark Hammond
New submission from Mark Hammond : Comparing two paths, PurePath.relative_to fails with ValueError if the second path is not in the first. >>> Path('/a/b').relative_to('/a/b/c') Traceback (most recent call last): File "", line 1, in File "/usr/lib/python3.9/pathlib.py", line 928, in

[issue3014] file_dealloc() assumes errno is set when EOF is returned

2021-05-08 Thread Irit Katriel
Irit Katriel added the comment: I believe this is out of date - there is no longer file_dealloc or anything similar to the code in the report in fileobject.c -- nosy: +iritkatriel resolution: -> out of date status: open -> pending ___ Python

[issue43992] Unable to get external dependencies for CPython on Ubuntu Linux 20.04.1

2021-05-08 Thread Shreyan Avigyan
Shreyan Avigyan added the comment: I figured out the commands. The problem is they are not upgraded. -- ___ Python tracker ___ ___

[issue32924] Python 3.7 docs in docs.p.o points to GitHub's master branch

2021-05-08 Thread miss-islington
miss-islington added the comment: New changeset 20fcd8363452506d51bf820c835bd11b6d00e0e7 by Miss Islington (bot) in branch '3.9': bpo-32924: Fix the Show Source url in the documentation (GH-25994) https://github.com/python/cpython/commit/20fcd8363452506d51bf820c835bd11b6d00e0e7 --

[issue32924] Python 3.7 docs in docs.p.o points to GitHub's master branch

2021-05-08 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I created an issue on the release repo. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue44079] [sqlite3] optimisation: remove statement weak ref list from connection object

2021-05-08 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: Berker/Serhiy, weak ref. list question: Could also the pysqlite_Statement.in_weakreflist member go? Seems to be ok: $ git diff --shortstat 3 files changed, 13 insertions(+), 72 deletions(-) $ ./python.exe -m test -R : test_sqlite 0:00:00 load avg: 0.83

[issue44078] Output relative path when using PurePath.relative_to

2021-05-08 Thread Andrei Kulakov
Andrei Kulakov added the comment: duplicate of https://bugs.python.org/issue40358 , which has an open patch. -- nosy: +andrei.avk ___ Python tracker ___

[issue43109] When using Apple Clang, --with-lto builds should not check for llvm-ar

2021-05-08 Thread Rishav Kundu
Change by Rishav Kundu : -- keywords: +patch nosy: +xrisk nosy_count: 2.0 -> 3.0 pull_requests: +24652 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25999 ___ Python tracker

[issue32924] Python 3.7 docs in docs.p.o points to GitHub's master branch

2021-05-08 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 03acfc50ac0be8b49847b94dee93e21b1efa0e76 by Pablo Galindo in branch '3.10': bpo-32924: Fix the Show Source url in the documentation (GH-25994) https://github.com/python/cpython/commit/03acfc50ac0be8b49847b94dee93e21b1efa0e76 --

[issue32924] Python 3.7 docs in docs.p.o points to GitHub's master branch

2021-05-08 Thread miss-islington
Change by miss-islington : -- pull_requests: +24648 pull_request: https://github.com/python/cpython/pull/25995 ___ Python tracker ___

[issue43149] Misleading error message for except with missing parens (3.10.a5)

2021-05-08 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +24649 pull_request: https://github.com/python/cpython/pull/25996 ___ Python tracker ___

[issue32725] Instance of _multiprocessing.PipeConnection-subtype crash on deletion

2021-05-08 Thread Irit Katriel
Irit Katriel added the comment: 2.7 is past EOL. -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___

[issue44075] Add a PEP578 audit hook for Asyncio loop stalls

2021-05-08 Thread Tom Forbes
Tom Forbes added the comment: Actually reacting to a stall would require something more and probably should be done at some point. But this is purely about monitoring - in our use case we'd send a metric via statsd that would be used to correlate stalls against other service level metrics.

[issue43992] Unable to get external dependencies for CPython on Ubuntu Linux 20.04.1

2021-05-08 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: Here's a trick I often recommend: Do as the CI; use the posix-deps-apt.sh script! You'll find it in your CPython git repo: $ cd cpython.git # change working dir to the CPython git repo $ cat .github/workflows/posix-deps-apt.sh #!/bin/sh apt-get update

[issue44070] __file__ is now fully qualified in 3.8 and 3.9

2021-05-08 Thread Brett Cannon
Change by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44035] Regenerating the configure script fails even if dependencies are satisfied

2021-05-08 Thread Christian Heimes
Christian Heimes added the comment: Pablo, could you please give the container a try? -- ___ Python tracker ___ ___

[issue43992] Unable to get external dependencies for CPython on Ubuntu Linux 20.04.1

2021-05-08 Thread Shreyan Avigyan
Shreyan Avigyan added the comment: I never said this was a bug. But what I'm saying is there should be a different build for Debian because Debian has a reputation of using outdated packages. -- ___ Python tracker

[issue44079] [sqlite3] optimisation: remove statement weak ref list from connection object

2021-05-08 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- keywords: +patch pull_requests: +24651 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25998 ___ Python tracker

[issue44075] Add a PEP578 audit hook for Asyncio loop stalls

2021-05-08 Thread Steve Dower
Steve Dower added the comment: Fundamentally I don't have an issue with the audit hook. My only concern would be if there's anything that an application may do to _respond_ to a stall (e.g. is this valuable for applying backpressure? etc.) If it's purely diagnostic, and there's nothing

[issue22953] Windows installer configures system PATH also when installing only for current user

2021-05-08 Thread Irit Katriel
Irit Katriel added the comment: Irrelevant since version 3.5. -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker

[issue44079] [sqlite3] remove superfluous statement weak ref list from connection object

2021-05-08 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- title: [sqlite3] optimisation: remove statement weak ref list from connection object -> [sqlite3] remove superfluous statement weak ref list from connection object ___ Python tracker

[issue43568] Drop support for Mac OS X < 10.3 module linking

2021-05-08 Thread Joshua Root
Joshua Root added the comment: The part that is a bug is that the whole version was checked, not just the major version--you couldn't target macOS 11.0 if your Python was built for 11.3, for example. MacPorts users getting an error in that situation was the original motivation for coming up

[issue32924] Python 3.7 docs in docs.p.o points to GitHub's master branch

2021-05-08 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal nosy_count: 4.0 -> 5.0 pull_requests: +24647 pull_request: https://github.com/python/cpython/pull/25994 ___ Python tracker

[issue32924] Python 3.7 docs in docs.p.o points to GitHub's master branch

2021-05-08 Thread Ned Deily
Ned Deily added the comment: I think the only reason this is still open is as a reminder to have a permanent process fix. Pablo, would it be possible to include this step in the new release-tools automation? If so, we can open an issue there and close this one. --

[issue44079] [sqlite3] optimisation: remove statement weak ref list from connection object

2021-05-08 Thread Erlend E. Aasland
New submission from Erlend E. Aasland : Today, the sqlite3 extension module keeps two[1] lists of statements: 1. The statement cache[2], stored in pysqlite_Connection.statement_cache 2. A weak ref. list (hard coded limited to 200 statements in _pysqlite_drop_unused_statement_references()),

[issue44081] ast.unparse: dont use redundant space separator for lambdas with no parameters

2021-05-08 Thread Batuhan Taskaya
New submission from Batuhan Taskaya : Previously: >>> import ast >>> ast.unparse(ast.parse("lambda: 'hey!'")) "lambda : 'hey!'" Expected: >>> import ast >>> ast.unparse(ast.parse("lambda: 'hey!'")) "lambda: 'hey!'" -- assignee: BTaskaya components: Library (Lib) messages: 393288

[issue43417] ast.unparse: Simplify buffering logic

2021-05-08 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue44081] ast.unparse: dont use redundant space separator for lambdas with no parameters

2021-05-08 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- keywords: +patch pull_requests: +24653 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26000 ___ Python tracker ___

[issue42115] Caching infrastructure for the evaluation loop: specialised opcodes

2021-05-08 Thread Ken Jin
Ken Jin added the comment: > IMO you need to implement LOAD_METHOD support for all kinds of calls, > including the ones that use kwargs, to see any improvement. Recently I played around with that idea and extended LOAD/CALL_METHOD to keyword arguments (so CALL_FUNCTION_KW is replaced). I

[issue44082] Add a method to check interpolation errors in configparser

2021-05-08 Thread Munir Contractor
Change by Munir Contractor : -- keywords: +patch pull_requests: +24655 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26002 ___ Python tracker

[issue44057] Inconsitencies in `__init_subclass__` in a generic class

2021-05-08 Thread Ken Jin
Ken Jin added the comment: Since this only affects 3.6 which is no longer receiving bugfixes, I'm closing this issue. 3.7 and higher do not have this bug. So one way forward is to upgrade to 3.7 or 3.8 - both of which are supported by most major libraries. If this bug reappears again in

[issue43656] StackSummary.format fails if str(value) fails

2021-05-08 Thread Andrei Kulakov
Andrei Kulakov added the comment: @Martin it's more that logic in a function may raise exception and it will be handled somewhere upstream, but a repr should just give you a simple representation of an object, it would make no sense for upstream logic to be "object repr failed with such

[issue43568] Drop support for Mac OS X < 10.3 module linking

2021-05-08 Thread Joshua Root
Change by Joshua Root : -- pull_requests: +24654 pull_request: https://github.com/python/cpython/pull/26001 ___ Python tracker ___

[issue44082] Add a method to check interpolation errors in configparser

2021-05-08 Thread Munir Contractor
New submission from Munir Contractor : Currently, the interpolation of values is done lazily in ConfigParser, only when the value is read. The documentation for this can be improved and also a method to check for such errors can be provided. Providing such a method can help with tests and

[issue39228] traceback.FrameSummary does not handle exceptions from `repr()`

2021-05-08 Thread Andrei Kulakov
Andrei Kulakov added the comment: This probably shouldn't be done, for all of the reasons above. For the sake of an argument, if we really wanted to do something like this (as it may be convenient in some cases), a better way might be to add a `__tb_repr__ = __repr__` which can be

[issue44045] canonicalize "upper-case" -> "uppercase"; "lower-case" -> "lowercase"

2021-05-08 Thread Eric V. Smith
Eric V. Smith added the comment: The stdlib seems to have settled on lowercase for the noun version, though. My two cents: no sense not being consist just because lower-case might also work. -- ___ Python tracker

[issue44045] canonicalize "upper-case" -> "uppercase"; "lower-case" -> "lowercase"

2021-05-08 Thread Andrei Kulakov
Andrei Kulakov added the comment: On Sat, May 8, 2021 at 10:38 PM Eric V. Smith wrote: > > Eric V. Smith added the comment: > > The stdlib seems to have settled on lowercase for the noun version, > though. My two cents: no sense not being consist just because lower-case > might also work. >

[issue41730] Show deprecation warnings for tkinter.tix

2021-05-08 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Unfortunately this commit has introduced some reference leaks, see: https://buildbot.python.org/all/#/builders/684/builds/5 Could someone take a look? -- nosy: +pablogsal resolution: fixed -> status: closed -> open

[issue16866] libainstall doesn't create $(BINDIR) directory

2021-05-08 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed in 3.11 here - https://github.com/python/cpython/commit/80d250d68cf3bb511fd862169c681b28028499c2 -- ___ Python tracker ___

[issue16866] libainstall doesn't create $(BINDIR) directory

2021-05-08 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +24633 pull_request: https://github.com/python/cpython/pull/25982 ___ Python tracker

[issue16866] libainstall doesn't create $(BINDIR) directory

2021-05-08 Thread miss-islington
Change by miss-islington : -- pull_requests: +24634 pull_request: https://github.com/python/cpython/pull/25981 ___ Python tracker ___

[issue44073] [sqlite3] drop statement in_use field in favour of sqlite3_stmt_busy()

2021-05-08 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: $ git diff --stat Modules/_sqlite/connection.c | 1 - Modules/_sqlite/cursor.c | 5 + Modules/_sqlite/statement.c | 14 +- Modules/_sqlite/statement.h | 2 -- 4 files changed, 2 insertions(+), 20 deletions(-) --

[issue31904] Python should support VxWorks RTOS

2021-05-08 Thread miss-islington
Change by miss-islington : -- pull_requests: +24635 pull_request: https://github.com/python/cpython/pull/25983 ___ Python tracker ___

[issue44073] [sqlite3] drop statement in_use field in favour of sqlite3_stmt_busy()

2021-05-08 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- keywords: +patch pull_requests: +24636 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25984 ___ Python tracker

[issue43992] Unable to get external dependencies for CPython on Ubuntu Linux 20.04.1

2021-05-08 Thread Shreyan Avigyan
Shreyan Avigyan added the comment: I know the deb-src problem and I've added that a long time ago. The problem is that I don't know which repository has the unstable source. I'm on Ubuntu Focal Fossa. I successfully can fetch sources but they are not up-to-date. I can't figure out the

[issue44045] canonicalize "upper-case" -> "uppercase"; "lower-case" -> "lowercase"

2021-05-08 Thread Jürgen Gmach
Jürgen Gmach added the comment: Thank you for the feedback. I created a PR. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue44072] Doc: power operator (`**`) present for numbers.Complex, not added in numbers.Integral

2021-05-08 Thread Rory Yorke
Change by Rory Yorke : -- keywords: +patch pull_requests: +24638 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25986 ___ Python tracker ___

[issue44072] Doc: power operator (`**`) present for numbers.Complex, not added in numbers.Integral

2021-05-08 Thread Rory Yorke
New submission from Rory Yorke : Checked at commit 42fcad2, HEAD of main circa 8 May 2021. cpython/Doc/library/numbers.rst says numbers.Complex subtypes "include the operations [...] ``+``, ``-``, ``*``, ``/``, :func:`abs`, :meth:`conjugate`, ``==``, and ``!=``" and for numbers.Integral:

[issue43350] [sqlite3] Active statements are reset twice in _pysqlite_query_execute()

2021-05-08 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: > Hm, I guess we could use sqlite3_stmt_busy() instead of the in_use flag. I opened bpo-44073 for this. -- ___ Python tracker ___

[issue44074] patchcheck checks against branch "master" not "main"

2021-05-08 Thread Rory Yorke
New submission from Rory Yorke : I'm probably missing something, but "master" seems hard-coded into patchcheck.py, and I couldn't find any related issues on bpo. Checked on branch off 42fcad2. When I ran patchcheck: rory@rory-latitude:~/src/cpython$ ./python Tools/scripts/patchcheck.py

[issue43124] [security] smtplib multiple CRLF injection

2021-05-08 Thread Miguel Brito
Change by Miguel Brito : -- keywords: +patch pull_requests: +24639 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25987 ___ Python tracker ___

[issue44073] [sqlite3] drop statement in_use field in favour of sqlite3_stmt_busy()

2021-05-08 Thread Erlend E. Aasland
New submission from Erlend E. Aasland : sqlite3_stmt_busy() has been around since SQLite 3.7.10. I suggest to drop the in_use field of pysqlite_Statement in favour of sqlite3_stmt_busy(); we do not need to duplicate functionality already present in SQLite. There was a bugfix for

[issue37903] IDLE Shell sidebar.

2021-05-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Yes, lets discuss actual problems and various possible solutions. Raymond's example is incomplete as it omits multiline statements, which is where the real problems lie and the reason a fix was sorely needed. This has been more or less agreed on since at

[issue31904] Python should support VxWorks RTOS

2021-05-08 Thread miss-islington
miss-islington added the comment: New changeset 6e7fe1901631dc730abc02d1f546a99fd6b6fe83 by Miss Islington (bot) in branch '3.10': [3.10] bpo-31904: Correct error string in test_file_not_exists() for VxWorks (GH-25965) (GH-25983)

[issue44045] canonicalize "upper-case" -> "uppercase"; "lower-case" -> "lowercase"

2021-05-08 Thread Jürgen Gmach
Change by Jürgen Gmach : -- keywords: +patch pull_requests: +24637 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25985 ___ Python tracker ___

[issue44074] patchcheck checks against branch "master" not "main"

2021-05-08 Thread Leonardo Lai
Change by Leonardo Lai : -- keywords: +patch nosy: +leoll2 nosy_count: 1.0 -> 2.0 pull_requests: +24644 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25991 ___ Python tracker

[issue44074] patchcheck checks against branch "master" not "main"

2021-05-08 Thread Leonardo Lai
Leonardo Lai added the comment: I've just created a patch for this. Now it can automatically detect the default branch name (`main`, `master` or whatever) -- ___ Python tracker

[issue44006] symbol documentation still exists

2021-05-08 Thread Julien Palard
Julien Palard added the comment: I `rm -fr 3.10` on the doc server yesterday, so it started 3.10 from scratch today and the file were properly removed. -- ___ Python tracker

[issue44076] issue with list in Python 3.8.5

2021-05-08 Thread Shreyan Avigyan
Shreyan Avigyan added the comment: Can you show an example code where this occurs? Which Python 3.8 subversion are you using? How do you conclude these are memory issues? -- nosy: +shreyanavigyan ___ Python tracker

[issue44077] IP_RECVTOS option is missing from socket module

2021-05-08 Thread Georg Sauthoff
New submission from Georg Sauthoff : Currently, the socket module doesn't provide the IP_RECVTOS constant. This constant is needed for receiving the TOS byte (or the DSCP bits) via ancillary data when calling recvmsg() or recvmsg_into(). That means it would be used in a setsockopt() call

[issue25716] typeobject.c call_method & call_maybe can leak references on 'func'

2021-05-08 Thread Irit Katriel
Change by Irit Katriel : -- stage: patch review -> resolved status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue12638] urllib.URLopener prematurely deletes files on cleanup

2021-05-08 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue12638] urllib.URLopener prematurely deletes files on cleanup

2021-05-08 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> out of date ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31904] Python should support VxWorks RTOS

2021-05-08 Thread Alex Willmer
Change by Alex Willmer : -- nosy: -Alex.Willmer ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43992] Unable to get external dependencies for CPython on Ubuntu Linux 20.04.1

2021-05-08 Thread Shreyan Avigyan
Shreyan Avigyan added the comment: It's also pretty problematic that Python depends on the system header code rather than fetched source code like we do in OS X or Windows. I would like to suggest that we fetch source code and then use that instead of system header files. This wouldn't be a

[issue16866] libainstall doesn't create $(BINDIR) directory

2021-05-08 Thread Senthil Kumaran
Senthil Kumaran added the comment: In 3.10 - https://github.com/python/cpython/commit/a2c72d52dddefbfbaa0745b0af54330fad03b29e 3.9 - https://github.com/python/cpython/commit/a25c46bd7dd47a2f95b32d17ee2f66de214892c6 -- resolution: -> fixed stage: patch review -> resolved status:

[issue44075] Add a PEP578 audit hook for Asyncio loop stalls

2021-05-08 Thread Tom Forbes
New submission from Tom Forbes : Detecting and monitoring loop stalls in a production asyncio application is more difficult than it could be. Firstly you must enable debug mode for the entire loop then you need to look for warnings outputted via the asyncio logger. This makes it hard to send

[issue42725] PEP 563: Should the behavior change for yield/yield from's

2021-05-08 Thread miss-islington
miss-islington added the comment: New changeset 90d584a2ab91cc0f30e90a0a99f8c1447eb51302 by Miss Islington (bot) in branch '3.10': bpo-42725: mention the changes on what's new (GH-25974) https://github.com/python/cpython/commit/90d584a2ab91cc0f30e90a0a99f8c1447eb51302 --

[issue44075] Add a PEP578 audit hook for Asyncio loop stalls

2021-05-08 Thread Christian Heimes
Christian Heimes added the comment: Are you proposing to use PEP 578 for monitoring the event loop? -- nosy: +christian.heimes, steve.dower ___ Python tracker ___

[issue44022] urllib http client possible infinite loop on a 100 Continue response

2021-05-08 Thread Łukasz Langa
Change by Łukasz Langa : -- Removed message: https://bugs.python.org/msg393236 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue24147] Dialect class defaults are not documented.

2021-05-08 Thread So Ukiyama
So Ukiyama added the comment: I created a PR which apply Brandon Milam's patch. So If I have offended you with my rudeness, I hope you will forgive me for taking this down. -- ___ Python tracker

[issue44075] Add a PEP578 audit hook for Asyncio loop stalls

2021-05-08 Thread Tom Forbes
Tom Forbes added the comment: I don't see why we shouldn't use PEP 578 for this - the events provide rich monitoring information about what a Python process is "doing" with an easy, central way to register callbacks to receive these events and shovel them off to a monitoring solution. Is

[issue44075] Add a PEP578 audit hook for Asyncio loop stalls

2021-05-08 Thread Tom Forbes
Change by Tom Forbes : -- keywords: +patch pull_requests: +24642 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25990 ___ Python tracker ___

[issue44076] issue with list in Python 3.8.5

2021-05-08 Thread Mohamed
New submission from Mohamed : I am using Python under Windows 10 on Dell for a log time. All of my applications on Python were working fine. Suddenly from the beginning of May, My apps do not update a "list" data after a new insert, even with small data volume. As well as choosing old data

[issue44076] issue with list in Python 3.8.5

2021-05-08 Thread Mohamed
Mohamed added the comment: I'm using tkinter 8.6 with Python -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue42725] PEP 563: Should the behavior change for yield/yield from's

2021-05-08 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 8.0 -> 9.0 pull_requests: +24640 pull_request: https://github.com/python/cpython/pull/25988 ___ Python tracker

[issue24147] Dialect class defaults are not documented.

2021-05-08 Thread So Ukiyama
Change by So Ukiyama : -- keywords: +patch nosy: +uniocto nosy_count: 7.0 -> 8.0 pull_requests: +24641 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/25989 ___ Python tracker

[issue42725] PEP 563: Should the behavior change for yield/yield from's

2021-05-08 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list