[issue35825] Py_UNICODE_SIZE=4 fails to link on Windows

2019-01-31 Thread INADA Naoki
Change by INADA Naoki : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___

EPS: Announcing the Guido van Rossum Core Developer Grant

2019-01-31 Thread M.-A. Lemburg
At the last General Assembly of the EuroPython Society (EPS) at EuroPython 2018 in Edinburgh, we voted on a new grant program we want to put in place for future EuroPython conferences. We all love Python and this is one of the main reasons we are putting on EuroPython year after year, serving the

How to replace space in a string with \n

2019-01-31 Thread ^Bart
Hello everybody! :) I got a text and I should replace every space with \n without to use str.replace, I thought something like this: text = "The best day of my life!" space = (' ') if text.count(' ') in text: space=\n rightText = text-space print(rightText) I should have an

[issue35864] Replace OrderedDict with regular dict in namedtuple's _asdict() method.

2019-01-31 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 0bb4bdf0d93b301407774c4ffd6df54cff947df8 by Raymond Hettinger in branch 'master': bpo-35864: Replace OrderedDict with regular dict in namedtuple() (#11708) https://github.com/python/cpython/commit/0bb4bdf0d93b301407774c4ffd6df54cff947df8

[issue35865] configparser document refers about random dict order

2019-01-31 Thread INADA Naoki
Change by INADA Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue35865] configparser document refers about random dict order

2019-01-31 Thread INADA Naoki
INADA Naoki added the comment: New changeset 59014449721966a7890f6323616431ad869ec7cc by Inada Naoki in branch '3.7': bpo-35865: doc: Remove wrong note and directives (GH-11711) https://github.com/python/cpython/commit/59014449721966a7890f6323616431ad869ec7cc --

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

2019-01-31 Thread INADA Naoki
INADA Naoki added the comment: New changeset 0897e0c597c065f043e4286d01f16f473ab664ee by Inada Naoki in branch 'master': bpo-33504: fix wrong "versionchanged" (GH-11712) https://github.com/python/cpython/commit/0897e0c597c065f043e4286d01f16f473ab664ee -- nosy: +inada.naoki

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

2019-01-31 Thread INADA Naoki
INADA Naoki added the comment: I'm sorry. bpo-35865 (GH-11711) -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34003] csv.DictReader can return basic dict instead of OrderedDict

2019-01-31 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 9f3f0931cfc58498086d287226650599a97412bb by Raymond Hettinger (Michael Selik) in branch 'master': bpo-34003: Use dict instead of OrderedDict in csv.DictReader (GH-8014)

[issue35865] configparser document refers about random dict order

2019-01-31 Thread INADA Naoki
INADA Naoki added the comment: Also revert GH-7542 (bpo-33800) too. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

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

2019-01-31 Thread INADA Naoki
INADA Naoki added the comment: I revert this change in GH-35865. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

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

2019-01-31 Thread INADA Naoki
INADA Naoki added the comment: This should be reverted in 3.7. bpo-33504 changed dict_type from 3.8+, not 3.7. -- nosy: +inada.naoki ___ Python tracker ___

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

2019-01-31 Thread INADA Naoki
Change by INADA Naoki : -- pull_requests: +11570, 11571, 11572 ___ Python tracker ___ ___ Python-bugs-list mailing list

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

2019-01-31 Thread INADA Naoki
Change by INADA Naoki : -- pull_requests: +11570 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2019-01-31 Thread INADA Naoki
Change by INADA Naoki : -- pull_requests: +11570, 11571 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35865] configparser document refers about random dict order

2019-01-31 Thread INADA Naoki
Change by INADA Naoki : -- keywords: +patch, patch, patch pull_requests: +11567, 11568, 11569 stage: -> patch review ___ Python tracker ___

[issue35865] configparser document refers about random dict order

2019-01-31 Thread INADA Naoki
Change by INADA Naoki : -- keywords: +patch, patch pull_requests: +11567, 11568 stage: -> patch review ___ Python tracker ___ ___

[issue35865] configparser document refers about random dict order

2019-01-31 Thread INADA Naoki
Change by INADA Naoki : -- keywords: +patch pull_requests: +11567 stage: -> patch review ___ Python tracker ___ ___

[issue35865] configparser document refers about random dict order

2019-01-31 Thread INADA Naoki
New submission from INADA Naoki : GH-6819 (bpo-33504) changed OrderedDict to dict, and removed note about randomness of dict order in dict. But it is only for 3.8. Python 3.7 document should remove the note too. -- assignee: docs@python components: Documentation messages: 334609

<    1   2