[issue37283] Unexpected behavior when running installer a second time with the same arguments or unattend.xml

2019-09-09 Thread Steve Dower
Steve Dower added the comment: New changeset 3a0ddbcdfcbc0f4372905fabf81e093f1b043e99 by Steve Dower in branch 'master': bpo-37283: Ensure command-line and unattend.xml setting override previously detected states in Windows installer (GH-15759)

[issue34652] never enable lchmod on Linux

2019-09-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +15416 pull_request: https://github.com/python/cpython/pull/15763 ___ Python tracker ___

[issue34652] never enable lchmod on Linux

2019-09-09 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset bed04b664729e3e6fcee42daa108936360bac6ea by Benjamin Peterson in branch 'master': bpo-34652 again: Remove lchmod from the default AC_CHECK_FUNCS list. (GH-15758)

[issue37212] ordered keyword arguments in unittest.mock.call repr and error messages

2019-09-09 Thread miss-islington
miss-islington added the comment: New changeset bee8bfe5f440c2dde7f5af189febdbf81b27abd5 by Miss Islington (bot) in branch '3.8': bpo-37212: Preserve keyword argument order in unittest.mock.call and error messages (GH-14310)

[issue38066] Hide internal asyncio.Stream methods

2019-09-09 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +15415 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15762 ___ Python tracker ___

[issue37841] Python store app launcher has dependency on msvcp140.dll

2019-09-09 Thread miss-islington
miss-islington added the comment: New changeset 58a7f809ac978ed54034b7b48f2ea64000aa4661 by Miss Islington (bot) in branch '3.7': bpo-37841: Remove python_uwp dependency on msvcp140.dll (GH-15253) https://github.com/python/cpython/commit/58a7f809ac978ed54034b7b48f2ea64000aa4661 --

[issue38066] Hide internal asyncio.Stream methods

2019-09-09 Thread Andrew Svetlov
New submission from Andrew Svetlov : As discussed in discussion https://github.com/python/cpython/pull/14488#discussion_r322176319 Hide feed_eof(), feed_data(), set_exception() and set_transport() methods. -- components: asyncio messages: 351433 nosy: asvetlov, yselivanov priority:

[issue37383] call count in not registered in AsyncMock till the coroutine is awaited

2019-09-09 Thread Lisa Roach
Change by Lisa Roach : -- keywords: +patch pull_requests: +15414 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15761 ___ Python tracker ___

[issue37754] Consistency of Unix's shared_memory implementation with windows

2019-09-09 Thread Davin Potts
Davin Potts added the comment: A shared semaphore approach for the resource tracker sounds appealing as a way to make the behavior on Windows and posix systems more consistent. However this might get implemented, we should not artificially prevent users from having some option to persist

[issue34596] [unittest] raise error if @skip is used with an argument that looks like a test method

2019-09-09 Thread Zachary Ware
Zachary Ware added the comment: I think we need Michael's ruling on which way to go here. I'm fine with either an exception or a default reason, but still lean towards the default. I don't think `skipIf` or `skipUnless` really need a change either way; they both require two arguments and

[issue36876] Global C variables are a problem.

2019-09-09 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +15413 pull_request: https://github.com/python/cpython/pull/15760 ___ Python tracker ___

[issue36250] pdb: interaction might cause "ValueError: signal only works in main thread"

2019-09-09 Thread miss-islington
miss-islington added the comment: New changeset 87a5a331eab5a99538d60a6dab25bdf299a68e3e by Miss Islington (bot) in branch '3.8': bpo-36250: ignore ValueError from signal in non-main thread (GH-12251) https://github.com/python/cpython/commit/87a5a331eab5a99538d60a6dab25bdf299a68e3e

[issue37283] Unexpected behavior when running installer a second time with the same arguments or unattend.xml

2019-09-09 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +15412 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/15759 ___ Python tracker

[issue34652] never enable lchmod on Linux

2019-09-09 Thread Benjamin Peterson
Change by Benjamin Peterson : -- pull_requests: +15411 pull_request: https://github.com/python/cpython/pull/15758 ___ Python tracker ___

[issue37683] Use importlib.resources in venv

2019-09-09 Thread Vinay Sajip
Vinay Sajip added the comment: The install_scripts() API is intended to allow users to add their own venv-specific scripts from their own project folders. We could add an install_resources() method, which would add all the resources in a given package. The signature would be def

