[issue33768] IDLE: click on context line should jump to line, at top of window

2018-06-07 Thread miss-islington


miss-islington  added the comment:


New changeset 1038669769208fc05c9a565fbf575f5fa8e9ef61 by Miss Islington (bot) 
in branch '3.6':
bpo-33768: IDLE: Clicking on code context line moves it to top of editor 
(GH-7411)
https://github.com/python/cpython/commit/1038669769208fc05c9a565fbf575f5fa8e9ef61


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33768] IDLE: click on context line should jump to line, at top of window

2018-06-07 Thread Terry J. Reedy


Change by Terry J. Reedy :


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33768] IDLE: click on context line should jump to line, at top of window

2018-06-07 Thread miss-islington


miss-islington  added the comment:


New changeset a4868473e7a0487bd882531490ff8856b952f9b3 by Miss Islington (bot) 
in branch '3.7':
bpo-33768: IDLE: Clicking on code context line moves it to top of editor 
(GH-7411)
https://github.com/python/cpython/commit/a4868473e7a0487bd882531490ff8856b952f9b3


--
nosy: +miss-islington

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33745] 3.7.0b5 changes the line number of empty functions with docstrings

2018-06-07 Thread Serhiy Storchaka


Serhiy Storchaka  added the comment:

This change looks not intentional, but not incorrect. I'm not sure that it is 
worth to document it. Any behavior (in 3.6 and in 3.7) is CPython 
implementation detail.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33768] IDLE: click on context line should jump to line, at top of window

2018-06-07 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7144

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33768] IDLE: click on context line should jump to line, at top of window

2018-06-07 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7143

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33768] IDLE: click on context line should jump to line, at top of window

2018-06-07 Thread Terry J. Reedy


Terry J. Reedy  added the comment:


New changeset 041272b657867f5bec925b19aabf23944125d49b by Terry Jan Reedy 
(Cheryl Sabella) in branch 'master':
bpo-33768: IDLE: Clicking on code context line moves it to top of editor 
(GH-7411)
https://github.com/python/cpython/commit/041272b657867f5bec925b19aabf23944125d49b


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33738] PyIndex_Check conflicts with PEP 384

2018-06-07 Thread Serhiy Storchaka


Serhiy Storchaka  added the comment:

Excluding names from limited API can break existing code that use them with 
defined Py_LIMITED_API. I wondering if corresponding functions should be added 
for PySequence_ITEM, PyObject_IS_GC, PyType_SUPPORTS_WEAKREFS, 
PyObject_GET_WEAKREFS_LISTPTR. Perhaps this should be discussed on Python-Dev.

Since PyList_GET_SIZE and PyList_GET_ITEM are defined only for non-limited API, 
it is better to wrap definitions of macros that use them (like 
PySequence_Fast_GET_SIZE and PySequence_Fast_GET_ITEM) in "#ifndef 
Py_LIMITED_API" ... "#endif".

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33779] Error while installing python 3.6.5 on windows 10

2018-06-07 Thread Siddhartha Bose


Siddhartha Bose  added the comment:

@steve, deleting it did work and it was out of the system but installation 
failed again, see the logs attached

--
Added file: https://bugs.python.org/file47636/Python 3.6.5 
(64-bit)_20180608095000.log

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33794] Python.framework build is missing 'Current' symlink

2018-06-07 Thread Ned Deily


Ned Deily  added the comment:

This is by design for Python 3 installs; Current *is* created for Python 2 
installs for historical reasons.  See the discussion in Issue18117 why trying 
to use -framework Python is not a good idea unfortunately.

--
resolution:  -> duplicate
stage:  -> resolved
status: open -> closed
superseder:  -> Missing symlink:Current after Mac OS X 3.3.2 package 
installation

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-06-07 Thread Yury Selivanov


Yury Selivanov  added the comment:

Thanks!

--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-06-07 Thread Yury Selivanov


Yury Selivanov  added the comment:


New changeset 4aa3006619392438b0775a2f488bbe9e7a22c468 by Yury Selivanov 
(Dong-hee Na) in branch 'master':
bpo-33197: Add description property for _ParameterKind. (GH-7206)
https://github.com/python/cpython/commit/4aa3006619392438b0775a2f488bbe9e7a22c468


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33803] contextvars: hamt_alloc() must initialize h_root and h_count fields

2018-06-07 Thread Yury Selivanov


Yury Selivanov  added the comment:

> +if (core_config->dev_mode) {
> +_PyRuntime.gc.generations[0].threshold = 5;
> +}

I'd love to have a flag to turn this on, or maybe we should enable it for -X 
dev.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33792] asyncio: how to set a "Proactor event loop" policy? Issue with asyncio.run()

