[issue34694] Dismiss To Avoid Slave/Master wording cause it easier for non English spoken programmers

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue34694] Dismiss To Avoid Slave/Master wording cause it easier for non English spoken programmers

2018-09-19 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: -serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue34694] Dismiss To Avoid Slave/Master wording cause it easier for non English spoken programmers

2018-09-19 Thread Barry A. Warsaw
Change by Barry A. Warsaw : -- nosy: -barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Carol Willing
Carol Willing added the comment: Confirming that I see the same behavior as reported by @xtreak. -- nosy: +willingc stage: -> needs patch versions: +Python 3.7 ___ Python tracker ___

[issue34743] test_database_source_name fails with SQLite 3.7.9

2018-09-19 Thread Berker Peksag
New submission from Berker Peksag : == FAIL: test_database_source_name (sqlite3.test.backup.BackupTests) -- Traceback (most recent call last): File "/home/ber

[issue32557] allow shutil.disk_usage to take a file path on Windows also

2018-09-19 Thread Joe Pamer
Joe Pamer added the comment: Just to loop back, I updated the PR to avoid MAX_PATH and only allocate in the "not a directory" case. Thanks for getting back to me so quickly! One question, though, is that it *does* seem like MAX_PATH is still referenced in several places in posixmodule.c. Is

[issue34743] test_database_source_name fails with SQLite 3.7.9

2018-09-19 Thread Berker Peksag
Change by Berker Peksag : -- keywords: +patch pull_requests: +8844 stage: needs patch -> patch review ___ Python tracker ___ ___ Pyt

[issue34744] New %(flag)s format specifier for argparse.add_argument help string

2018-09-19 Thread helmsman helmsman
New submission from helmsman helmsman : Sometimes you want to provide format description in help message for argparse.add_argument, e.g. for comma-separated key/value set "--flag key1=value1,key2=value2". At this moment there is no format specifier for flag or name of arguments. I propose add

