[issue39710] "will be returned as unicode" reminiscent from Python 2

2020-05-30 Thread Chitrank-Dixit
Change by Chitrank-Dixit : -- pull_requests: +19795 pull_request: https://github.com/python/cpython/pull/20551 ___ Python tracker ___

[issue40831] Wrong statement that bytes paths are deprecated under Windows regarding MAX_PATH docs

2020-05-30 Thread Eric L.
New submission from Eric L. : In chapter 3.1.2. Removing the MAX_PATH Limitation of https://docs.python.org/3/using/windows.html#removing-the-max-path-limitation (also in 3.9 and 3.10), it is written that "(Use of bytes as paths is deprecated on Windows, and this feature is not available

[issue38938] Possible performance improvement for heapq.merge()

2020-05-30 Thread Dennis Sweeney
Dennis Sweeney added the comment: PR 20550 uses a linked structure like what we've been talking about. -- ___ Python tracker ___

[issue38938] Possible performance improvement for heapq.merge()

2020-05-30 Thread Dennis Sweeney
Change by Dennis Sweeney : -- pull_requests: +19794 pull_request: https://github.com/python/cpython/pull/20550 ___ Python tracker ___

[issue40826] Segfaults when close file descriptor 0

2020-05-30 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +19793 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/20549 ___ Python tracker

[issue39710] "will be returned as unicode" reminiscent from Python 2

2020-05-30 Thread Chitrank-Dixit
Chitrank-Dixit added the comment: I would like to take this issue. -- nosy: +Chitrank-Dixit ___ Python tracker ___ ___

[issue16954] Add docstrings for ElementTree module

2020-05-30 Thread Chitrank-Dixit
Chitrank-Dixit added the comment: I think the current ticket should be closed as there are no doxygen comments left to convert to docstrings. So I think this issue can be closed. There are places where there is no docstrings for those we can create a new ticket. --

[issue40755] Add missing multiset predicates to collections.Counter

2020-05-30 Thread Vedran Čačić
Vedran Čačić added the comment: I'm very glad for that. :-) For the other part of my message, I never intended to remove the support for non-natural counts. I just wanted to add some more methods to the natural part of Counter's API. It already has some methods which assume natural counts:

[issue40755] Add missing multiset predicates to collections.Counter

2020-05-30 Thread Raymond Hettinger
Change by Raymond Hettinger : -- pull_requests: +19792 pull_request: https://github.com/python/cpython/pull/20548 ___ Python tracker ___

[issue40755] Add missing multiset predicates to collections.Counter

2020-05-30 Thread Raymond Hettinger
Raymond Hettinger added the comment: After more thought, I've found a way to use the rich comparisons as requested. Doing so consistently required that the __eq__ method treat missing elements as having a zero count. See attached PR. -- ___

[issue40754] Test installers before releasing (ModuleNotFoundErrors)

2020-05-30 Thread Ned Deily
Ned Deily added the comment: > The Windows installer also runs pip and IDLE tests before being published > [...] That's good and reminds me that I forgot to mention that for the macOS installer, besides the already mentioned tests, we also download, install, and smoke test a third-party

[issue40630] tracemalloc: allow resetting peak memory metric without touching other traces

2020-05-30 Thread Huon Wilson
Change by Huon Wilson : -- pull_requests: +19791 pull_request: https://github.com/python/cpython/pull/20546 ___ Python tracker ___

[issue40630] tracemalloc: allow resetting peak memory metric without touching other traces

2020-05-30 Thread Huon Wilson
Change by Huon Wilson : -- pull_requests: +19790 pull_request: https://github.com/python/cpython/pull/20545 ___ Python tracker ___

[issue40830] Certain uses of dictionary unpacking raise TypeError

2020-05-30 Thread Mark Shannon
Mark Shannon added the comment: Thanks for the report. I'm looking in to it. -- assignee: -> Mark.Shannon priority: normal -> release blocker stage: -> needs patch ___ Python tracker

[issue25782] CPython hangs on error __context__ set to the error itself

2020-05-30 Thread Chris Jerdonek
Change by Chris Jerdonek : -- nosy: +chris.jerdonek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40829] Add a what's new entry about deprecation of random.shuffle's random= parameter