2018-06-07 Thread Yury Selivanov


Change by Yury Selivanov :


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33803] contextvars: hamt_alloc() must initialize h_root and h_count fields

2018-06-07 Thread Yury Selivanov


Change by Yury Selivanov :


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33786] @asynccontextmanager doesn't work well with async generators

2018-06-07 Thread Yury Selivanov


Change by Yury Selivanov :


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33786] @asynccontextmanager doesn't work well with async generators

2018-06-07 Thread Yury Selivanov


Yury Selivanov  added the comment:


New changeset b0bb9a81f60ed248a44b4c8008c0549c3e9e741d by Yury Selivanov in 
branch '3.6':
bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() 
(GH-7467) (#7514)
https://github.com/python/cpython/commit/b0bb9a81f60ed248a44b4c8008c0549c3e9e741d


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33802] Regression in logging configuration

2018-06-07 Thread Ned Deily


Change by Ned Deily :


--
nosy: +lukasz.langa

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33791] Update README.rst to mention third-party OpenSSL needed for macOS builds

2018-06-07 Thread Ned Deily


Ned Deily  added the comment:

(Er, the 3.7 commit is 43202e05c24907576ffd2b10762b18225be7f278)

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33791] Update README.rst to mention third-party OpenSSL needed for macOS builds

2018-06-07 Thread Ned Deily


Ned Deily  added the comment:

Due to some bot issues, the 3.7 commit message went AWOL: the changeset id is 
ee994d7443a7e2809a5d49bd3679fc9c451a411b.  Thanks for the PR!

--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed
versions:  -Python 2.7

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33791] Update README.rst to mention third-party OpenSSL needed for macOS builds

2018-06-07 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7142

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33791] Update README.rst to mention third-party OpenSSL needed for macOS builds

2018-06-07 Thread Ned Deily


Ned Deily  added the comment:


New changeset ee994d7443a7e2809a5d49bd3679fc9c451a411b by Ned Deily (atg7000) 
in branch 'master':
bpo-33791: Update README for macOS users (GH-7471)
https://github.com/python/cpython/commit/ee994d7443a7e2809a5d49bd3679fc9c451a411b


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33791] Update README.rst to mention third-party OpenSSL needed for macOS builds

2018-06-07 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7141

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33791] Update README.rst to mention third-party OpenSSL needed for macOS builds

2018-06-07 Thread miss-islington


miss-islington  added the comment:


New changeset 94b5fabe81fc1ee7a49a06db117ca2f2d1c80526 by Miss Islington (bot) 
in branch '3.6':
bpo-33791: Update README for macOS users (GH-7471)
https://github.com/python/cpython/commit/94b5fabe81fc1ee7a49a06db117ca2f2d1c80526


--
nosy: +miss-islington

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33786] @asynccontextmanager doesn't work well with async generators

2018-06-07 Thread Yury Selivanov


Change by Yury Selivanov :


--
pull_requests: +7140

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33476] String index out of range in get_group(), email/_header_value_parser.py

2018-06-07 Thread Dong-hee Na


Dong-hee Na  added the comment:

@r.david.murray

Please take a look PR 7484 :)

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33197] Confusing error message when constructing invalid inspect.Parameters

2018-06-07 Thread Dong-hee Na


Dong-hee Na  added the comment:

@yselivanov

Please take a look PR 7206 :)

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32493] UUID Module - FreeBSD build failure

2018-06-07 Thread Michael Felt


Change by Michael Felt :


--
pull_requests: +7139

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33786] @asynccontextmanager doesn't work well with async generators

2018-06-07 Thread Yury Selivanov


Yury Selivanov  added the comment:


New changeset 8de73d5a6914cfe55c23b0ad829cd2ba8954bc2e by Yury Selivanov in 
branch '3.6':
bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() 
(GH-7467) (GH-7507)
https://github.com/python/cpython/commit/8de73d5a6914cfe55c23b0ad829cd2ba8954bc2e


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33792] asyncio: how to set a "Proactor event loop" policy? Issue with asyncio.run()

2018-06-07 Thread miss-islington


miss-islington  added the comment:


New changeset 0738443a5b071a6bd2c18957a06cfe571a7314f2 by Miss Islington (bot) 
in branch '3.7':
bpo-33792: Add selector and proactor windows policies (GH-7487)
https://github.com/python/cpython/commit/0738443a5b071a6bd2c18957a06cfe571a7314f2


--
nosy: +miss-islington

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33804] Document the default value of the size parameter of io.TextIOBase.read

