[issue34011] Default preference not given to venv DLL's

2018-11-07 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: This buildbot is failing when raising when creating subprocess.CalledProcessError: https://buildbot.python.org/all/#/builders/40/builds/1135/steps/3/logs/stdio test_defaults (test.test_venv.BasicTest) ... ok test_executable (test.test_venv.BasicTest)

[issue35185] Logger race condition - loses lines if removeHandler called from another thread while logging

2018-11-07 Thread Ned Deily
Change by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35148] cannot activate a venv environment on a Swiss German windows

2018-11-07 Thread Vinay Sajip
Vinay Sajip added the comment: Fixed, see bpo-32409 for commit information. -- resolution: -> fixed stage: -> resolved status: open -> closed versions: -Python 3.6 ___ Python tracker

[issue32153] mock.create_autospec fails if an attribute is a partial function

2018-11-07 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: @berker.peksag I have created a unit test PR and verified that the test fails in 3.6 and passes on master. # 3.6 branch cpython git:(25bd107399) ./python.exe Python 3.6.7+ (remotes/upstream/3.6:25bd107399, Nov 8 2018, 00:50:43) [GCC 4.2.1

[issue35182] Popen.communicate() breaks when child closes its side of pipe but not exits

2018-11-07 Thread Josh Rosenberg
Josh Rosenberg added the comment: Sounds like the solution you'd want here is to just change each if check in _communicate, so instead of: if self.stdout: selector.register(self.stdout, selectors.EVENT_READ) if self.stderr: selector.register(self.stderr,

[issue35185] Logger race condition - loses lines if removeHandler called from another thread while logging

2018-11-07 Thread Ben Spiller
New submission from Ben Spiller : I just came across a fairly serious thread-safety / race condition bug in the logging.Loggers class, which causes random log lines to be lost i.e. not get passed to some of the registered handlers, if (other, unrelated) handlers are being added/removed using

[issue32409] venv activate.bat is UTF-8 encoded but uses current console codepage

2018-11-07 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 881e273c795f2f5154b8afebfa299f0e830f3712 by Vinay Sajip (Miss Islington (bot)) in branch '3.7': bpo-32409: Fix regression in activate.bat on international Windows (GH-10295) (GH-10377)

[issue35182] Popen.communicate() breaks when child closes its side of pipe but not exits

2018-11-07 Thread Josh Rosenberg
Josh Rosenberg added the comment: Hmm... Correction to my previous post. communicate itself has a test for: "if self._communication_started and input:" that raises an error if it passes, so the second call to communicate can only be passed None/empty input. And _communicate only explicitly

[issue5166] ElementTree and minidom don't prevent creation of not well-formed XML

2018-11-07 Thread Ben Spiller
Change by Ben Spiller : -- nosy: +Ben Spiller ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32513] dataclasses: make it easier to use user-supplied special methods

2018-11-07 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- pull_requests: -9682 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2018-11-07 Thread Martin Bijl-Schwab
Change by Martin Bijl-Schwab : -- pull_requests: +9681 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35180] Ctypes segfault or TypeError tested for python2.7 and 3

2018-11-07 Thread Eryk Sun
Eryk Sun added the comment: Assign an errcheck function to check the return value and raise an OSError exception on failure. Load the C library with use_errno=True to get the value of C errno. Make sure to properly handle encoding Unicode strings for the file-system encoding, including

[issue34726] Add support of checked hash-based pycs in zipimport

2018-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset a6e956bcb0edbfe7f18af9be2215a5326ea6bf05 by Serhiy Storchaka (Elvis Pranskevichus) in branch 'master': bpo-34726: Fix handling of hash-based pycs in zipimport. (GH-10327)

[issue34726] Add support of checked hash-based pycs in zipimport

2018-11-07 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue32513] dataclasses: make it easier to use user-supplied special methods

2018-11-07 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- pull_requests: +9682 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32153] mock.create_autospec fails if an attribute is a partial function

2018-11-07 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- keywords: +patch pull_requests: +9683 stage: needs patch -> patch review ___ Python tracker ___

[issue32281] bdist_rpm v.s. the Macintosh

2018-11-07 Thread Ben Hyde
Ben Hyde added the comment: ping -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2018-11-07 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: -9681 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34011] Default preference not given to venv DLL's