2020-05-30 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 44400e88f906bf99cd2c57791f1201c400daf6af by Miss Islington (bot) in branch '3.9': bpo-40829: Add a what's new entry about deprecation of shuffle's random parameter (GH-20541) (GH-20544)

[issue40829] Add a what's new entry about deprecation of random.shuffle's random= parameter

2020-05-30 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue40829] Add a what's new entry about deprecation of random.shuffle's random= parameter

2020-05-30 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- Removed message: https://bugs.python.org/msg370397 ___ Python tracker ___ ___ Python-bugs-list

[issue40829] Add a what's new entry about deprecation of random.shuffle's random= parameter

2020-05-30 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- title: Add a what's new entry about deprecation of random.shuffle -> Add a what's new entry about deprecation of random.shuffle's random= parameter ___ Python tracker

[issue40829] Add a what's new entry about deprecation of random.shuffle

2020-05-30 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +19789 pull_request: https://github.com/python/cpython/pull/20544 ___ Python tracker

[issue40829] Add a what's new entry about deprecation of random.shuffle

2020-05-30 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 007bb06a2de9e64fa978f5dd9131d0100227b4cf by Batuhan Taskaya in branch 'master': bpo-40829: Add a what's new entry about deprecation of shuffle's random parameter (GH-20541)

[issue25782] CPython hangs on error __context__ set to the error itself

2020-05-30 Thread Dennis Sweeney
Change by Dennis Sweeney : -- pull_requests: +19788 pull_request: https://github.com/python/cpython/pull/20539 ___ Python tracker ___

[issue25782] CPython hangs on error __context__ set to the error itself

2020-05-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +19787 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20543 ___ Python tracker ___

[issue25782] CPython hangs on error __context__ set to the error itself

2020-05-30 Thread Dennis Sweeney
Dennis Sweeney added the comment: For clarification, the existing behavior on master: When trying to raise the exception H, F -> G -> H -> I -> NULL becomes H -> F -> G -> NULL But when trying to set the exception A on top of B -> C -> D -> E -> C -> ...,

[issue40830] Certain uses of dictionary unpacking raise TypeError

2020-05-30 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- components: +Interpreter Core keywords: +3.9regression versions: +Python 3.10 ___ Python tracker ___

[issue40830] Certain uses of dictionary unpacking raise TypeError

2020-05-30 Thread Batuhan Taskaya
Batuhan Taskaya added the comment: @Kodiologist do you have a setup to try your cause before the commit 8a4cd700a7426341c2074a2b580306d2d60ec839? -- ___ Python tracker ___

[issue40830] Certain uses of dictionary unpacking raise TypeError

2020-05-30 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- nosy: +Mark.Shannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40830] Certain uses of dictionary unpacking raise TypeError

2020-05-30 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- nosy: +BTaskaya ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25782] CPython hangs on error __context__ set to the error itself

2020-05-30 Thread Gregory P. Smith
Change by Gregory P. Smith : -- nosy: -gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40825] Add a "strict" parameter to csv.writer and csv.DictWriter

2020-05-30 Thread Eric V. Smith
Eric V. Smith added the comment: I guess an isinstance check against numbers.Number would be the best way to check if an argument is a number. I'm not sure how convenient that is from C code. -- ___ Python tracker

[issue25782] CPython hangs on error __context__ set to the error itself

2020-05-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Issue40696 is other example of creating a cycle. I think we should solve general problem preventing loops by merging one of proposed patches. -- resolution: fixed -> stage: commit review -> status: closed -> open versions: +Python 3.10, Python

[issue40830] Certain uses of dictionary unpacking raise TypeError

2020-05-30 Thread Kodiologist
New submission from Kodiologist : On Python 3.8.2, the below program runs without errors. On Python 3.9.0b1, it raises "TypeError: 'tuple' object is not callable" for the last line. d1 = {'a': 1} d2 = {'c': 3} def fun(a, b, c): return a, b, c print(fun(**d1, b='b', **d2)) --

[issue40696] exception chain cycles cause hangs (was "Exception handling with "await" can hang in Python3.9.0b1")