2018-06-07 Thread Andrés Delfino

Change by Andrés Delfino :


--
keywords: +patch
pull_requests: +7138
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33802] Regression in logging configuration

2018-06-07 Thread Barry A. Warsaw


Change by Barry A. Warsaw :


--
keywords: +patch
pull_requests: +7137
stage: needs patch -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33792] asyncio: how to set a "Proactor event loop" policy? Issue with asyncio.run()

2018-06-07 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7136

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33804] Document the default value of the size parameter of io.TextIOBase.read

2018-06-07 Thread Andrés Delfino

New submission from Andrés Delfino :

Documentation of io.TextIOBase.read makes it look like the size parameter is 
required. Attached PR fixes this.

--
assignee: docs@python
components: Documentation
messages: 319003
nosy: adelfino, docs@python
priority: normal
severity: normal
status: open
title: Document the default value of the size parameter of io.TextIOBase.read
type: enhancement
versions: Python 2.7, Python 3.6, Python 3.7, Python 3.8

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33609] Document that dicts preserve insertion order

2018-06-07 Thread Yury Selivanov


Yury Selivanov  added the comment:


New changeset 9b0d4d04a15a97a1055f1b729f14e9257f149fd3 by Yury Selivanov (Miss 
Islington (bot)) in branch '3.7':
bpo-33609: small wording fixes to dict ordering docs (#7497)
https://github.com/python/cpython/commit/9b0d4d04a15a97a1055f1b729f14e9257f149fd3


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33792] asyncio: how to set a "Proactor event loop" policy? Issue with asyncio.run()

2018-06-07 Thread Yury Selivanov


Yury Selivanov  added the comment:


New changeset 8f4042964d5b0ddf5cdf87862db962ba64e3f64a by Yury Selivanov in 
branch 'master':
bpo-33792: Add selector and proactor windows policies (GH-7487)
https://github.com/python/cpython/commit/8f4042964d5b0ddf5cdf87862db962ba64e3f64a


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33803] contextvars: hamt_alloc() must initialize h_root and h_count fields

2018-06-07 Thread Yury Selivanov


Yury Selivanov  added the comment:


New changeset a971a6fdb111bb62911ccf45aa9fe734e2e7a590 by Yury Selivanov (Miss 
Islington (bot)) in branch '3.7':
bpo-33803: Fix a crash in hamt.c (GH-7504) (GH-7505)
https://github.com/python/cpython/commit/a971a6fdb111bb62911ccf45aa9fe734e2e7a590


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23835] configparser does not convert defaults to strings

2018-06-07 Thread STINNER Victor


STINNER Victor  added the comment:

It seems like this issue introduced a regression according to Barry: bpo-33802.

--
nosy: +vstinner

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33786] @asynccontextmanager doesn't work well with async generators

2018-06-07 Thread Yury Selivanov


Change by Yury Selivanov :


--
pull_requests: +7135

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33786] @asynccontextmanager doesn't work well with async generators

2018-06-07 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7134

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33786] @asynccontextmanager doesn't work well with async generators

2018-06-07 Thread Yury Selivanov


Yury Selivanov  added the comment:


New changeset 52698c7ad9eae9feb35839fde17a7d1da8036a9b by Yury Selivanov in 
branch 'master':
bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() 
(GH-7467)
https://github.com/python/cpython/commit/52698c7ad9eae9feb35839fde17a7d1da8036a9b


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33803] contextvars: hamt_alloc() must initialize h_root and h_count fields

2018-06-07 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7133

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33803] contextvars: hamt_alloc() must initialize h_root and h_count fields

2018-06-07 Thread Yury Selivanov


Yury Selivanov  added the comment:


New changeset 378c53cc3187dba57c7560ccc2557f516c8a7bc8 by Yury Selivanov in 
branch 'master':
bpo-33803: Fix a crash in hamt.c (#7504)
https://github.com/python/cpython/commit/378c53cc3187dba57c7560ccc2557f516c8a7bc8


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33615] test__xxsubinterpreters crashed on x86 Gentoo Refleaks 3.x

2018-06-07 Thread STINNER Victor


STINNER Victor  added the comment:


New changeset c4f3cb772bc2d93d91ee1750eed817262f3ed57d by Victor Stinner in 
branch 'master':
bpo-33615: Skip test__xxsubinterpreters (GH-7503)
https://github.com/python/cpython/commit/c4f3cb772bc2d93d91ee1750eed817262f3ed57d


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33615] test__xxsubinterpreters crashed on x86 Gentoo Refleaks 3.x

2018-06-07 Thread STINNER Victor


STINNER Victor  added the comment:

test__xxsubinterpreters prevents to get results from Gentoo Refleaks 3.x and 
Windows Refleaks 3.x, it also broke multiple CIs and it introduced random 
failures. For all these reasons, I skipped the test. See the general policy for 
CIs:
https://mail.python.org/pipermail/python-dev/2018-May/153753.html

Eric: if you need CIs to check if a change fix test__xxsubinterpreters, they 
are ways to trigger custom builds, but I don't recall how to do that :-D You 
should be able to do that on buildbots at least, the devguide explains how to 
do it, or ask maybe Zachary Ware. Until the crash is fixed, I would prefer to 
leave the test skipped.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33803] contextvars: hamt_alloc() must initialize h_root and h_count fields

2018-06-07 Thread Yury Selivanov


Yury Selivanov  added the comment:

Thanks Victor for debugging this.  I made a PR (which is now trivial) and 
double checked all other calls to GCTrack in context.c & hamt.c.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33803] contextvars: hamt_alloc() must initialize h_root and h_count fields

2018-06-07 Thread Yury Selivanov


Change by Yury Selivanov :


--
keywords: +patch
pull_requests: +7132
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33615] test__xxsubinterpreters crashed on x86 Gentoo Refleaks 3.x

2018-06-07 Thread STINNER Victor


Change by STINNER Victor :


--
pull_requests: +7131
stage: needs patch -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33694] test_asyncio: test_start_tls_server_1() fails on Python on x86 Windows7 3.7 and 3.x

2018-06-07 Thread STINNER Victor


STINNER Victor  added the comment:

I fixed the root issue, a race condition in ProactorEventLoop. But I prefer to 
keep the issue open a few days to see if the bug is really gone from all CIs.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33803] contextvars: hamt_alloc() must initialize h_root and h_count fields

2018-06-07 Thread STINNER Victor


STINNER Victor  added the comment:

Don't forget to merge https://github.com/python/cpython/pull/7487 once this bug 
is fixed. I would like to see https://bugs.python.org/issue33792 in Python 3.7 
*if possible* (the feature now seems "required" for the new asyncio.loop() 
function).

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33803] contextvars: hamt_alloc() must initialize h_root and h_count fields

2018-06-07 Thread STINNER Victor


STINNER Victor  added the comment:

One solution to trigger so crash more frequently is to reduce the threshold of 
the generation 0 of the garbage collector.

Here is a patch to do that when using -X dev: change the default threshold from 
700 to 5 for the generation 0.

With this patch, "PYTHONDEVMODE=1 python -m test test_context" does also crash 
as expected.

diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c
index 958219b744..81218fb964 100644
--- a/Python/pylifecycle.c
+++ b/Python/pylifecycle.c
@@ -622,6 +622,10 @@ _Py_InitializeCore(const _PyCoreConfig *core_config)
 return _Py_INIT_ERR("runtime core already initialized");
 }
 