[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Julien Palard
Julien Palard added the comment: I can reproduce it locally [1]. The Python logo at the left dissapear to, it goes from "[LOGO] Python »" to "3.7.0 Documentation »". Did not spotted recent changes in the theme / docsbuild-scripts / cpython/Doc for the moment, but now I can inspect locally. L

[issue34744] New %(flag)s format specifier for argparse.add_argument help string

2018-09-19 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +8845 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Julien Palard
Julien Palard added the comment: I got it back by building with 90f7d455b (7 days ago), so I'm git bisecting... -- ___ Python tracker ___ _

[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Carol Willing
Carol Willing added the comment: @mdk The asyncio folks did make a change to the layout in https://github.com/python/cpython/pull/9364 . It's a bit weird that 3.7 is the release that is missing the search bar. -- ___ Python tracker

[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Julien Palard
Julien Palard added the comment: Yes, got it too : 512d7101098b971837cbb406942215244f636547, they literally removed the searchbox: $ git show 512d7101098b971837cbb406942215244f636547 | grep searchbox -{%- macro searchbox() %} -{# modified from sphinx/themes/basic/searchbox.html #} -{{

[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Julien Palard
Change by Julien Palard : -- nosy: +yselivanov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue32947] Support OpenSSL 1.1.1

2018-09-19 Thread Kurt Roeckx
Kurt Roeckx added the comment: Christian, Do you have any update on this? Any idea when we can expect relased python versions that work with OpenSSL 1.1.1? -- ___ Python tracker ___

[issue34694] Dismiss To Avoid Slave/Master wording cause it easier for non English spoken programmers

2018-09-19 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: -terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Yury Selivanov
Yury Selivanov added the comment: Oh, this is a result of asyncio docs 3.8 -> 3.7 backport. I'll fix this. -- ___ Python tracker ___ __

[issue32947] Support OpenSSL 1.1.1

2018-09-19 Thread Christian Heimes
Christian Heimes added the comment: Soonish, I'm still working on post handshake auth. -- ___ Python tracker ___ ___ Python-bugs-li

[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Carol Willing
Carol Willing added the comment: Does master and 3.7 branch build the docs at different times? It's odd to me that master still shows the search box and 3.7 does not. I'm getting on a flight soon. Yury would be a good person to ping re: changing. -- _

[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Julien Palard
Julien Palard added the comment: Thanks Yuri (and thanks for the rewrite!) -- ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue34712] Style fixes in examples of "Input and Output" tutorial section

2018-09-19 Thread miss-islington
miss-islington added the comment: New changeset d9c89111bd82979ce8716f7ca68c69cf0f46e679 by Miss Islington (bot) in branch '3.7': bpo-34712: Fix style in examples in "Input and Output" (GH-9361) https://github.com/python/cpython/commit/d9c89111bd82979ce8716f7ca68c69cf0f46e679 -- __

[issue34712] Style fixes in examples of "Input and Output" tutorial section

2018-09-19 Thread Ned Deily
Ned Deily added the comment: Thanks for the improvement! -- nosy: +ned.deily resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7 ___ Python tracker

[issue34603] ctypes on Windows: error calling C function that returns a struct containing 3 bools

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: New changeset b63a16febbd1c943c9dbc5c651326b410aa50698 by Victor Stinner (Vladimir Matveev) in branch '2.7': [2.7] bpo-34603, ctypes/libffi_msvc: Fix returning structs from functions (GH-9258) (GH-9425) https://github.com/python/cpython/commit/b63a16febbd1c9

[issue34603] ctypes on Windows: error calling C function that returns a struct containing 3 bools

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: Thanks MatteoL for the bug report, it has been fixed in 2.7, 3.6, 3.7 and master. Thanks Vladimir Matveev for the fix! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python trac

[issue34694] Dismiss To Avoid Slave/Master wording cause it easier for non English spoken programmers

2018-09-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: If this issue were not to be immediately closed, then cleaning the components and nosy lists should have been the first response. I was tempted to do the latter now, to cut short the cavalcade of un-nosy emails, but anticipated that someone would object. Bu

[issue34694] Dismiss To Avoid Slave/Master wording cause it easier for non English spoken programmers

2018-09-19 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: -terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue34589] Py_Initialize() and Py_Main() should not enable C locale coercion

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +8847 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34694] Dismiss To Avoid Slave/Master wording cause it easier for non English spoken programmers

2018-09-19 Thread Zachary Ware
Change by Zachary Ware : -- assignee: docs@python -> nosy: -docs@python, zach.ware ___ Python tracker ___ ___ Python-bugs-list mai

[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Yury Selivanov
Change by Yury Selivanov : -- keywords: +patch pull_requests: +8848 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Yury Selivanov
Yury Selivanov added the comment: > Does master and 3.7 branch build the docs at different times? It's odd to me > that master still shows the search box and 3.7 does not. layout.html was refactored in 3.8: scripts were moved into separate files. I accidentally copied it from 3.8 to 3.7, wh

[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 581890cda36f60cd46185c6e184abe35a95813a2 by Yury Selivanov in branch '3.7': bpo-34733: Return of the docs search bar (GH-9431) https://github.com/python/cpython/commit/581890cda36f60cd46185c6e184abe35a95813a2 -- __

[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Yury Selivanov
Yury Selivanov added the comment: Closing this now, please reopen if there's still no search bar in a few hours. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue34589] Py_Initialize() and Py_Main() should not enable C locale coercion

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: New changeset 06e7608207daab9fb82d13ccf2d3664535442f11 by Victor Stinner in branch 'master': Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" (GH-9430) https://github.com/python/cpython/commit/06e7608207daab9fb82d13ccf2d3664535442f11

[issue34663] Support POSIX_SPAWN_USEVFORK flag in posix_spawn

2018-09-19 Thread Gregory P. Smith
Gregory P. Smith added the comment: Agreed on not exposing it. It seems obsolete in recent glibc and the older glibc implementations that had it may have made questionable decisions. :) Thanks for chiming in Florian, and thanks Pablo for your detailed investigation. :) --

[issue34724] argparse subparser help indent too short

2018-09-19 Thread paul j3
paul j3 added the comment: Looks like I had my say on this in the Stackoverflow link (3 yrs ago). -- nosy: +paul.j3 ___ Python tracker ___

[issue34742] Add optional argument for exit status in argparse.ArgumentParser.error

2018-09-19 Thread paul j3
Change by paul j3 : -- nosy: +paul.j3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue31958] UUID versions are not validated to lie in the documented range

2018-09-19 Thread Berker Peksag
Berker Peksag added the comment: Issue 34732 is actually a duplicate of this issue, but I'm going to close this one instead since the former has already two open pull requests. Thanks for the report! -- nosy: +berker.peksag resolution: -> duplicate stage: -> resolved status: open -

[issue34732] uuid returns version more than 5

2018-09-19 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report and for the PRs. The approach in PR 9417 seems reasonable to me, but we need to add some tests for all supported platforms and fix the test_windll_getnode test. I'm removing Python 3.6 from the versions list since it's nearly end of its

[issue34745] asyncio ssl memory leak

2018-09-19 Thread Alexander Mohr
New submission from Alexander Mohr : I've been trying to track down a leak in aiohttp: https://github.com/aio-libs/aiohttp/issues/3010 it seems like this leak now occurs with raw asyncio SSL sockets. when the gist script is run like so: python3.7 `which mprof` run --interval=1 ~/dev/test_lea

[issue34694] Dismiss To Avoid Slave/Master wording cause it easier for non English spoken programmers

2018-09-19 Thread Gabriel Marko
Change by Gabriel Marko : -- nosy: -suic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue34660] Replace ableist terms and pejoratives in source code.

2018-09-19 Thread Gabriel Marko
Change by Gabriel Marko : -- nosy: -suic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue34744] New %(flag)s format specifier for argparse.add_argument help string

2018-09-19 Thread paul j3
paul j3 added the comment: In your example, what is 'flag'? There's no Action attribute of that name. There is a 'dest' and a 'option_strings' list. All the 'help' '%(...)s' does is display one of the Action object attributes, the most common one is 'default'. Try this: a = parser.ad

[issue34605] Avoid master/slave terminology

2018-09-19 Thread Gabriel Marko
Change by Gabriel Marko : -- nosy: -suic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue34595] PyUnicode_FromFormat(): add %T format for an object type name

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: I close this issue until we can agree on an API. -- resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Python tracker __