2020-05-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: In issue25782 two different solutions for general problem was proposed. When trying to raise the exception H, F -> G -> H -> I -> NULL with Yury's patch you would get H -> NULL and with my path you would get H -> F -> G

[issue40597] generated email message exceeds RFC-mandated limit of 998 characters

2020-05-30 Thread Mark Sapiro
Change by Mark Sapiro : -- pull_requests: +19786 stage: resolved -> patch review pull_request: https://github.com/python/cpython/pull/20542 ___ Python tracker ___

[issue40696] exception chain cycles cause hangs (was "Exception handling with "await" can hang in Python3.9.0b1")

2020-05-30 Thread Dennis Sweeney
Dennis Sweeney added the comment: > I it related to issue25782? Yes -- I didn't see that issue. I'm a little confused about the resolution of that issue though. For clarification, the existing behavior on master: When trying to raise the exception H, F -> G -> H -> I -> NULL

[issue40829] Add a what's new entry about deprecation of random.shuffle

2020-05-30 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- keywords: +patch pull_requests: +19785 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20541 ___ Python tracker ___

[issue40829] Add a what's new entry about deprecation of random.shuffle

2020-05-30 Thread Batuhan Taskaya
New submission from Batuhan Taskaya : random.shuffle deprecated with bpo-40465 but a what's news entry didn't exist about it. -- assignee: docs@python components: Documentation messages: 370397 nosy: BTaskaya, docs@python priority: normal severity: normal status: open title: Add a

[issue40828] shared memory problems with multiprocessing.Pool

2020-05-30 Thread trapezoid677
New submission from trapezoid677 : Under Linux, the resource_tracker throws warnings about not released memory blocks after the programs has finished and when used together with multiprocessing.Pool. This depends on the sequence of initialization of the shared memory block and the

[issue40597] generated email message exceeds RFC-mandated limit of 998 characters

2020-05-30 Thread Mark Sapiro
Mark Sapiro added the comment: With the fix in PR 20038, committed at https://github.com/python/cpython/commit/6f2f475d5a2cd7675dce844f3af436ba919ef92b it is no longer possible to set_content(''). Attempts to do so produce the following ``` File

[issue40825] Add a "strict" parameter to csv.writer and csv.DictWriter

2020-05-30 Thread Dong-hee Na
Dong-hee Na added the comment: I am +1 on with strict mode. But I want to hear other core developers opinions. -- nosy: +corona10, serhiy.storchaka ___ Python tracker ___

[issue40826] Segfaults when close file descriptor 0

2020-05-30 Thread Dong-hee Na
Dong-hee Na added the comment: FYI this change fix this issue. --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -1782,7 +1782,11 @@ PyOS_FiniInterrupts(void) int PyOS_InterruptOccurred(void) { -PyInterpreterState *interp = _PyInterpreterState_GET(); +PyThreadState

[issue13702] relative symlinks in tarfile.extract broken (windows)

2020-05-30 Thread Eryk Sun
Eryk Sun added the comment: This is still a problem with WinAPI CreateSymbolicLinkW. It fails to replace slashes with backslashes in the substitute path if it's a relative path, which creates a broken link. As a workaround, os.symlink should replace slashes with backslashes in relative

[issue40754] Test installers before releasing (ModuleNotFoundErrors)

2020-05-30 Thread Steve Dower
Steve Dower added the comment: There are non-binding CI tests run with Github Actions (post-merge) that test from a layout, and last I checked they were all passing. Nobody is really monitoring it but me though, as it isn't a buildbot. The Windows installer also runs pip and IDLE tests

[issue40827] os.readlink should support getting the target's printname in Windows

2020-05-30 Thread Eryk Sun
New submission from Eryk Sun : As discussed in issue 40654, os.readlink should provide a way to get the print name of a symlink target. This is the target path that was actually passed to WinAPI CreateSymbolicLinkW (except for drive-relative paths) and is what a shell would display as the

[issue40826] Segfaults when close file descriptor 0

2020-05-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Simpler reproducer: import os os.close(0) -- components: +Interpreter Core nosy: +serhiy.storchaka title: Segfaults on io.FileIO(0).name in 3.9 -> Segfaults when close file descriptor 0 ___ Python tracker

[issue40826] Segfaults on io.FileIO(0).name in 3.9

2020-05-30 Thread Dong-hee Na
Dong-hee Na added the comment: Thanks for report, I can reproduce it -- stage: -> needs patch ___ Python tracker ___ ___

[issue40826] Segfaults on io.FileIO(0).name in 3.9

2020-05-30 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19915] int.bit_at(n) - Accessing a single bit in O(1)