+if (core_config->dev_mode) {
+_PyRuntime.gc.generations[0].threshold = 5;
+}
+
 /* Py_Finalize leaves _Py_Finalizing set in order to help daemon
  * threads behave a little more gracefully at interpreter shutdown.
  * We clobber it here so the new interpreter can start with a clean

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33803] contextvars: hamt_alloc() must initialize h_root and h_count fields

2018-06-07 Thread STINNER Victor


New submission from STINNER Victor :

test_asyncio started to crash in https://github.com/python/cpython/pull/7487

I debugged the crash with Yury: _PyHAMT_New() triggers indirectly a GC 
collection at "o->h_root = hamt_node_bitmap_new(0);". Problem: the object that 
is being created is already tracked by the GC, whereas its h_root field is not 
set. Then the GC does crash because the field is a random pointer.

hamt_alloc() must initialize h_root and h_count before tracking the object in 
the GC.

Thinking about the GC when writing an object constructor is hard :-(

Maybe we should add a debug option to trigger the GC more often to make such 
random bug more likely. contextvars has been implemented a few months ago, and 
we only spotted the bug a few days before Python 3.7.0 final release...

--
components: Interpreter Core
messages: 318990
nosy: ned.deily, vstinner, yselivanov
priority: release blocker
severity: normal
status: open
type: crash
versions: Python 3.7, Python 3.8

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33679] IDLE: Enable theme-specific color configuration for code context

2018-06-07 Thread miss-islington


miss-islington  added the comment:


New changeset d071ab12c85636cd15c8ef33647dad9db8441afb by Miss Islington (bot) 
in branch '3.6':
bpo-33642 and bpo-33679: Revise and condense blurbs (GH-7500)
https://github.com/python/cpython/commit/d071ab12c85636cd15c8ef33647dad9db8441afb


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33578] cjkcodecs missing getstate and setstate implementations

2018-06-07 Thread Christopher Thorne


Christopher Thorne  added the comment:

Thanks Naoki, that simplifies things a lot.

I've updated the PR with a new test case for ISO-2022-JP and a corresponding 
implementation for the encoder state methods.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33642] IDLE: Display up to maxlines non-blank lines for Code Context

2018-06-07 Thread miss-islington


miss-islington  added the comment:


New changeset d071ab12c85636cd15c8ef33647dad9db8441afb by Miss Islington (bot) 
in branch '3.6':
bpo-33642 and bpo-33679: Revise and condense blurbs (GH-7500)
https://github.com/python/cpython/commit/d071ab12c85636cd15c8ef33647dad9db8441afb


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33642] IDLE: Display up to maxlines non-blank lines for Code Context

2018-06-07 Thread miss-islington


miss-islington  added the comment:


New changeset ab5da50d82766acb49ba162dd61b0f8f19424e29 by Miss Islington (bot) 
in branch '3.7':
bpo-33642 and bpo-33679: Revise and condense blurbs (GH-7500)
https://github.com/python/cpython/commit/ab5da50d82766acb49ba162dd61b0f8f19424e29


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33802] Regression in logging configuration

2018-06-07 Thread Barry A. Warsaw


Barry A. Warsaw  added the comment:

I think the regression is caused by the fix for bpo-23835

https://bugs.python.org/issue23835

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33679] IDLE: Enable theme-specific color configuration for code context

2018-06-07 Thread miss-islington


miss-islington  added the comment:


New changeset ab5da50d82766acb49ba162dd61b0f8f19424e29 by Miss Islington (bot) 
in branch '3.7':
bpo-33642 and bpo-33679: Revise and condense blurbs (GH-7500)
https://github.com/python/cpython/commit/ab5da50d82766acb49ba162dd61b0f8f19424e29


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23835] configparser does not convert defaults to strings

2018-06-07 Thread Barry A. Warsaw


Barry A. Warsaw  added the comment:

I think this introduced a regression in 3.7.  See bpo-33802

https://bugs.python.org/issue33802

--
keywords: +3.7regression -patch
nosy: +barry
priority: normal -> deferred blocker
resolution: fixed -> 
stage: resolved -> 
status: closed -> open

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33679] IDLE: Enable theme-specific color configuration for code context

2018-06-07 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7130

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33642] IDLE: Display up to maxlines non-blank lines for Code Context

2018-06-07 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7129

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33642] IDLE: Display up to maxlines non-blank lines for Code Context

2018-06-07 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7127

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33642] IDLE: Display up to maxlines non-blank lines for Code Context

2018-06-07 Thread Terry J. Reedy


Terry J. Reedy  added the comment:


New changeset bed523ba03c4525c9c79a6df700284b6c43024b3 by Terry Jan Reedy in 
branch 'master':
bpo-33642 and bpo-33679: Revise and condense blurbs (GH-7500)
https://github.com/python/cpython/commit/bed523ba03c4525c9c79a6df700284b6c43024b3


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33679] IDLE: Enable theme-specific color configuration for code context

2018-06-07 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7128

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33679] IDLE: Enable theme-specific color configuration for code context

2018-06-07 Thread Terry J. Reedy


Terry J. Reedy  added the comment:


New changeset bed523ba03c4525c9c79a6df700284b6c43024b3 by Terry Jan Reedy in 
branch 'master':
bpo-33642 and bpo-33679: Revise and condense blurbs (GH-7500)
https://github.com/python/cpython/commit/bed523ba03c4525c9c79a6df700284b6c43024b3


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33802] Regression in logging configuration

2018-06-07 Thread Barry A. Warsaw


New submission from Barry A. Warsaw :

This looks like a serious regression in 3.7.  @ned.deily - I'm marking this as 
a release blocker, but feel free of course to downgrade it.

Run the following as

$ python3.6 badconfig.py
Hey, it works!

$ python3.7 badconfig.py
Traceback (most recent call last):
  File "../badconfig.py", line 77, in 
fileConfig(inifile.name, defaults=GUNICORN_DEFAULTS)
  File "/Users/barry/projects/python/cpython/Lib/logging/config.py", line 65, 
in fileConfig
cp = configparser.ConfigParser(defaults)
  File "/Users/barry/projects/python/cpython/Lib/configparser.py", line 639, in 
__init__
self._read_defaults(defaults)
  File "/Users/barry/projects/python/cpython/Lib/configparser.py", line 1212, 
in _read_defaults
self.read_dict({self.default_section: defaults})
  File "/Users/barry/projects/python/cpython/Lib/configparser.py", line 754, in 
read_dict
self.set(section, key, value)
  File "/Users/barry/projects/python/cpython/Lib/configparser.py", line 1200, 
in set
super().set(section, option, value)
  File "/Users/barry/projects/python/cpython/Lib/configparser.py", line 895, in 
set
value)
  File "/Users/barry/projects/python/cpython/Lib/configparser.py", line 403, in 
before_set
"position %d" % (value, tmp_value.find('%')))
ValueError: invalid interpolation syntax in "{'generic': {'format': 
'%(asctime)s [%(process)d] [%(levelname)s] %(message)s', 'datefmt': '[%Y-%m-%d 
%H:%M:%S %z]', 'class': 'logging.Formatter'}}" at position 26

I'm still investigating, but wanted to get the bug filed asap.

--
assignee: barry
files: badconfig.py
keywords: 3.7regression
messages: 318980
nosy: barry, ned.deily
priority: release blocker
severity: normal
stage: needs patch
status: open
title: Regression in logging configuration
type: behavior
versions: Python 3.7, Python 3.8
Added file: https://bugs.python.org/file47635/badconfig.py

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33679] IDLE: Enable theme-specific color configuration for code context

2018-06-07 Thread Terry J. Reedy


Change by Terry J. Reedy :


--
pull_requests: +7126

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33642] IDLE: Display up to maxlines non-blank lines for Code Context

2018-06-07 Thread Terry J. Reedy


Change by Terry J. Reedy :


--
pull_requests: +7125

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33642] IDLE: Display up to maxlines non-blank lines for Code Context

2018-06-07 Thread Terry J. Reedy


Change by Terry J. Reedy :


--
title: IDLE: Use variable number of lines in CodeContext -> IDLE: Display up to 
maxlines non-blank lines for Code Context

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33679] IDLE: Enable theme-specific color configuration for code context

2018-06-07 Thread Terry J. Reedy


Change by Terry J. Reedy :


--
title: IDLE: Re-enable color configuration for code context -> IDLE: Enable 
theme-specific color configuration for code context

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33694] test_asyncio: test_start_tls_server_1() fails on Python on x86 Windows7 3.7 and 3.x

2018-06-07 Thread STINNER Victor


STINNER Victor  added the comment:


New changeset 8fa398d5cecec80990c5642b081f52cbbc6a05eb by Victor Stinner (Miss 
Islington (bot)) in branch '3.7':
bpo-33694: Fix race condition in asyncio proactor (GH-7498) (GH-7499)
https://github.com/python/cpython/commit/8fa398d5cecec80990c5642b081f52cbbc6a05eb


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33679] IDLE: Re-enable color configuration for code context

2018-06-07 Thread Terry J. Reedy


Terry J. Reedy  added the comment:

Summary for users:  Previously, there was one code context foreground and 
background font color setting, default or custom, on the extensions tab, that 
applied to all themes.  Now, each theme has it own setting, as with other color 
settings.  For builting themes, the foreground is the same as normal text; the 
background is a contrasting gray.  Context colors for custom themes are set on 
the Hightlights tab along with others.  When one starts IDLE from a console and 
loads a custom theme without definitions for 'context', one will see a warning 
message on the console.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33694] test_asyncio: test_start_tls_server_1() fails on Python on x86 Windows7 3.7 and 3.x

2018-06-07 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7124

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33694] test_asyncio: test_start_tls_server_1() fails on Python on x86 Windows7 3.7 and 3.x

2018-06-07 Thread STINNER Victor


STINNER Victor  added the comment:


New changeset 79790bc35fe722a49977b52647f9b5fe1deda2b7 by Victor Stinner in 
branch 'master':
bpo-33694: Fix race condition in asyncio proactor (GH-7498)
https://github.com/python/cpython/commit/79790bc35fe722a49977b52647f9b5fe1deda2b7


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33784] hash collision in instances of ipaddress.ip_network

2018-06-07 Thread Francois Schneider


Francois Schneider  added the comment:

Thanks for the analysis, I agree completely.

Actually the problem was coming from my code where one of the __eq__ method was 
implemented like this:
>>> def __eq__(self, other):
>>>   return hash(self) == hash(other)

so 2 instances with only a slight difference in their ip_network attribute 
(ip_network(u'20.0.2.3/32') and ip_network(u'20.0.2.0/30')) were having the 
same hash and being equal -> they could not be inserted both in the same 
collection.

I will just rewrite my __eq__ method properly.

--
status: pending -> open

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33795] Memory leak in X509StoreContext class.

2018-06-07 Thread Tim Boddy


Tim Boddy  added the comment:

I'm sorry that I changed the resolution by accident.

--
resolution: not a bug -> third party

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33642] IDLE: Use variable number of lines in CodeContext

2018-06-07 Thread Terry J. Reedy


Terry J. Reedy  added the comment:

Summary for users: Previously, Code Context displayed a fixed number of lines.  
Often, many were blank.  Hence the default *numlines* to display was small, 3, 
to avoid having too many blank lines.  However, 3 is often too small to display 
the complete context.

Now, Code Context initially displays a single blank line for 'no context', to 
show that the feature is active.  When the top visible line is part of an 
indented body, the context used as many non-blank lines as needed, up to a 
maximum of *maxlines*, which has a default of 15.  Because a new configuration 
option is used, there should be no interference between user settings for old 
releases and future releases. 

Initially, context lines are added to an expanded editor window.  When the 
height of the window has been maximized, perhaps with the zoomheight feature, 
and when the height of the window has been reset with the mouse, context lines 
replace normal code text.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33694] test_asyncio: test_start_tls_server_1() fails on Python on x86 Windows7 3.7 and 3.x

2018-06-07 Thread STINNER Victor


Change by STINNER Victor :


--
pull_requests: +7123

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33609] Document that dicts preserve insertion order

2018-06-07 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7122

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33609] Document that dicts preserve insertion order

2018-06-07 Thread Neil Schemenauer


Neil Schemenauer  added the comment:


New changeset d3ed67d14ed401dfe2b5d07b6941adc3ecacb268 by Neil Schemenauer in 
branch 'master':
bpo-33609: small wording fixes to dict ordering docs
https://github.com/python/cpython/commit/d3ed67d14ed401dfe2b5d07b6941adc3ecacb268


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33795] Memory leak in X509StoreContext class.

2018-06-07 Thread Tim Boddy


Tim Boddy  added the comment:

Would a leak associated with this stack trace fall within the domain of 
bugs.python.org?  I do see site-packages on ths stack in frames 1 and 2 but 
frame 3 is in /lib/libpython3.5m.so.1.0:

55904900
#0  __GI___libc_malloc (bytes=8) at malloc.c:2910
#1  0x74b1a6a9 in ?? ()
   from 
/usr/lib/python3.5/site-packages/_cffi_backend.cpython-35m-x86_64-linux-gnu.so
#2  0x74b1ab4d in ?? ()
   from 
/usr/lib/python3.5/site-packages/_cffi_backend.cpython-35m-x86_64-linux-gnu.so
#3  0x77a28019 in ?? () from /lib/libpython3.5m.so.1.0
#4  0x779bb229 in PyCFunction_Call () from /lib/libpython3.5m.so.1.0
#5  0x77a3474c in PyEval_EvalFrameEx () from /lib/libpython3.5m.so.1.0
#6  0x77a33d5c in PyEval_EvalFrameEx () from /lib/libpython3.5m.so.1.0
#7  0x77a33d5c in PyEval_EvalFrameEx () from /lib/libpython3.5m.so.1.0

Either way is fine.  I have a bit more debugging to do anyway to understand 
where the cause of the leak actually is but please let me know your thoughts on 
whether this bug might be relevant to this site.

--
resolution: third party -> not a bug

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue28557] error message for bad raw readinto

2018-06-07 Thread David Szotten


Change by David Szotten :


--
pull_requests: +7121
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33796] dataclasses.replace broken if a class has any ClassVars

2018-06-07 Thread Eric V. Smith


Eric V. Smith  added the comment:

Thanks, Ned. I've backported it.

--
components: +Library (Lib)
priority: release blocker -> normal
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed
type:  -> behavior

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33801] Remove non-ordered dict comment from plistlib

2018-06-07 Thread Andrés Delfino

Change by Andrés Delfino :


--
keywords: +patch
pull_requests: +7120
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33796] dataclasses.replace broken if a class has any ClassVars

2018-06-07 Thread miss-islington


miss-islington  added the comment:


New changeset 0aee3bea197af51de3a30e4665eaa2971a681fbb by Miss Islington (bot) 
in branch '3.7':
bpo-33796: Ignore ClassVar for dataclasses.replace(). (GH-7488)
https://github.com/python/cpython/commit/0aee3bea197af51de3a30e4665eaa2971a681fbb


--
nosy: +miss-islington

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33801] Remove non-ordered dict comment from plistlib

2018-06-07 Thread Andrés Delfino

New submission from Andrés Delfino :

plistlib documentation says:

"The exact structure of the plist can be recovered by using 
collections.OrderedDict (although the order of keys shouldn't be important in 
plist files)"

This is no longer necessary, since dict objects preserve insertion order. PR 
changes this.

--
assignee: docs@python
components: Documentation
messages: 318969
nosy: adelfino, docs@python
priority: normal
severity: normal
status: open
title: Remove non-ordered dict comment from plistlib
type: enhancement
versions: Python 3.7, Python 3.8

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33800] Fix default argument for parameter dict_type of ConfigParser/RawConfigParser

2018-06-07 Thread Andrés Delfino

Change by Andrés Delfino :


--
keywords: +patch
pull_requests: +7119
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33800] Fix default argument for parameter dict_type of ConfigParser/RawConfigParser

2018-06-07 Thread Andrés Delfino

New submission from Andrés Delfino :

Default argument of parameter dict_type of ConfigParser/RawConfigParser is 
shown as "collections.OrderedDict", while it recently migrated to "dict".

PR fixes this, documents the change to dict, and fixes a versionchanged changed 
directive in "items" with wrong indentation.

--
assignee: docs@python
components: Documentation
messages: 318968
nosy: adelfino, docs@python
priority: normal
severity: normal
status: open
title: Fix default argument for parameter dict_type of 
ConfigParser/RawConfigParser
type: enhancement
versions: Python 3.8

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33796] dataclasses.replace broken if a class has any ClassVars

2018-06-07 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7118

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33786] @asynccontextmanager doesn't work well with async generators

2018-06-07 Thread Ned Deily


Ned Deily  added the comment:

> Would be nice to fix this in 3.7.0

Please do!

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33274] minidom removeAttributeNode returns None

2018-06-07 Thread Ari Krupnik


Ari Krupnik  added the comment:

In retrospect, I wish I had submitted this as a documentation change, simply 
acknowledging this function's behavior.

"In most computer projects there comes a day when it is discovered that the 
machine and the manual don't agree. When the confrontation follows, the manual 
usually loses, for it can be changed far more quickly and cheaply than the 
machine." -- Fred Brooks, MMM, 1974

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33796] dataclasses.replace broken if a class has any ClassVars

2018-06-07 Thread Ned Deily


Ned Deily  added the comment:

Let's fix it now.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33799] Remove non-ordered dicts comments from FAQ

2018-06-07 Thread Andrés Delfino

Change by Andrés Delfino :


--
keywords: +patch
pull_requests: +7117
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33799] Remove non-ordered dicts comments from FAQ

2018-06-07 Thread Andrés Delfino

New submission from Andrés Delfino :

Both Design and Programming sections have comments related to the non-ordered 
dict implementation. PR removes those comments.

--
assignee: docs@python
components: Documentation
messages: 318964
nosy: adelfino, docs@python
priority: normal
severity: normal
status: open
title: Remove non-ordered dicts comments from FAQ
versions: Python 3.7, Python 3.8

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32392] subprocess.run documentation does not have **kwargs

2018-06-07 Thread Berker Peksag


Berker Peksag  added the comment:

Thanks!

--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32392] subprocess.run documentation does not have **kwargs

2018-06-07 Thread Berker Peksag


Berker Peksag  added the comment:


New changeset 279564431e8e2fa4c20e8850420caea484a5d20b by Berker Peksag in 
branch '3.6':
[3.6] bpo-32392: Document env keyword argument of subprocess.run() (GH-7289)
https://github.com/python/cpython/commit/279564431e8e2fa4c20e8850420caea484a5d20b


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33798] Fix csv module comment regarding dict insertion order

2018-06-07 Thread Andrés Delfino

Change by Andrés Delfino :


--
keywords: +patch
pull_requests: +7115
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33722] Document builtins in mock_open

2018-06-07 Thread Jay Crotts


Change by Jay Crotts :


--
keywords: +patch
pull_requests: +7116
stage:  -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue33798] Fix csv module comment regarding dict insertion order

2018-06-07 Thread Andrés Delfino

New submission from Andrés Delfino :

The csv module says "Python’s dict objects are not ordered". PR fixes this , 
leaving a comment on the rationale.

--
assignee: docs@python
components: Documentation
messages: 318961
nosy: adelfino, docs@python
priority: normal
severity: normal
status: open
title: Fix csv module comment regarding dict insertion order
type: enhancement
versions: Python 3.7, Python 3.8

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue32392] subprocess.run documentation does not have **kwargs

2018-06-07 Thread Berker Peksag


Change by Berker Peksag :


--
pull_requests: +7114

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



  1   2   >