[issue37589] Missing dependences in the Makefile

2019-09-09 Thread Thomas Wouters
Change by Thomas Wouters : -- keywords: +patch pull_requests: +15410 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15757 ___ Python tracker ___

[issue37841] Python store app launcher has dependency on msvcp140.dll

2019-09-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +15409 pull_request: https://github.com/python/cpython/pull/15756 ___ Python tracker ___

[issue37212] ordered keyword arguments in unittest.mock.call repr and error messages

2019-09-09 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 ___ Python tracker ___

[issue37383] call count in not registered in AsyncMock till the coroutine is awaited

2019-09-09 Thread Lisa Roach
Lisa Roach added the comment: I think you are right, I'd prefer to leave it in. It also helps users who are switching from AsyncTest to the std lib AsyncMock, they can keep using `await_count`. I'll update the docs! -- ___ Python tracker

[issue37212] ordered keyword arguments in unittest.mock.call repr and error messages

2019-09-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +15408 pull_request: https://github.com/python/cpython/pull/15755 ___ Python tracker ___

[issue38065] Document the datetime capsule API

2019-09-09 Thread Paul Ganssle
New submission from Paul Ganssle : The datetime module has a capsule API, which is very useful for other languages' bindings, but the C API documentation for datetime only covers the C macros: https://docs.python.org/3/c-api/datetime.html The current extent of the documentation is that

[issue33523] loop.run_until_complete re-entrancy to support more complicated codebases in transition to asyncio

2019-09-09 Thread Yury Selivanov
Yury Selivanov added the comment:  -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37212] ordered keyword arguments in unittest.mock.call repr and error messages

2019-09-09 Thread Zachary Ware
Zachary Ware added the comment: New changeset 9d607061c9c888913ae2c18543775cf360d55f27 by Zachary Ware (Xtreak) in branch 'master': bpo-37212: Preserve keyword argument order in unittest.mock.call and error messages (GH-14310)

[issue37909] Thread pool return ref hold memory

2019-09-09 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue33523] loop.run_until_complete re-entrancy to support more complicated codebases in transition to asyncio

2019-09-09 Thread Andrew Svetlov
Andrew Svetlov added the comment: Let's close the issue as "won't fix". Third-party loop implementation *can* be reentrant but we don't want to encourage people to use this pattern in stdlib. -- resolution: -> wont fix stage: patch review -> resolved status: open -> closed

[issue37383] call count in not registered in AsyncMock till the coroutine is awaited

2019-09-09 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: > I wonder if `await_count` is really necessary, since it is essentially the > same as `call_count`. Would it be too late or confusing to remove it now? IMO if we are to document that mock_calls is recorded over await then we can have both

[issue38037] reference counter issue in signal module

2019-09-09 Thread Ma Lin
Change by Ma Lin : -- pull_requests: +15407 pull_request: https://github.com/python/cpython/pull/15753 ___ Python tracker ___ ___

[issue38063] Modify test_socket.py to use unittest test discovery

2019-09-09 Thread STINNER Victor
STINNER Victor added the comment: > See also #14408 In 2012, test_main() was used to skip a few test cases. But since that time, the availability tests were moved from test_main() to the test case classes directly using unittest.skipIf or unittest.skipUnless decorators. So now using

[issue36250] pdb: interaction might cause "ValueError: signal only works in main thread"

2019-09-09 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.9 ___ Python tracker ___

[issue36250] pdb: interaction might cause "ValueError: signal only works in main thread"

2019-09-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +15406 pull_request: https://github.com/python/cpython/pull/15752 ___ Python tracker ___

[issue36250] pdb: interaction might cause "ValueError: signal only works in main thread"

2019-09-09 Thread Zachary Ware
Zachary Ware added the comment: New changeset 8d64bfafdffd9f866bb6ac2e5b4c4bdfcb16aea0 by Zachary Ware (Daniel Hahler) in branch 'master': bpo-36250: ignore ValueError from signal in non-main thread (GH-12251) https://github.com/python/cpython/commit/8d64bfafdffd9f866bb6ac2e5b4c4bdfcb16aea0

[issue37283] Unexpected behavior when running installer a second time with the same arguments or unattend.xml