2020-05-30 Thread Niklas Fiekas
Change by Niklas Fiekas : -- nosy: +niklasf ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40826] Segfaults on io.FileIO(0).name in 3.9

2020-05-30 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- nosy: +remi.lapeyre, vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40826] Segfaults on io.FileIO(0).name in 3.9

2020-05-30 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- type: -> crash ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1635741] Py_Finalize() doesn't clear all Python objects at exit

2020-05-30 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +19783 pull_request: https://github.com/python/cpython/pull/20540 ___ Python tracker ___

[issue40826] Segfaults on io.FileIO(0).name in 3.9

2020-05-30 Thread Jelle Zijlstra
New submission from Jelle Zijlstra : $ gdb ./python ... (gdb) r ... Python 3.9.0b1 (tags/v3.9.0b1:97fe9cfd9f8, May 30 2020, 05:26:48) ... >>> import io >>> io.FileIO(0).name 0 >>> Program received signal SIGSEGV, Segmentation fault. _PyInterpreterState_GET () at

[issue40696] exception chain cycles cause hangs (was "Exception handling with "await" can hang in Python3.9.0b1")

2020-05-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I it related to issue25782? -- nosy: +serhiy.storchaka ___ Python tracker ___ ___

[issue27580] CSV Null Byte Error

2020-05-30 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: Hi Skip, I'm on a Mac so I tried Numbers, the spreadsheet tool that comes with MacOS: Opening and exporting to CSV again works: ➜ ~ cat -v ~/Documents/nul.csv abc;def;1234.5;^@^M a-c;d^@f;1234.5;^@^M ABC;DEF;1.5;^@ When exporting to TSV, it makes the

[issue26369] unicode.decode and str.encode are unnecessarily confusing for non-ascii

2020-05-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue40696] exception chain cycles cause hangs (was "Exception handling with "await" can hang in Python3.9.0b1")

2020-05-30 Thread Dennis Sweeney
Dennis Sweeney added the comment: I believe PR 20539 solves the more general problem (using Floyd's Tortoise and Hare Algorithm), and I would appreciate review / some more ideas for test cases. -- ___ Python tracker

[issue40825] Add a "strict" parameter to csv.writer and csv.DictWriter

2020-05-30 Thread Eric V. Smith
Eric V. Smith added the comment: For backward compatibility, strict would have to default to False. -- ___ Python tracker ___ ___

[issue40762] Writing bytes using CSV module results in b prefixed strings

2020-05-30 Thread Eric V. Smith
Eric V. Smith added the comment: I've created issue40825 for adding a "strict" parameter. -- ___ Python tracker ___ ___

[issue40825] Add a "strict" parameter to csv.writer and csv.DictWriter

2020-05-30 Thread Eric V. Smith
New submission from Eric V. Smith : Currently, the csv library calls str() on each value it writes. This can lead to surprising behavior, see issue40762 for example. On the other hand, for writing the documentation says that the values must be strings or numbers. The proposed "strict"

[issue27580] CSV Null Byte Error

2020-05-30 Thread Skip Montanaro
Skip Montanaro added the comment: Looks like my comment removed Remi from the nosy list. Restoring that... -- nosy: +remi.lapeyre ___ Python tracker ___

[issue31869] commentary on ssl.PROTOCOL_TLS

2020-05-30 Thread Christian Heimes
Christian Heimes added the comment: SSL is dead, too! -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___

[issue40696] exception chain cycles cause hangs (was "Exception handling with "await" can hang in Python3.9.0b1")

2020-05-30 Thread Dennis Sweeney
Change by Dennis Sweeney : -- pull_requests: +19782 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/20539 ___ Python tracker ___

[issue31869] commentary on ssl.PROTOCOL_TLS

2020-05-30 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2 is EOL. -- nosy: +ZackerySpytz ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue27580] CSV Null Byte Error