[issue34745] asyncio ssl memory leak

2018-09-19 Thread Yury Selivanov
Yury Selivanov added the comment: What is "raw asyncio SSL sockets"? We don't use SSL sockets in asyncio, we use SSL Memory BIO. Do you think that some SSL context objects aren't being properly released? BTW, can you see the leak when run under uvloop? -- _

[issue18174] Make regrtest with --huntrleaks check for fd leaks

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: I give up on that close. I closed my PR 7827 and PR 7966. -- resolution: -> wont fix stage: patch review -> resolved status: open -> closed ___ Python tracker _

[issue34639] PYTHONCOERCECLOCALE is ignored when using -E or -I option

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: The discussion moved back to bpo-34589. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Py_Initialize() and Py_Main() should not enable C locale coercion ___ Python tracker

[issue34285] regrtest: in case of test failure, add "always look on the bright side of life"

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-

[issue33718] Enhance regrtest: meta-ticket for multiple changes

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue33717] Enhance test.pythoninfo: meta-ticket for multiple changes

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue32183] Coverity: CID 1423264: Insecure data handling (TAINTED_SCALAR)

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ _

[issue32128] test_nntplib: test_article_head_body() fails in SSL mode

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue31321] traceback.clear_frames() doesn't clear *all* frames

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue30318] test_distutils is too verbose on Windows

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-

[issue30776] regrtest: change -R/--huntrleaks rule to decide if a test leaks references

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ ___

[issue29881] Add a new private API clear private variables, which are initialized once, at Python shutdown

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue34745] asyncio ssl memory leak

2018-09-19 Thread Alexander Mohr
Alexander Mohr added the comment: sorry, by "raw" I mean in the context of aiohttp, so just using the normal python ssl context and asyncio sockets. I don't think it's an object not getting GC'd because I didn't see any increase on object counts, nor leaks per tracemalloc. I think it's som

[issue30170] "tests may fail, unable to create temporary directory" warning on buildbot: add a cleanup step to buildbots

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue32557] allow shutil.disk_usage to take a file path on Windows also

2018-09-19 Thread Steve Dower
Steve Dower added the comment: (Excuse the GitHub syntax - was about to post it there, but it got long enough to belong here) Regarding the `_dirnameW` discussion, fixing `_dirname` would be ideal, but that is bloating out your PR quite a bit :) The "right" function to use there is [PathCc

[issue30227] test_site must not write outside the build directory: must not write into $HOME/.local/

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue29451] Use _PyArg_Parser for _PyArg_ParseStack(): support positional only arguments

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue30244] Emit a ResourceWarning in concurrent.futures executor destructors

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue30188] test_nntplib: random EOFError in setUpClass()

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker ___ ___

[issue26568] Add a new warnings.showwarnmsg() function taking a warnings.WarningMessage object

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bug

[issue34745] asyncio ssl memory leak

2018-09-19 Thread Yury Selivanov
Yury Selivanov added the comment: Would you be able to test uvloop/master branch? Current uvloop 0.11.x uses pretty much the asyncio implementation; the master branch has a completely rewritten SSL layer. If the master branch has the leak it might mean that the root cause is indeed in eith

[issue21998] asyncio: support fork

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: > I'm torn between 2 & 3. Guido, Victor, Martin, what do you think? Give up, document that fork() is not supported and close the issue :-) IMHO it's not worth it. -- ___ Python tracker

[issue21702] asyncio: remote_addr of create_datagram_endpoint() is not documented

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue20414] Python 3.4 has two Overlapped types

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue19756] test_nntplib: sporadic failures, network isses? server down?

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: I didn't see test_nntplib failing recently, so I close the issue as outdated. -- resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue19431] Document PyFrame_FastToLocals() and PyFrame_FastToLocalsWithError()

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: It seems like these functions should be documented, so I close the issue. -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker __

