[issue33511] update.config.sub

2018-05-14 Thread Eitan Adler
New submission from Eitan Adler : confg.sub has been updated upstream. lets pull it in. -- components: Build messages: 316612 nosy: eitan.adler priority: normal severity: normal status: open title: update.config.sub type: enhancement ___ Python tracke

[issue33511] update.config.sub

2018-05-14 Thread Eitan Adler
Change by Eitan Adler : -- keywords: +patch pull_requests: +6525 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue29706] IDLE needs syntax highlighting for async and await

2018-05-14 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +6526 stage: test needed -> patch review ___ Python tracker ___ ___ Python-bugs-list mai

[issue29706] IDLE needs syntax highlighting for async and await

2018-05-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: PR 6846 adds the htest line to all versions (no news). When merged, I will augment the keyword list and add a news blurb for 3.6. -- stage: patch review -> needs patch versions: -Python 3.7 ___ Python tracker

[issue33510] [logging] add JSON log formatter

2018-05-14 Thread Steve R. Hastings
Steve R. Hastings added the comment: The solution recommended in the logging cookbook does not do the same thing as I have proposed. I have proposed a logging handler that emits JSON suitable for ingestion by a log collection system. With the JSON formatter, all log events, no matter their

[issue33512] use more standard approach for detecting long double in configure

2018-05-14 Thread Eitan Adler
New submission from Eitan Adler : autotools has a standard macro for defining HAVE_LONG_DOUBLE. Lets use it rather than using our own. -- components: Build messages: 316615 nosy: eitan.adler priority: normal severity: normal status: open title: use more standard approach for detecting l

[issue33512] use more standard approach for detecting long double in configure

2018-05-14 Thread Eitan Adler
Change by Eitan Adler : -- keywords: +patch pull_requests: +6527 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue33506] [logging] template for filename timestamps

2018-05-14 Thread Steve R. Hastings
Steve R. Hastings added the comment: I just reviewed the Python 3.6 logging code. Unless I am mistaken, it still has the limitation that when a logging file is active for writing log events, that file always has the same filename (self.baseFilename). Did I overlook anything? At rotation ti

[issue33483] build system requires explicit compiler, but should discover it

2018-05-14 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 98929b545e86e7c7296c912d8f34e8e8d3fd6439 by Benjamin Peterson (Eitan Adler) in branch 'master': bpo-33483: more correctly handle finding the C compiler (GH-6780) https://github.com/python/cpython/commit/98929b545e86e7c7296c912d8f34e8e8d3fd6439

[issue32769] Add 'annotations' to the glossary

2018-05-14 Thread Łukasz Langa
Łukasz Langa added the comment: Guido, do you really want to stress at this point for Python 3.8 that annotations do not have an intended purpose? That is clearly not true. 1. PEP 526 was created purely with types in mind and was inspired by PEP 484's lack of this functionality. 2. PEP 563 d

[issue33474] Support immutability per-field in dataclasses

2018-05-14 Thread Daniel Lindeman
Daniel Lindeman added the comment: A possible use case would be a field that represents an auto-incrementing database ID. Since the field is auto-incrementing in the database, it would be desirable to keep this field frozen, and others mutable once an instance of a data class is created. Th

[issue33504] configparser should use dict instead of OrderedDict in 3.7+

2018-05-14 Thread Łukasz Langa
Łukasz Langa added the comment: I am +1 to changing it to dict for Python 3.8. This use case is different from `namedtuple._asdict`. The type of the dictionary is for the purpose of internal storage of the parser. Unlike `namedtuple._asdict`, it is not exposed to the user. The purpose of cha

[issue33463] Can namedtuple._asdict return a regular dict instead of OrderedDict?

2018-05-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: DeprecationWarning is for things that will be removed. This is a sign: don't use this feature, rewrite you code so that doesn't use it, otherwise it will be broken in future versions. FutureVersion is for things that work now and will work in future, but wi

[issue18022] Inconsistency between quopri.decodestring() and email.quoprimime.decode()

2018-05-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Many thanks David! But sorry, your table confused me. I can't read it. Could you please reformat it? -- ___ Python tracker ___

[issue33511] Update config.sub

2018-05-14 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- title: update.config.sub -> Update config.sub ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue16865] ctypes arrays >=2GB in length causes exception

2018-05-14 Thread miss-islington
miss-islington added the comment: New changeset 2ce72e243fbc0e4f07f1191b20be548bfa5cbe11 by Miss Islington (bot) in branch '3.7': bpo-16865: Support arrays >=2GB in ctypes. (GH-3006) https://github.com/python/cpython/commit/2ce72e243fbc0e4f07f1191b20be548bfa5cbe11 -- nosy: +miss-isli

[issue16865] ctypes arrays >=2GB in length causes exception

2018-05-14 Thread miss-islington
miss-islington added the comment: New changeset 726894addc02effaa369fded3caaba94875c1f3d by Miss Islington (bot) in branch '3.6': bpo-16865: Support arrays >=2GB in ctypes. (GH-3006) https://github.com/python/cpython/commit/726894addc02effaa369fded3caaba94875c1f3d -- ___

[issue33486] regen autotools related files

2018-05-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If these changes are autogenerated, I would prefer that a trusted core developer create a PR. Is it safe to bump the minimal required version of autotools to 2.69? This can prevent building Python on conservative systems. -- nosy: +anthonybaxter, b

[issue32485] Multiprocessing dict sharing between forked processes

2018-05-14 Thread Leonard Lausen
Change by Leonard Lausen : -- nosy: +Leonard Lausen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue5755] "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++"

2018-05-14 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: > Or just remove it I updated the PR to do that. I didn't want to propose that initially because that patch was proposed here almost 2 years ago but not accepted. -- ___ Python tracker

<    1   2   3