2020-05-30 Thread Skip Montanaro
Skip Montanaro added the comment: I'm sorry, but why is this issue coming up again after nearly four years? Especially without a patch? (I apologize. I've gotten a bit more grumpy as I've aged.) Let me summarize a bit of history. Back in the early 2000s, Dave Cole at Object Craft in

[issue26407] csv.writer.writerows masks exceptions from __iter__

2020-05-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This bug occurred not only in writerows(), but also in writerow() and csv.reader(). See also more general issue40824. -- ___ Python tracker

[issue26407] csv.writer.writerows masks exceptions from __iter__

2020-05-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It is definitely a bug. It can mask exceptions out of the control of the programmer like MemoryError and KeyboardInterrupt. -- components: +Library (Lib) type: enhancement -> behavior versions: +Python 3.10, Python 3.7, Python 3.8, Python 3.9

[issue40823] Don't use obsolete unittest.makeSuite() in sqlite3 tests

2020-05-30 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- keywords: +patch pull_requests: +19781 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20538 ___ Python tracker

[issue40824] Unexpected errors in __iter__ are masked in "in" and the operator module

2020-05-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +19780 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20537 ___ Python tracker

[issue27580] CSV Null Byte Error

2020-05-30 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: Writing to those files is obviously as easy, since like you said "because by it's very nature it's non-printable" and you will probably not find it in your data: with open('file', 'w') as f: f.write('\x00'.join(data)) It will break if there is a NULL

[issue26407] csv.writer.writerows masks exceptions from __iter__

2020-05-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch nosy: +serhiy.storchaka nosy_count: 2.0 -> 3.0 pull_requests: +19779 stage: test needed -> patch review pull_request: https://github.com/python/cpython/pull/20536 ___ Python tracker

[issue40824] Unexpected errors in __iter__ are masked in "in" and the operator module

2020-05-30 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : All errors raised in the __iter__ method are masked by the TypeError exception in the "in" operator and functions operator.contains(), operator.indexOf() and operator.countOf(). >>> class BadIterable: ... def __iter__(self): ... 1/0 ... >>>

[issue40823] Don't use obsolete unittest.makeSuite() in sqlite3 tests

2020-05-30 Thread Erlend Egeberg Aasland
New submission from Erlend Egeberg Aasland : Use `loadTestsFromTestCase()` iso. `makeSuite()` in sqlite3 tests. Implies changing the prefix for all test methods. Ref. bpo-5846 -- components: Tests messages: 370371 nosy: erlendaasland priority: normal severity: normal status: open

[issue27580] CSV Null Byte Error

2020-05-30 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: I feel like the CSV module could support using NULL as separator and could send a PR with some test to add this but Daniel could you give more information regarding why you need explicit CSV support for this? The CSV parser is needed to read and write CSV

[issue40821] os.getlogin() not working

2020-05-30 Thread Christian Heimes
Christian Heimes added the comment: On POSIX os.getlogin() is a thin wrapper around the glibc function getlogin() https://linux.die.net/man/3/getlogin . The error is coming from glibc. -- nosy: +christian.heimes ___ Python tracker

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

2020-05-30 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- versions: +Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40805] Can no longer patch flask.g

2020-05-30 Thread Rob Taft
Rob Taft added the comment: The test was supposed to patch the flask component during the unit test, the error indicates the patch did not work. The actual error message is not relevant to the actual issue. I don't know why I was directed to here. When I replace it with unittest.mock, it

[issue40759] Deprecate the symbol module

2020-05-30 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- nosy: +pablogsal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40822] Drop support for SQLite pre 3.7.15

2020-05-30 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- title: Drop support for SQLite 3.7.15 -> Drop support for SQLite pre 3.7.15 ___ Python tracker ___

[issue40822] Drop support for SQLite 3.7.15

2020-05-30 Thread Erlend Egeberg Aasland
New submission from Erlend Egeberg Aasland : Ref. bpo-40810 and GH-20330 -- components: Library (Lib) messages: 370367 nosy: erlendaasland priority: normal severity: normal status: open title: Drop support for SQLite 3.7.15 versions: Python 3.10 ___