2019-09-09 Thread Steve Dower
Steve Dower added the comment: Okay, this is definitely an ordering issue in Tools/msi/bundle/bootstrap/PythonBootstrapApplication.cpp Fixing most of the options is easy - just a case of moving LoadOptionalFeatureStates() a few lines up - but Install_launcher is set much later. I should be

[issue30491] Add a lightweight mechanism for detecting un-awaited coroutine objects

2019-09-09 Thread Andrew Svetlov
Andrew Svetlov added the comment: This is a new feature (and not a blocker). Shift to 3.9. Nathaniel, the PR is outdated. Have you an intention to land it or the issue can be closed by the lack of interest? -- nosy: +asvetlov versions: +Python 3.9 -Python 3.8

[issue38063] Modify test_socket.py to use unittest test discovery

2019-09-09 Thread STINNER Victor
STINNER Victor added the comment: Right now, test_main() is awful: 75 lines of code which is a very long list of class names! There are just 2 lines to check if tests don't leak a running thread. def test_main(): tests = [GeneralModuleTests, BasicTCPTest, TCPCloserTest, TCPTimeoutTest,

[issue37705] winerror_to_errno implementation

2019-09-09 Thread miss-islington
miss-islington added the comment: New changeset c25759187829d5732eea73f52a269c88aba28371 by Miss Islington (bot) in branch '3.7': bpo-37705: Improve the implementation of winerror_to_errno() (GH-15623) https://github.com/python/cpython/commit/c25759187829d5732eea73f52a269c88aba28371

[issue37383] call count in not registered in AsyncMock till the coroutine is awaited

2019-09-09 Thread Lisa Roach
Lisa Roach added the comment: I wonder if `await_count` is really necessary, since it is essentially the same as `call_count`. Would it be too late or confusing to remove it now? -- ___ Python tracker

[issue37705] winerror_to_errno implementation

2019-09-09 Thread miss-islington
miss-islington added the comment: New changeset 68e401fa0b1a3407bce395ad893535f65107ee6e by Miss Islington (bot) in branch '3.8': bpo-37705: Improve the implementation of winerror_to_errno() (GH-15623) https://github.com/python/cpython/commit/68e401fa0b1a3407bce395ad893535f65107ee6e

[issue11953] Missing WSA* error codes

2019-09-09 Thread Steve Dower
Steve Dower added the comment: New changeset eb02196bd95ea12fcccff3960f36601596811570 by Steve Dower in branch '3.8': bpo-11953: Extend table of Windows WSA* error codes (GH-15004) https://github.com/python/cpython/commit/eb02196bd95ea12fcccff3960f36601596811570 --

[issue11953] Missing WSA* error codes

2019-09-09 Thread Steve Dower
Change by Steve Dower : -- assignee: -> steve.dower resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8, Python 3.9 -Python 3.3 ___ Python tracker

[issue37445] Some FormatMessageW() calls use FORMAT_MESSAGE_FROM_SYSTEM without FORMAT_MESSAGE_IGNORE_INSERTS

2019-09-09 Thread Steve Dower
Steve Dower added the comment: Going to say this doesn't qualify for 2.7 (unless someone insists and provides a PR), given the lack of reports that anything is actually impacted. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 2.7

[issue38064] Agen Poker Online Terpercaya

2019-09-09 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: This looks like spam to me. Feel free to reopen the issue if incorrect with a better description and example of the problem. -- nosy: +xtreak resolution: -> not a bug stage: -> resolved status: open -> closed

[issue32587] Make REG_MULTI_SZ support zero-length strings

2019-09-09 Thread Steve Dower
Steve Dower added the comment: This introduced a new warning: c:\projects\cpython\pc\winreg.c(775): warning C4267: '-=': conversion from 'size_t' to 'int', possible loss of data [C:\Projects\cpython\PCbuild\pythoncore.vcxproj] I'll fix it (after I'm done with my current task) unless

[issue37383] call count in not registered in AsyncMock till the coroutine is awaited

2019-09-09 Thread Lisa Roach
Lisa Roach added the comment: Agreed, I think documentation can be clearer around this. I'll add a PR to try to clarify. -- ___ Python tracker ___

[issue38063] Modify test_socket.py to use unittest test discovery

2019-09-09 Thread Zachary Ware
New submission from Zachary Ware : See also #14408. -- nosy: +zach.ware ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue38064] Spam

2019-09-09 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg351408 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue38064] Spam