[issue19431] Document PyFrame_FastToLocals() and PyFrame_FastToLocalsWithError()

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: out of date -> wont fix ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue18295] Possible integer overflow in PyCode_New()

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue28224] Compilation warnings on Windows: export 'PyInit_xx' specified multiple times

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue29419] Argument Clinic: inline PyArg_UnpackTuple and PyArg_ParseStack(AndKeyword)?

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue29465] Modify _PyObject_FastCall() to reduce stack consumption

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: > I should measure the stack usage to check if it's still worth it. IMHO we gone far enough in optimizing the stack usage: https://vstinner.github.io/contrib-cpython-2017q1.html I close the issue. -- resolution: -> fixed stage: patch review -> resol

[issue29674] Use GCC __attribute__((alloc_size(x, y))) on PyMem_Malloc() functions

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue30198] distutils build_ext: don't run newer_group() in parallel in multiple threads when using parallel

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue33868] test__xxsubinterpreters: test_subinterpreter() fails randomly on AMD64 Ubuntu Shared 3.x

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue33613] test_multiprocessing_fork: test_semaphore_tracker_sigint() fails with -W error

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue33531] test_asyncio: test_subprocess test_stdin_broken_pipe() failure on Travis CI

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue21998] asyncio: support fork

2018-09-19 Thread Yury Selivanov
Yury Selivanov added the comment: I'll revisit this later. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31687] test_semaphore_tracker() of test_multiprocessing_spawn fails randomly (race condition?)

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: bpo-33613 and bpo-34040 have been fixed. I hope that it will be enough. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker __

[issue30816] test_open() of test_eintr timeout after 10 min on "x86-64 El Capitan 3.x"

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue30317] test_timeout() of test_multiprocessing_spawn.WithManagerTestBarrier fails randomly on x86 Windows7 3.x buildbot

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: Let's close this giant issue since a fix has been merged. Please open a new issue if a similar bug appears. Thanks Pablo Galindo for the fix ;-) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue29471] AST: add an attribute to FunctionDef to distinguish functions from generators and coroutines

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: > I'm not sure we need this feature TBH. Ok, I close the issue. -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker __

[issue29306] Check usage of Py_EnterRecursiveCall() and Py_LeaveRecursiveCall() in new FASTCALL functions

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: I'm not sure about touching the stable branches. At least, the issue has been fixed since Python 3.7. I close the issue. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker

[issue19613] test_nntplib: sporadic failures, test_article_head_body()

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: I suggest to close the issue since the bug didn't show up recently. -- ___ Python tracker ___ ___

[issue23236] asyncio: add timeout to StreamReader read methods

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: This feature request doesn't seem popular and I lost track of it, so I just close the issue. Sorry. -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker

[issue32093] macOS: implement time.thread_time() using thread_info()

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: > I'm not sure if it is worthwhile to implement this fairly specialised > function for older macOS releases due to the maintenance cost. Ok. I close the issue. -- resolution: -> wont fix stage: -> resolved status: open -> closed __

[issue34131] test_threading: BarrierTests.test_default_timeout() failed on AppVeyor

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Yury Selivanov
Yury Selivanov added the comment: Aaand... it's back. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue33920] test_asyncio: test_run_coroutine_threadsafe_with_timeout() failed on AMD64 FreeBSD 10.x Shared 3.7

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue33683] asyncio: sendfile tests ignore SO_SNDBUF on Windows

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue34150] test_multiprocessing_spawn: Dangling processes leaked on AMD64 FreeBSD 10.x Shared 3.x

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue33686] test_concurrent_futures: test_pending_calls_race() failed on x86 Windows7 3.6

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue33966] test_multiprocessing_spawn.WithProcessesTestPool.test_traceback() leaks 4 handles on Windows

2018-09-19 Thread STINNER Victor
STINNER Victor added the comment: I give up on that one :-( It doesn't seem easy to fix this corner case without changing the behaviour. -- resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue33680] regrtest: re-run failed tests in a subprocess

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue30884] regrtest -jN --timeout=TIMEOUT should kill child process running longer than TIMEOUT seconds

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue33676] test_multiprocessing_fork: dangling threads warning

2018-09-19 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue34660] Replace ableist terms and pejoratives in source code.

2018-09-19 Thread Gabriel Marko
Gabriel Marko added the comment: @terry.reed: I politely ask you: Please use my proper first name if you refer to me and please don't call me an extremist (like here https://bugs.python.org/msg325802). Feel free to criticize my opinion but don't put labels on me. We don't know each other. L

<    1   2   3   >