[issue40061] Possible refleak in _asynciomodule.c future_add_done_callback()

2020-05-30 Thread Kyle Stanley
Kyle Stanley added the comment: Thanks for the PR, Zackery. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue40061] Possible refleak in _asynciomodule.c future_add_done_callback()

2020-05-30 Thread miss-islington
miss-islington added the comment: New changeset 7b78e7f9fd77bb3280ee39fb74b86772a7d46a70 by Zackery Spytz in branch 'master': bpo-40061: Fix a possible refleak in _asynciomodule.c (GH-19748) https://github.com/python/cpython/commit/7b78e7f9fd77bb3280ee39fb74b86772a7d46a70 -- nosy:

[issue40798] The deprecated-removed Sphinx extension need to change the error message based on the Python version

2020-05-30 Thread miss-islington
miss-islington added the comment: New changeset 588efc29c5dc4ffaac116a214d13cca936e346a9 by Miss Islington (bot) in branch '3.9': bpo-40798: Generate a different message for already removed elements (GH-20483) https://github.com/python/cpython/commit/588efc29c5dc4ffaac116a214d13cca936e346a9

[issue40798] The deprecated-removed Sphinx extension need to change the error message based on the Python version

2020-05-30 Thread miss-islington
miss-islington added the comment: New changeset ba1c2c85b39fbcb31584c20f8a63fb87f9cb9c02 by Miss Islington (bot) in branch '3.8': bpo-40798: Generate a different message for already removed elements (GH-20483) https://github.com/python/cpython/commit/ba1c2c85b39fbcb31584c20f8a63fb87f9cb9c02

[issue40798] The deprecated-removed Sphinx extension need to change the error message based on the Python version

2020-05-30 Thread miss-islington
miss-islington added the comment: New changeset a9dbae434f26b2c419a1cd0a8233143f40fd00db by Miss Islington (bot) in branch '3.7': bpo-40798: Generate a different message for already removed elements (GH-20483) https://github.com/python/cpython/commit/a9dbae434f26b2c419a1cd0a8233143f40fd00db

[issue24391] Better repr for threading objects

2020-05-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +19778 pull_request: https://github.com/python/cpython/pull/20534 ___ Python tracker ___

[issue40798] The deprecated-removed Sphinx extension need to change the error message based on the Python version

2020-05-30 Thread Julien Palard
Julien Palard added the comment: Thanks @Rémi for this great idea and Florian for the implementation! -- ___ Python tracker ___ ___

[issue40798] The deprecated-removed Sphinx extension need to change the error message based on the Python version

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

[issue40798] The deprecated-removed Sphinx extension need to change the error message based on the Python version

2020-05-30 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +19775 pull_request: https://github.com/python/cpython/pull/20531 ___ Python tracker

[issue40798] The deprecated-removed Sphinx extension need to change the error message based on the Python version

2020-05-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +19776 pull_request: https://github.com/python/cpython/pull/20532 ___ Python tracker ___

[issue40798] The deprecated-removed Sphinx extension need to change the error message based on the Python version

2020-05-30 Thread Julien Palard
Julien Palard added the comment: New changeset 735d902b363b759df9ff00e58bbf4f7e2bde78cd by Florian Dahlitz in branch 'master': bpo-40798: Generate a different message for already removed elements (GH-20483) https://github.com/python/cpython/commit/735d902b363b759df9ff00e58bbf4f7e2bde78cd

[issue40798] The deprecated-removed Sphinx extension need to change the error message based on the Python version

2020-05-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +19777 pull_request: https://github.com/python/cpython/pull/20533 ___ Python tracker ___

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

2020-05-30 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- pull_requests: +19774 pull_request: https://github.com/python/cpython/pull/20530 ___ Python tracker ___

[issue27580] CSV Null Byte Error

2020-05-30 Thread Daniel Jewell
Daniel Jewell added the comment: Forgive my frustration, but @Skip I really don't see how the definition of CSV relating to Excel (or Gnumeric or LibreOffice) has any relevance as to whether or not the module (and perhaps Python more generally) supports chr(0x00) as a delimiter. (Neither