2019-09-09 Thread Zachary Ware
Change by Zachary Ware : -- components: -Cross-Build nosy: -Alex.Willmer, pokeronline63, xtreak title: Agen Poker Online Terpercaya -> Spam versions: -Python 3.7 ___ Python tracker

[issue38063] Modify test_socket.py to use unittest test discovery

2019-09-09 Thread STINNER Victor
Change by STINNER Victor : -- versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38064] Agen Poker Online Terpercaya

2019-09-09 Thread Poker Online
New submission from Poker Online : Situs agen poker online terpercayahttps://www.jakartapoker.net/ -- components: Cross-Build messages: 351408 nosy: Alex.Willmer, pokeronline63 priority: normal severity: normal status: open title: Agen Poker Online Terpercaya type: behavior versions:

[issue37383] call count in not registered in AsyncMock till the coroutine is awaited

2019-09-09 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I just checked the behavior with asynctest. The _mock_call implementation where the call is recorded is similar except that in asynctest it's a synchronous function [0] and in AsyncMock it's an async function [1] thus needs to be awaited to

[issue38063] Modify test_socket.py to use unittest test discovery

2019-09-09 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +15405 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15751 ___ Python tracker ___

[issue38063] Modify test_socket.py to use unittest test discovery

2019-09-09 Thread STINNER Victor
Change by STINNER Victor : -- components: Tests nosy: vstinner priority: normal severity: normal status: open title: Modify test_socket.py to use unittest test discovery type: enhancement versions: Python 3.9 ___ Python tracker

[issue37936] gitignore file is too broad

2019-09-09 Thread miss-islington
miss-islington added the comment: New changeset c837ad408e85eed9d20ba8331751df15e14f6aef by Miss Islington (bot) in branch '3.8': bpo-37936: Avoid ignoring files that we actually do track. (GH-15451) https://github.com/python/cpython/commit/c837ad408e85eed9d20ba8331751df15e14f6aef

[issue35667] activate for venv containing apostrophe doesn't work in powershell

2019-09-09 Thread Vinay Sajip
Vinay Sajip added the comment: This has reportedly been fixed by the changes made to fix bpo-37354. I'll close this, but please reopen if you find it's still a problem. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue1154351] add get_current_dir_name() to os module

2019-09-09 Thread STINNER Victor
STINNER Victor added the comment: I don't see much traction to get this feature into Python. Only a few comments since 2005. I close the issue. The function implement is just a few lines of pure Python code. If you need it, it's easy to put it in your project. Sorry, but I'm not convinced

[issue1154351] add get_current_dir_name() to os module

2019-09-09 Thread STINNER Victor
STINNER Victor added the comment: I rejected PR 10117 which adds os.get_current_dir_name(). Copy of my comment: https://github.com/python/cpython/pull/10117#issuecomment-529399532 The os module is thin wrappers to functions of the libc or even system calls. We don't implement heuristic using

[issue32587] Make REG_MULTI_SZ support zero-length strings

2019-09-09 Thread miss-islington
miss-islington added the comment: New changeset ebca7eb093f31052ff9f245b306d38941c28a1ad by Miss Islington (bot) in branch '3.8': bpo-32587: Make winreg.REG_MULTI_SZ support zero-length strings (GH-13239) https://github.com/python/cpython/commit/ebca7eb093f31052ff9f245b306d38941c28a1ad

[issue32587] Make REG_MULTI_SZ support zero-length strings

2019-09-09 Thread miss-islington
miss-islington added the comment: New changeset bbf02da42e2368ae6b40015d6e92eaac4120f2dc by Miss Islington (bot) in branch '3.7': bpo-32587: Make winreg.REG_MULTI_SZ support zero-length strings (GH-13239) https://github.com/python/cpython/commit/bbf02da42e2368ae6b40015d6e92eaac4120f2dc

[issue37857] Setting logger.level directly has no effect due to caching in 3.7+

2019-09-09 Thread Vinay Sajip
Vinay Sajip added the comment: That code in the wild that sets the level attribute directly is wrong and should be changed, right? The documentation has always been clear that setLevel() should be used. If we now take steps to support setting the level via attribute, isn't that encouraging

[issue37531] Fix regrtest timeout for subprocesses: regrtest -jN --timeout=SECONDS

