[issue32087] deprecated-removed directive generates overlapping msgids in .pot files

2018-02-23 Thread miss-islington
miss-islington added the comment: New changeset c673a62d5f3c650130bf40f2161a2eac64419bce by Miss Islington (bot) in branch '3.7': bpo-32087: Doc: Make "deprecated-removed" directive translatable (GH-4473)

[issue32087] deprecated-removed directive generates overlapping msgids in .pot files

2018-02-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +5607 ___ Python tracker ___

[issue32087] deprecated-removed directive generates overlapping msgids in .pot files

2018-02-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +5606 ___ Python tracker ___

[issue32087] deprecated-removed directive generates overlapping msgids in .pot files

2018-02-23 Thread INADA Naoki
INADA Naoki added the comment: New changeset 0febc053736112d7bb9081742b3ac0ece7b973e7 by INADA Naoki (cocoatomo) in branch 'master': bpo-32087: Doc: Make "deprecated-removed" directive translatable (GH-4473)

[issue31355] Remove Travis CI macOS job: rely on buildbots

2018-02-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: The situation with macOS builds on Travis-CI is now much better (no more long waiting queues) so we might revisit this decision. -- status: closed -> pending ___ Python tracker

[issue32911] Doc strings omitted from AST

2018-02-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Note, that getting the location of the dostring already was a pain since in case of multiline string literals CPython saves the location of the last line, and PyPy saves the location of the first line. Getting the location of

[issue32759] multiprocessing.Array do not release shared memory

2018-02-23 Thread Antoine Pitrou
Change by Antoine Pitrou : -- keywords: +patch pull_requests: +5605 stage: -> patch review ___ Python tracker ___

[issue32911] Doc strings omitted from AST

2018-02-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I prefer 2 or 3. There are benefits from representing a docstring as a separate attribute. This simplifies the code for walking the AST tree (no longer special cases for skipping docstring in modules, classes and functions) and

[issue30028] make test.support.temp_cwd() fork-safe

2018-02-23 Thread Anselm Kruis
Change by Anselm Kruis : -- pull_requests: +5604 ___ Python tracker ___ ___

[issue32759] multiprocessing.Array do not release shared memory

2018-02-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: It is also possible to uncommit the memory without deallocating it, making reuse potentially faster, but that requires low-level platform-specific code (e.g. madvise(MADV_DONTNEED) on Linux or DiscardVirtualMemory() on Windows). --

[issue32886] new Boolean ABC in numbers module

2018-02-23 Thread Mark Dickinson
Mark Dickinson added the comment: > and a minimal representation of boolean logic operations that will seem > natural to anyone, don't you think ? I'm afraid I don't. :-( Issue 1: this ABC doesn't seem a good match for Python bools. If I have a bool-like object in a

[issue30028] make test.support.temp_cwd() fork-safe

2018-02-23 Thread Anselm Kruis
Change by Anselm Kruis : -- pull_requests: +5603 ___ Python tracker ___ ___

[issue32759] multiprocessing.Array do not release shared memory

2018-02-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ok, this is because the multiprocessing Heap object never releases any unused arena objects, so the shared memory you allocate will probably stay allocated until the process tree ends. It is possible to change the strategy to delete unused

[issue32920] Implement PEP 529 for os.getcwdb on Windows

2018-02-23 Thread Alexey Izbyshev
Change by Alexey Izbyshev : -- nosy: +izbyshev ___ Python tracker ___ ___

[issue32911] Doc strings omitted from AST

2018-02-23 Thread Mark Shannon
Mark Shannon added the comment: Serhiy, thanks for reopening this issue. It seems to be that there are three reasonable choices: 1. Revert to 3.6 behaviour, with the addition of `docstring` attribute. 2. Change the docstring attribute to an AST node, possibly by modifying the

[issue32304] Upload failed (400): Digests do not match on .tar.gz ending with x0d binary code

2018-02-23 Thread Louis Lecaroz
Louis Lecaroz added the comment: Hi, First of all, thank you so much for having fixed this bug, I checked in 3.5 & it seems that this fix needs to be also backport in 3.5 branch & certainly others branches (like 3.4) ? Thx in advance for your coming feedback Best regards

[issue32916] IDLE: change 'str' to 'code' in idlelib.pyparse.PyParse and users

2018-02-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: Yes, I agree. I'll start working on this one first. -- ___ Python tracker ___

[issue32917] ConfigParser writes a superfluous final blank line

2018-02-23 Thread TitanSnow
Change by TitanSnow : Removed file: https://bugs.python.org/file47460/final_blank_line.patch ___ Python tracker ___

[issue32917] ConfigParser writes a superfluous final blank line

2018-02-23 Thread TitanSnow
TitanSnow added the comment: Patch updated, included documentation and tests. -- Added file: https://bugs.python.org/file47461/bpo-32917.patch ___ Python tracker

[issue32909] ApplePersistenceIgnoreState warning on macOS

2018-02-23 Thread Ronald Oussoren
Ronald Oussoren added the comment: The ApplePersistenceIgnoreState setting (either in user defaults or an info.plist file) is IMHO not the right solution, as this is a setting intended to be used for testing (see

<    1   2