2018-11-07 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +9685 stage: resolved -> patch review ___ Python tracker ___ ___

[issue31354] Fixing a bug related to LTO only build

2018-11-07 Thread STINNER Victor
STINNER Victor added the comment: New changeset f6b9459996f5166300982d0427119eb326e74dac by Victor Stinner (stratakis) in branch '3.6': [3.6] bpo-31354: Let configure --with-lto work on all builds (GH-10261) https://github.com/python/cpython/commit/f6b9459996f5166300982d0427119eb326e74dac

[issue31670] Associate .wasm with application/wasm

2018-11-07 Thread Runping Wang
Runping Wang added the comment: We're also depending on this MIME type for WebAssembly. It will be great if we can get this wasm MIME type in. -- nosy: +runpiw ___ Python tracker

[issue32485] Multiprocessing dict sharing between forked processes

2018-11-07 Thread Gus Goulart
Gus Goulart added the comment: This is probably a bug that was fixed sometime in Python 3x. Testing on 3.7.1, Python gracefully errors out: ``` ➜ cpython git:(bpo-32485) ✗ python issue_32485.py Same manager, same mux Starting test_sameProcessSameThread Traceback (most recent call last):

[issue35015] availability directive breaks po files

2018-11-07 Thread Julien Palard
Julien Palard added the comment: New changeset beed84ca5e0f2784d758478d4e7c81c9c1088c4e by Julien Palard in branch 'master': bpo-35015: Doc: Fix internationalisation of the availability directive. (GH-10360) https://github.com/python/cpython/commit/beed84ca5e0f2784d758478d4e7c81c9c1088c4e

[issue35015] availability directive breaks po files

2018-11-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +9684 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34805] Explicitly specify `MyClass.__subclasses__()` returns classes in definition order

2018-11-07 Thread Guido van Rossum
Guido van Rossum added the comment: OK, I don't have time to keep arguing, and I doubt any other core devs care. We should probably just close it as Won't Fix, since it's not important enough to keep deliberating. Luna, I recommend that you pick another project. --

[issue34805] Explicitly specify `MyClass.__subclasses__()` returns classes in definition order

2018-11-07 Thread Josh Rosenberg
Josh Rosenberg added the comment: Keep in mind, had this guarantee been in place in 3.4, the improvement in 3.5 couldn't have been made, and issue17936 might have been closed and never addressed, even once dicts were ordered, simply because we never rechecked it. It makes the whole

[issue34805] Explicitly specify `MyClass.__subclasses__()` returns classes in definition order

2018-11-07 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks for the long post! Clearly there is more here than the eye can easily see. Nevertheless, I feel that, *in this case*, it's not likely that such a re-implementation will ever happen, so I think it is okay to constrain the future so we can guarantee

[issue34805] Explicitly specify `MyClass.__subclasses__()` returns classes in definition order

2018-11-07 Thread Guido van Rossum
Guido van Rossum added the comment: Josh, I have to ask -- do you have plans to rewrite the __subclasses__ implementation? Because at this point I don't really feel like arguing over the OP's use case. It looks like you have a strong objection over the requested feature that's quite

[issue34805] Explicitly specify `MyClass.__subclasses__()` returns classes in definition order

2018-11-07 Thread Josh Rosenberg
Josh Rosenberg added the comment: First off, the OP's original case seems like a use case for functools.singledispatch. Not really related to the problem, just thought I'd mention it. Secondly, are we sure we want to make such a guarantee? That restricts the underlying storage to ordered

[issue32409] venv activate.bat is UTF-8 encoded but uses current console codepage

2018-11-07 Thread Martin Bijl-Schwab
Martin Bijl-Schwab added the comment: I will have a look. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34011] Default preference not given to venv DLL's

2018-11-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +9687 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34011] Default preference not given to venv DLL's

2018-11-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +9686 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32409] venv activate.bat is UTF-8 encoded but uses current console codepage

2018-11-07 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +9688 stage: resolved -> patch review ___ Python tracker ___ ___

[issue32409] venv activate.bat is UTF-8 encoded but uses current console codepage

2018-11-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +9689 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32409] venv activate.bat is UTF-8 encoded but uses current console codepage

2018-11-07 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 6843ffe4533e9f2cde036296fd932fef6f059687 by Pablo Galindo in branch 'master': Revert "bpo-32409: Fix regression in activate.bat on international Windows (GH-10295)" (GH-10403)

[issue32409] venv activate.bat is UTF-8 encoded but uses current console codepage

2018-11-07 Thread miss-islington
miss-islington added the comment: New changeset 3ba5e253de1a52e9692aa645c95072705f08b7bb by Miss Islington (bot) in branch '3.7': Revert "bpo-32409: Fix regression in activate.bat on international Windows (GH-10295)" (GH-10403)

[issue27602] Enable py launcher to launch repository Python.

2018-11-07 Thread Franklin Yu
Franklin Yu added the comment: Any updates? I would like to switch between versions of PyPy. -- nosy: +Franklin Yu ___ Python tracker ___

[issue25451] tkinter: PhotoImage transparency methods

2018-11-07 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +9690 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue24905] Allow incremental I/O to blobs in sqlite3

2018-11-07 Thread Holger Waldmann
Holger Waldmann added the comment: I am looking forward for this to be included. My main use case is on restricted IoT devices, where I need to handle BLOBs of 2MB size. As this is larger than my available RAM, I store need to store them in the filesystem today. This is ugly because it is

[issue34805] Explicitly specify `MyClass.__subclasses__()` returns classes in definition order

2018-11-07 Thread Josh Rosenberg
Josh Rosenberg added the comment: I'm also a little skeptical of the OP's proposed use case for other reasons. In any circumstance other than "all classes are defined in the same module", you can't really make useful guarantees about subclass definition order, because: 1. If the converters

[issue32409] venv activate.bat is UTF-8 encoded but uses current console codepage

2018-11-07 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: This commit broke a lot of the Windows buildbots: https://buildbot.python.org/all/#/builders/32/builds/1707 https://buildbot.python.org/all/#/builders/113/builds/733 https://buildbot.python.org/all/#/builders/40/builds/1137

[issue35015] availability directive breaks po files

2018-11-07 Thread Julien Palard
Change by Julien Palard : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35015] availability directive breaks po files

2018-11-07 Thread miss-islington
miss-islington added the comment: New changeset 363839caf9dac796783c74b682a70680a15fa8a7 by Miss Islington (bot) in branch '3.7': bpo-35015: Doc: Fix internationalisation of the availability directive. (GH-10360)

[issue34805] Explicitly specify `MyClass.__subclasses__()` returns classes in definition order

2018-11-07 Thread Josh Rosenberg
Josh Rosenberg added the comment: I wrote the response to the OP's use case before I saw your response; it wasn't really intended as an additional critique of the proposed change or a counterargument to your post, just a note that the required behavior could be obtained on all versions of

[issue35186] distutils.command.upload uses deprecated platform.dist with bdist_rpm

2018-11-07 Thread Paul Ganssle
New submission from Paul Ganssle : It seems that in issue #1322, `platform.dist` was deprecated, and is slated for removal in Python 3.8, but it is currently used in distutils.command.upload.upload_file:

[issue34966] Pydoc: better support of method aliases

2018-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset a44d34e17908a49d584f86c4f8642a50707b7150 by Serhiy Storchaka in branch 'master': bpo-34966: Improve support of method aliases in pydoc. (GH-9823) https://github.com/python/cpython/commit/a44d34e17908a49d584f86c4f8642a50707b7150 --

[issue34966] Pydoc: better support of method aliases

2018-11-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +9691 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34966] Pydoc: better support of method aliases

2018-11-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +9692 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25451] tkinter: PhotoImage transparency methods

2018-11-07 Thread Zackery Spytz
Zackery Spytz added the comment: I've created a PR for this issue. -- nosy: +ZackerySpytz versions: +Python 3.8 -Python 3.6 ___ Python tracker ___

[issue24905] Allow incremental I/O to blobs in sqlite3

2018-11-07 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- versions: +Python 3.8 -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34966] Pydoc: better support of method aliases

2018-11-07 Thread miss-islington
miss-islington added the comment: New changeset 9d3658147b56e24e96e174510b6ee91c8141e530 by Miss Islington (bot) in branch '3.7': bpo-34966: Improve support of method aliases in pydoc. (GH-9823) https://github.com/python/cpython/commit/9d3658147b56e24e96e174510b6ee91c8141e530 --

[issue34966] Pydoc: better support of method aliases

2018-11-07 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 2.7 ___ Python tracker ___

[issue34966] Pydoc: better support of method aliases

2018-11-07 Thread miss-islington
miss-islington added the comment: New changeset 11a33e171b89ea9267672b0664d739ca06e459ca by Miss Islington (bot) in branch '3.6': bpo-34966: Improve support of method aliases in pydoc. (GH-9823) https://github.com/python/cpython/commit/11a33e171b89ea9267672b0664d739ca06e459ca --

[issue35187] a bug about np.arrange

2018-11-07 Thread xiyunlong
New submission from xiyunlong : when I use np.arange as follows: np.arange(1,2.2,0.2) I got the array as [1. , 1.2, 1.4, 1.6, 1.8, 2. , 2.2],we know, the maxvalue 2.2 of the array should not be included in the array. Is this a bug? -- components: Library (Lib) messages: 329460 nosy:

[issue34971] add support for tls/ssl sessions in asyncio

2018-11-07 Thread Christian Heimes
Christian Heimes added the comment: The session code of the ssl is not compatible with TLS 1.3. Actually the whole API doesn't work with TLS 1.3. In TLS 1.2 and before, sessions had multiple security implications. For example they break PFS. TLS 1.3 changed when sessions are exchanged and

[issue31553] Extend json.tool to handle jsonlines (with a flag)

2018-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset f19447994983902aa88362d8fffe645f1ea2f2aa by Serhiy Storchaka (HongWeipeng) in branch 'master': bpo-31553: add --json-lines option to json.tool (#10051) https://github.com/python/cpython/commit/f19447994983902aa88362d8fffe645f1ea2f2aa

[issue35183] os.path.splitext documentation needs typical example

2018-11-07 Thread Shaun Griffith
New submission from Shaun Griffith : As with many entries on the os.path doc page, splitext needs a typical example. Not grokking the bare minimum text, I had to actually try it in the interpreter to see what it did. The one example that *is* there is an edge case, and does nothing to

[issue35182] Popen.communicate() breaks when child closes its side of pipe but not exits

2018-11-07 Thread Andriy Maletsky
Change by Andriy Maletsky : -- components: +Library (Lib) ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34898] add mtime argument to gzip.compress

2018-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your contribution! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement versions: -Python 3.6, Python 3.7 ___ Python tracker

[issue34898] add mtime argument to gzip.compress

2018-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 0e7497cb469b003a45a4abe4105b81ef6d0c4002 by Serhiy Storchaka (guoci) in branch 'master': bpo-34898: Add mtime parameter to gzip.compress(). (GH-9704) https://github.com/python/cpython/commit/0e7497cb469b003a45a4abe4105b81ef6d0c4002

[issue31553] Extend json.tool to handle jsonlines (with a flag)

2018-11-07 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 -Python 3.7 ___ Python tracker ___

[issue35123] Add style guide for sentinel usage

2018-11-07 Thread Robert Wright
Robert Wright added the comment: Perhaps there's confusion over what I mean by "style guide". I'd happily take Steven's message *as* the style guide. Or, at the very least, the clarification that sentinels are to be thought of as constants. It's one of those things that's obvious once

[issue35123] Add style guide for sentinel usage

2018-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I agree that there are not any problems that need solving. -- nosy: +serhiy.storchaka resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker

[issue34971] add support for tls/ssl sessions in asyncio

2018-11-07 Thread Rémi Cardona
Rémi Cardona added the comment: Hi Christian, Could you tell me more about this new openssl API? Right now my patch works with whatever the ssl module provides. Are you suggesting the ssl module is in some way incomplete? Would supporting TLS 1.3 sessions be incompatible with the current

[issue35182] Popen.communicate() breaks when child closes its side of pipe but not exits

2018-11-07 Thread Andriy Maletsky
New submission from Andriy Maletsky : When communicate() is called in a loop, it crashes when the child process has already closed any piped standard stream, but still continues to be running. How this happens: 1) the parent waits for the child events inside communicate() call 2) the child

[issue35182] Popen.communicate() breaks when child closes its side of pipe but not exits

2018-11-07 Thread Andriy Maletsky
Change by Andriy Maletsky : -- type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31242] Add SSLContext.set_verify_callback()

2018-11-07 Thread David Peall
Change by David Peall : -- nosy: +David Peall ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34160] ElementTree not preserving attribute order

2018-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 5598cc90c745dab827e55fadded42dbe85e31d33 by Serhiy Storchaka (Diego Rojas) in branch 'master': bpo-34160: Preserve order of attributes in minidom. (GH-10219) https://github.com/python/cpython/commit/5598cc90c745dab827e55fadded42dbe85e31d33

[issue2504] Add gettext.pgettext() and variants support

2018-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 637a33b99685fd5d1032670fbe29c7c8a8f0ff63 by Serhiy Storchaka (Cheryl Sabella) in branch 'master': bpo-2504: Add pgettext() and variants to gettext. (GH-7253) https://github.com/python/cpython/commit/637a33b99685fd5d1032670fbe29c7c8a8f0ff63

[issue10536] Enhancements to gettext docs

2018-11-07 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- stage: resolved -> status: closed -> open versions: +Python 3.6, Python 3.7 -Python 3.4, Python 3.5 ___ Python tracker ___

[issue2504] Add gettext.pgettext() and variants support

2018-11-07 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue34982] re.sub() different behavior in 3.7

2018-11-07 Thread Stephan Bergmann
Stephan Bergmann added the comment: So, just to make sure, that also means that re.sub('a*$', 'b', 'a') returning 'bb' instead of 'b' is intended behavior? -- nosy: +Stephan Bergmann ___ Python tracker

[issue35181] Doc: Namespace Packages: Inconsistent documentation of __loader__ being None

2018-11-07 Thread Géry
Géry added the comment: It looks like Barry Warsaw has not been fully updated the documentation after making the __spec__.loader attribute match with the __loader__ attribute, and the __spec__.file attribute match with the __file__ attribute for namespace packages. Here is a pull request to

[issue35181] Doc: Namespace Packages: Inconsistent documentation of __loader__ being None

2018-11-07 Thread Géry
Change by Géry : -- keywords: +patch pull_requests: +9677 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue35181] Doc: Namespace Packages: Inconsistent documentation of __loader__ being None

2018-11-07 Thread Géry
Change by Géry : -- pull_requests: +9678 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34982] re.sub() different behavior in 3.7

2018-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Yes, it is. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35168] shlex punctuation_chars inconsistency

2018-11-07 Thread Vinay Sajip
Vinay Sajip added the comment: > a better run time error message which clarifies that shlex.punctuation_chars > is read-only That it can be set only via the __init__(), yes. -- ___ Python tracker

[issue35184] Makefile is not correctly generated when compiling pyextat with DXML_POOR_ENTROPY=1

2018-11-07 Thread Marta Gómez
New submission from Marta Gómez : Hello, I was getting this same error (https://bugs.python.org/issue35139) when compiling pyextat so I added these changes (https://github.com/python/cpython/pull/10291/files) to my Setup.dist. After running ./configure, the generated Makefile throws the

[issue32409] venv activate.bat is UTF-8 encoded but uses current console codepage

2018-11-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +9679 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32409] venv activate.bat is UTF-8 encoded but uses current console codepage

2018-11-07 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset c64583b6d3e8516a8cd2b5f84fc1e300bfac2206 by Vinay Sajip (samstagern) in branch 'master': bpo-32409: Fix regression in activate.bat on international Windows (GH-10295)

[issue11492] email.header.Header doesn't fold headers correctly

2018-11-07 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9680 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11492] email.header.Header doesn't fold headers correctly

2018-11-07 Thread STINNER Victor
STINNER Victor added the comment: I wrote PR 10378 to show that I don't think that this bug must be fixed in Python 2: it would break any application relying on the current folding algorithm. -- nosy: +vstinner ___ Python tracker

[issue28015] configure --with-lto builds fail when CC=clang on Linux, requires gold linker

2018-11-07 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: The workaround indeed works. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34971] add support for tls/ssl sessions in asyncio

2018-11-07 Thread Rémi Cardona
Rémi Cardona added the comment: So, IOW, the ssl module needs a good shakeup wrt TLS 1.3 sessions before any asyncio work can be merged. Am I getting this right? In which case, a whole other issue/PR is needed and possibly better folks than me. I try to stay clear of low-level crypto APIs