2019-09-09 Thread STINNER Victor
STINNER Victor added the comment: Crap, test_regrtest.test_multiprocessing_timeout() hangs sometimes (randomly), and then support.temp_cwd() fails on rmtree() with "PermissionError: [WinError 32] The process cannot access the file because it is being used by another process". running:

[issue37835] typing.get_type_hints wrong namespace for forward-declaration of inner class

2019-09-09 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: > I anyway always wonder, why functions, which are methods, do not hold a > reference to the class, which they belong to. This may indeed be a useful feature on its own, but it will also require a much more wider discussion. --

[issue38038] Remove urllib.parse._splittype from xmlrpc.client

2019-09-09 Thread Dong-hee Na
Dong-hee Na added the comment: Understood -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34037] asyncio: BaseEventLoop.close() shutdowns the executor without waiting causing leak of dangling threads

2019-09-09 Thread Yury Selivanov
Yury Selivanov added the comment: > What do you think of the "shutdown_default_executor()" name? Yeah, I think it's a better name! -- ___ Python tracker ___

[issue15817] Misc/gdbinit: Expose command documentation to gdb help

2019-09-09 Thread Zachary Ware
Zachary Ware added the comment: New changeset 14f7de72b62ec8e73a8a57b25ad8fef230dc6a3c by Zachary Ware in branch '3.8': [3.8] bpo-15817: gdbinit: Document commands after defining them (GH-15021) (#15744) https://github.com/python/cpython/commit/14f7de72b62ec8e73a8a57b25ad8fef230dc6a3c

[issue37445] Some FormatMessageW() calls use FORMAT_MESSAGE_FROM_SYSTEM without FORMAT_MESSAGE_IGNORE_INSERTS

2019-09-09 Thread miss-islington
miss-islington added the comment: New changeset 1af2c0ec2f63cc6516eb814c3e29d94451a52194 by Miss Islington (bot) in branch '3.7': bpo-37445: Include FORMAT_MESSAGE_IGNORE_INSERTS in FormatMessageW() calls (GH-14462)

[issue34037] asyncio: BaseEventLoop.close() shutdowns the executor without waiting causing leak of dangling threads

2019-09-09 Thread STINNER Victor
STINNER Victor added the comment: "shutdown_threadpool()" name What do you think of the "shutdown_default_executor()" name? The default executor can be overriden by set_default_executor(): def set_default_executor(self, executor): if not isinstance(executor,

[issue37383] call count in not registered in AsyncMock till the coroutine is awaited

2019-09-09 Thread Lisa Roach
Lisa Roach added the comment: I see your point it is confusing the difference between the async and sync API, but I think the current AsyncMock call check is correct. According to the asyncio docs: "...simply calling a coroutine will not schedule it to be executed"

[issue36311] Flaw in Windows code page decoder for large input

2019-09-09 Thread Steve Dower
Steve Dower added the comment: Declaring this out-of-scope for 2.7, unless someone wants to insist (and provide a PR). -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed versions: -Python 2.7 ___ Python tracker

[issue38060] precedence (relational, logical operator)not working with single value

2019-09-09 Thread Steven D'Aprano
Steven D'Aprano added the comment: Tim is correct, the behaviour is right, however the docs could be clearer. I think what you are missing is that ``or`` and ``and`` are short-circuiting operators. So in the expression 9 or (anything) the "anything" expression never gets evaluated

[issue37445] Some FormatMessageW() calls use FORMAT_MESSAGE_FROM_SYSTEM without FORMAT_MESSAGE_IGNORE_INSERTS

2019-09-09 Thread miss-islington
miss-islington added the comment: New changeset e103732f5df13a97f610a8b80883895f7a273573 by Miss Islington (bot) in branch '3.8': bpo-37445: Include FORMAT_MESSAGE_IGNORE_INSERTS in FormatMessageW() calls (GH-14462)

[issue38038] Remove urllib.parse._splittype from xmlrpc.client

2019-09-09 Thread STINNER Victor
STINNER Victor added the comment: splittype() was deprecated in Python 3.8 by bpo-27485: commit 0250de48199552cdaed5a4fe44b3f9cdb5325363 Author: Cheryl Sabella Date: Wed Apr 25 16:51:54 2018 -0700 bpo-27485: Rename and deprecate undocumented functions in urllib.parse (GH-2205)

[issue38015] inline function generates slightly inefficient machine code

2019-09-09 Thread Benjamin Peterson
Benjamin Peterson added the comment: I agree with msg351348. The performance wins are very context-dependent and even then very small. It's not worth further disturbing the small int code. So, we should close this issue out. -- nosy: +benjamin.peterson

[issue21120] PyArena type is used in headers from the limited API

2019-09-09 Thread Mark Shannon
Mark Shannon added the comment: This seems like the correct thing to do. Since the AST changes from version to version, I don't see how these files could reasonably be part of the limited API. -- nosy: +Mark.Shannon ___ Python tracker

[issue34037] asyncio: BaseEventLoop.close() shutdowns the executor without waiting causing leak of dangling threads

2019-09-09 Thread Yury Selivanov
Yury Selivanov added the comment: Here's the API I propose to solve this problem: https://github.com/python/cpython/pull/15735#pullrequestreview-285389412 Summary: * Add a new loop.shutdown_threadpool() method. Just like with shutdown_asyncgens() -- it would be invalid to call

[issue37251] Mocking a MagicMock with a function spec results in an AsyncMock

2019-09-09 Thread Lisa Roach
Lisa Roach added the comment: I made a new branch with the changes I am suggesting here to try to be more clear: https://github.com/lisroach/cpython/tree/issue37251 What do you think? -- ___ Python tracker

[issue37936] gitignore file is too broad

2019-09-09 Thread Benjamin Peterson
Change by Benjamin Peterson : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue38061] FreeBSD: Optimize subprocess.Popen(close_fds=True) using closefrom()

2019-09-09 Thread STINNER Victor
STINNER Victor added the comment: > @Victor I mounted fdescfs on the buildbot workers to make the tests run > faster. You're correct that it's not enabled by default. Would it be possible to modify FreeBSD to enable it by default? Or is there a reason to not enable it by default? > We're

[issue37705] winerror_to_errno implementation

2019-09-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +15403 pull_request: https://github.com/python/cpython/pull/15749 ___ Python tracker ___

[issue36816] self-signed.pythontest.net TLS certificate key is too weak

2019-09-09 Thread Gregory P. Smith
Gregory P. Smith added the comment: I believe this has been addressed. -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue37936] gitignore file is too broad

