[issue34256] Python treats ASCII record seperator ('\x1e') as a newline

2018-07-28 Thread Anton Patrushev
Anton Patrushev added the comment: 0x1e listed as linebreak char in tests: Lib/test/test_unicodedata.py:317 -- nosy: +apatrushev ___ Python tracker <https://bugs.python.org/issue34

[issue34137] Add Path.lexist() to pathlib

2018-07-26 Thread Anton Patrushev
Change by Anton Patrushev : -- nosy: +apatrushev ___ Python tracker <https://bugs.python.org/issue34137> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27794] setattr a read-only property; the AttributeError should show the attribute that failed

2018-07-26 Thread Anton Patrushev
Change by Anton Patrushev : -- nosy: +apatrushev ___ Python tracker <https://bugs.python.org/issue27794> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32395] asyncio.StreamReader.readuntil is not general enough

2018-07-26 Thread Anton Patrushev
Change by Anton Patrushev : -- nosy: +socketpair ___ Python tracker <https://bugs.python.org/issue32395> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33678] selector_events.BaseSelectorEventLoop.sock_connect should preserve socket type

2018-07-26 Thread Anton Patrushev
Anton Patrushev added the comment: I created small script showing the error. -- nosy: +apatrushev versions: +Python 3.7 Added file: https://bugs.python.org/file47714/test.py ___ Python tracker <https://bugs.python.org/issue33

[issue31830] asyncio.create_subprocess_exec doesn't capture all stdout output

2018-07-26 Thread Anton Patrushev
New submission from Anton Patrushev : The issue is invalid. I just added the following lines to the end of your main: ``` line = await asyncio.wait_for(process.stderr.readline(), 10) print(line) ``` and got additional info: ``` b'/bin/bash: echo local: command not found\n' ``` So

[issue33837] Closing asyncio.Server on asyncio.ProactorEventLoop causes all active servers to stop listening

2018-07-26 Thread Anton Patrushev
Anton Patrushev added the comment: This issue was fixed in: git319c0345cdd8fddb49d235462e71883f1dd51b99 -- nosy: +apatrushev ___ Python tracker <https://bugs.python.org/issue33

[issue33193] Cannot create a venv on Windows when directory path contains dollar character

2018-07-25 Thread Anton Patrushev
Anton Patrushev added the comment: The same problem is reproducible with different but obvious way on Python 2.7. -- versions: +Python 2.7 ___ Python tracker <https://bugs.python.org/issue33

[issue33193] Cannot create a venv on Windows when directory path contains dollar character

2018-07-25 Thread Anton Patrushev
Anton Patrushev added the comment: I found when this "feature" was implemented: gitff2d9b71547d95566416fa968872910ca9c4adb1 Part of commit message: ``` in command-line options, and in two phases at that: first, we expand 'install_base' and 'install_platbase', and then the other