2019-09-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +15401 pull_request: https://github.com/python/cpython/pull/15747 ___ Python tracker ___

[issue37705] winerror_to_errno implementation

2019-09-09 Thread Steve Dower
Steve Dower added the comment: New changeset 19052a11314e7be7ba003fd6cdbb5400a5d77d96 by Steve Dower (Zackery Spytz) in branch 'master': bpo-37705: Improve the implementation of winerror_to_errno() (GH-15623) https://github.com/python/cpython/commit/19052a11314e7be7ba003fd6cdbb5400a5d77d96

[issue37936] gitignore file is too broad

2019-09-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +15402 pull_request: https://github.com/python/cpython/pull/15748 ___ Python tracker ___

[issue34410] itertools.tee not thread-safe; can segfault interpreter when wrapped iterator releases GIL

2019-09-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 2fb6921ab296f933caf361a662e6471e143abefc by Serhiy Storchaka in branch '2.7': [2.7] bpo-34410: Fix a crash in the tee iterator when re-enter it. (GH-15625) (GH-15740)

[issue37936] gitignore file is too broad

2019-09-09 Thread miss-islington
miss-islington added the comment: New changeset 5e5e9515029f70836003a8cfb30433166fcc8db7 by Miss Islington (bot) (Greg Price) in branch 'master': bpo-37936: Avoid ignoring files that we actually do track. (GH-15451)

[issue37705] winerror_to_errno implementation

2019-09-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +15404 pull_request: https://github.com/python/cpython/pull/15750 ___ Python tracker ___

[issue34155] [CVE-2019-16056] email.utils.parseaddr mistakenly parse an email

2019-09-09 Thread STINNER Victor
Change by STINNER Victor : -- title: email.utils.parseaddr mistakenly parse an email -> [CVE-2019-16056] email.utils.parseaddr mistakenly parse an email ___ Python tracker

[issue37705] winerror_to_errno implementation

2019-09-09 Thread Steve Dower
Steve Dower added the comment: I'm going to merge and backport this all the way to 3.7. Adding a publicly accessible dict for use in Python code should be 3.9 only. -- versions: +Python 3.7, Python 3.8 ___ Python tracker

[issue34155] email.utils.parseaddr mistakenly parse an email

2019-09-09 Thread STINNER Victor
STINNER Victor added the comment: I reopen the issue since Python 2.7 is still vulnerable. -- resolution: fixed -> status: closed -> open ___ Python tracker ___

[issue32587] Make REG_MULTI_SZ support zero-length strings

2019-09-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +15400 pull_request: https://github.com/python/cpython/pull/15746 ___ Python tracker ___

[issue13788] os.closerange optimization

2019-09-09 Thread Gregory P. Smith
Change by Gregory P. Smith : -- versions: +Python 3.8 -Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue32587] Make REG_MULTI_SZ support zero-length strings

2019-09-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +15399 pull_request: https://github.com/python/cpython/pull/15745 ___ Python tracker ___

[issue32587] Make REG_MULTI_SZ support zero-length strings

2019-09-09 Thread Steve Dower
Steve Dower added the comment: New changeset e223ba13d8d871ee58570dfca4e82a591189cc2f by Steve Dower (Zackery Spytz) in branch 'master': bpo-32587: Make winreg.REG_MULTI_SZ support zero-length strings (#13239) https://github.com/python/cpython/commit/e223ba13d8d871ee58570dfca4e82a591189cc2f

[issue38038] Remove urllib.parse._splittype from xmlrpc.client

2019-09-09 Thread Dong-hee Na
Dong-hee Na added the comment: @vstinner Right. splittype() is deprecated. Nevertheless, the same functionality is still accessible to end users with _splittype (). So I thought we should go in the direction of removing this completely. >From the view of the standard library is used by

[issue15817] Misc/gdbinit: Expose command documentation to gdb help

2019-09-09 Thread Zachary Ware
Change by Zachary Ware : -- pull_requests: +15398 pull_request: https://github.com/python/cpython/pull/15744 ___ Python tracker ___

[issue37445] Some FormatMessageW() calls use FORMAT_MESSAGE_FROM_SYSTEM without FORMAT_MESSAGE_IGNORE_INSERTS

2019-09-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +15396 pull_request: https://github.com/python/cpython/pull/15742 ___ Python tracker ___

[issue37445] Some FormatMessageW() calls use FORMAT_MESSAGE_FROM_SYSTEM without FORMAT_MESSAGE_IGNORE_INSERTS

2019-09-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +15397 pull_request: https://github.com/python/cpython/pull/15743 ___ Python tracker ___

[issue37445] Some FormatMessageW() calls use FORMAT_MESSAGE_FROM_SYSTEM without FORMAT_MESSAGE_IGNORE_INSERTS

2019-09-09 Thread Steve Dower
Steve Dower added the comment: New changeset a6563650c835d50f7302971a5b145e94f9d0dc68 by Steve Dower (Zackery Spytz) in branch 'master': bpo-37445: Include FORMAT_MESSAGE_IGNORE_INSERTS in FormatMessageW() calls (GH-14462)

[issue11953] Missing WSA* error codes

2019-09-09 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +15395 pull_request: https://github.com/python/cpython/pull/15741 ___ Python tracker ___

[issue38043] small cleanups in Unicode normalization code

2019-09-09 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 7669cb8b21c7c9cef758609c44017c09d1ce4658 by Benjamin Peterson (Greg Price) in branch 'master': bpo-38043: Use `bool` for boolean flags on is_normalized_quickcheck. (GH-15711)

[issue11953] Missing WSA* error codes

2019-09-09 Thread Steve Dower
Steve Dower added the comment: New changeset 71ea688d662a74ddf39a3874e06c73e58df55c02 by Steve Dower (Ngalim Siregar) in branch 'master': bpo-11953: Extend table of Windows WSA* error codes (GH-15004) https://github.com/python/cpython/commit/71ea688d662a74ddf39a3874e06c73e58df55c02

[issue34410] itertools.tee not thread-safe; can segfault interpreter when wrapped iterator releases GIL

2019-09-09 Thread miss-islington
miss-islington added the comment: New changeset 5190b7193c184268d5c8a9440b3a5a8bcd84a23e by Miss Islington (bot) in branch '3.7': bpo-34410: Fix a crash in the tee iterator when re-enter it. (GH-15625) https://github.com/python/cpython/commit/5190b7193c184268d5c8a9440b3a5a8bcd84a23e

<    1   2   3   4   >