[issue29550] Mac build-installer touch step fails after github conversion

2017-03-03 Thread Ned Deily
Changes by Ned Deily : -- pull_requests: +382 ___ Python tracker ___ ___ Python-bugs-list

[issue29454] Shutting down consumer on a remote queue

2017-03-03 Thread Raymond Hettinger
Raymond Hettinger added the comment: > Expected: items stay in the queue until a consumer consumes it That would be my expectation as well. Davin, do you know why the example in the docs uses queue.Queue() instead of multiprocessing.Queue()? Would there be a difference? Also, I'm curious

[issue29657] os.symlink: FileExistsError shows wrong message

2017-03-03 Thread Eryk Sun
Eryk Sun added the comment: To me the error message is in the model of a source -> destination operation, in which the arrow indicates the operation's information flow (e.g. of the target path or inode number) from the source file to the destination file. I've never viewed it superficially as

[issue29701] Add close method to queue.Queue

2017-03-03 Thread Raymond Hettinger
Raymond Hettinger added the comment: Another Note * The current Python multiprocessing module version of Queue has a close() method. It isn't clear that use cases there are also applicable to plain queue module queues for threads.

[issue29572] Upgrade installers to OpenSSL 1.0.2k

2017-03-03 Thread Ned Deily
Changes by Ned Deily : -- pull_requests: +381 ___ Python tracker ___ ___ Python-bugs-list

[issue29550] Mac build-installer touch step fails after github conversion

2017-03-03 Thread Ned Deily
Changes by Ned Deily : -- pull_requests: +380 ___ Python tracker ___ ___ Python-bugs-list

[issue29701] Add close method to queue.Queue

2017-03-03 Thread Raymond Hettinger
Raymond Hettinger added the comment: Notes: -- * Ruby has a Queue.close() method like the one being proposed here. There is also a ?closed() call for testing the status: https://ruby-doc.org/core-2.3.0/Queue.html * Java queues do not have a closing method:

[issue29718] Fixed compile on cygwin.

2017-03-03 Thread Decorater
Decorater added the comment: Also I just realized my Cygwin updated to 2.7.0 as well. -- ___ Python tracker ___

[issue29718] Fixed compile on cygwin.

2017-03-03 Thread Decorater
Decorater added the comment: Well then I am thinking about figuring out how to make an batch file under tools/buildbot to target cygwin building in windows. tbh windows 7 or newer on cygwin is fine with me. It is just that I need to figure out how to make it invoke Cygwin.bat and yet also

[issue27593] Deprecate sys._mercurial and create sys._git

2017-03-03 Thread Ned Deily
Changes by Ned Deily : -- pull_requests: +379 ___ Python tracker ___ ___ Python-bugs-list

[issue27593] Deprecate sys._mercurial and create sys._git

2017-03-03 Thread Steve Dower
Steve Dower added the comment: GitHub trims to the first 7 characters. I see no harm in doing that for sys.version (but not tonight) -- ___ Python tracker

[issue27593] Deprecate sys._mercurial and create sys._git

2017-03-03 Thread Ned Deily
Ned Deily added the comment: Yeah, shortening the hash in the version string might be nice. Feel free to do so. It can probably wait for 3.6.2. -- ___ Python tracker

[issue27593] Deprecate sys._mercurial and create sys._git

2017-03-03 Thread Steve Dower
Steve Dower added the comment: copyright==>version string (sys.version) Also, that part is clearly not release blocking. My PR for 2.7 is waiting for Travis to catch up, so once that's done and Ned has finished his backports (or Larry and Ben have backported to their versions?) we can lower

[issue27593] Deprecate sys._mercurial and create sys._git

2017-03-03 Thread Steve Dower
Steve Dower added the comment: Here's some sample output with the change: C:\build\cpython36>PCbuild\win32\python_d.exe Python 3.6.0+ (3.6:95c50e5aed9e5683676e18349dd94b11901a66b3, Mar 4 2017, 06:08:54) [MSC v.1900 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for

[issue29657] os.symlink: FileExistsError shows wrong message

2017-03-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is not about how a symbolic link is represented. This is about how the operation of creating a symbolic link is represented. The first filename is the first argument of os.symlink(), the second filename is the second argument. Try to run

[issue27593] Deprecate sys._mercurial and create sys._git

2017-03-03 Thread Ned Deily
Changes by Ned Deily : -- pull_requests: +378 ___ Python tracker ___ ___ Python-bugs-list

[issue27593] Deprecate sys._mercurial and create sys._git

2017-03-03 Thread Steve Dower
Changes by Steve Dower : -- pull_requests: +377 ___ Python tracker ___ ___

[issue27593] Deprecate sys._mercurial and create sys._git

2017-03-03 Thread Steve Dower
Changes by Steve Dower : -- pull_requests: +376 ___ Python tracker ___ ___

[issue27593] Deprecate sys._mercurial and create sys._git

2017-03-03 Thread Steve Dower
Changes by Steve Dower : -- pull_requests: +375 ___ Python tracker ___ ___

[issue27593] Deprecate sys._mercurial and create sys._git

2017-03-03 Thread Steve Dower
Changes by Steve Dower : -- pull_requests: +374 ___ Python tracker ___ ___

[issue29659] Expose the `length` arg from shutil.copyfileobj for public use

2017-03-03 Thread Raymond Hettinger
Raymond Hettinger added the comment: This seems reasonable to me. -- nosy: +rhettinger ___ Python tracker ___

[issue29716] Python 3 Module doc still sounds like __init__.py is required

2017-03-03 Thread INADA Naoki
INADA Naoki added the comment: I think so. namespace package is topic for packaging ecosystem developers, like setuptools and pip. Normal python programmer shouldn't omit __init__.py. Python tutorial is for people who want to be normal python programmer. 2017/03/04 午後1:53 "James O"

[issue29718] Fixed compile on cygwin.

2017-03-03 Thread Decorater
Decorater added the comment: I use cygwin to test things that I write in python to see if they work under linux without having to boot up into an linux VM to find out as it would be too slow to even do that with the computer I have. And besides cygwin makes all of this faster. The version of

[issue29651] Inconsistent/undocumented urlsplit/urlparse behavior on invalid inputs

2017-03-03 Thread Raymond Hettinger
Raymond Hettinger added the comment: A note in the docs would be useful. This API is far too well established to make any behavioral changes at this point. -- nosy: +rhettinger ___ Python tracker

[issue29718] Fixed compile on cygwin.

2017-03-03 Thread STINNER Victor
STINNER Victor added the comment: Please explain why you want to support Cygwin. Which Cygwin and Windows versions are you targetingW -- ___ Python tracker

[issue29718] Fixed compile on cygwin.

2017-03-03 Thread Decorater
Decorater added the comment: For now I stuck it under cygwin only but it could easily move out to not only cygwin if desired. -- ___ Python tracker ___

[issue29718] Fixed compile on cygwin.

2017-03-03 Thread Decorater
Decorater added the comment: Yes, it is because of the fact in Cygwin it will cause an compile Error when ints are involved forcing other methods to be put in place. -- ___ Python tracker

[issue29718] Fixed compile on cygwin.

2017-03-03 Thread Decorater
Changes by Decorater : Added file: http://bugs.python.org/file46698/cygwin_build.patch ___ Python tracker ___

[issue29718] Fixed compile on cygwin.

2017-03-03 Thread STINNER Victor
STINNER Victor added the comment: +/* Define if pthread_key_t is compatible with int. */ +#undef PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT Is this change the implementation of the issue #25658? -- ___ Python tracker

[issue29718] Fixed compile on cygwin.

2017-03-03 Thread STINNER Victor
STINNER Victor added the comment: https://github.com/python/cpython/pull/324#issuecomment-283931430 @AraHaan: "By the way guys I will be working on cpython to work on some changes to a few things for cygwin to compile using the official cpython source code on 3.5, 3.6, and 3.7. (...)" Cygwin

[issue29718] Fixed compile on cygwin.

2017-03-03 Thread Decorater
Changes by Decorater : Removed file: http://bugs.python.org/file46697/cygwin_build.patch ___ Python tracker ___

[issue29716] Python 3 Module doc still sounds like __init__.py is required

2017-03-03 Thread James O
James O added the comment: Ah, I didn't realize some tools depended on it. Should I set the status to closed? (like I said, I'm new to this) -- ___ Python tracker

[issue29670] argparse: does not respect required args pre-populated into namespace

2017-03-03 Thread paul j3
paul j3 added the comment: What issue might have changed this behavior? I'm not aware of any that were trying to change either the `seen_actions` and the 'required' tests, not any dealing with pre-existing values in Namespace. The current handling of defaults complicates respecting

[issue29716] Python 3 Module doc still sounds like __init__.py is required

2017-03-03 Thread INADA Naoki
INADA Naoki added the comment: namespace package is very advanced topic. I don't think tutorial should mention it. Putting __init__.py always in normal package is highly recommended. Otherwise, many tools can't distinguish normal directory and python package. 2017/03/04 午前6:26 "James O"

[issue27593] Deprecate sys._mercurial and create sys._git

2017-03-03 Thread Ned Deily
Ned Deily added the comment: I finally took a close look at this and I think the approach Brett advocated here is a bit too simple and does not cover the use case I had in mind when I suggested we needed to have a replacement for sys._mercurial. Previously when building from a source repo,

[issue29718] Fixed compile on cygwin.

2017-03-03 Thread Decorater
Changes by Decorater : -- pull_requests: +373 ___ Python tracker ___ ___

[issue27593] Deprecate sys._mercurial and create sys._git

2017-03-03 Thread Ned Deily
Changes by Ned Deily : -- pull_requests: +372 ___ Python tracker ___ ___ Python-bugs-list

[issue29718] Fixed compile on cygwin.

2017-03-03 Thread Decorater
Changes by Decorater : -- keywords: +patch Added file: http://bugs.python.org/file46697/cygwin_build.patch ___ Python tracker ___

[issue29718] Fixed compile on cygwin.

2017-03-03 Thread Decorater
New submission from Decorater: Cygwin had an issue with building and installing python after it was configured. The main issue was the TLS key stuff which would make python fail to fully build or work correctly. This issue contains a patch for cygwin specifically to make it compile and work

[issue29708] support reproducible Python builds

2017-03-03 Thread Bernhard M. Wiedemann
Bernhard M. Wiedemann added the comment: backports are optional. It can help reduce duplicated work for the various distributions. Currently, I think master and 2.7 are the most relevant targets. -- versions: +Python 3.7 ___ Python tracker

[issue29657] os.symlink: FileExistsError shows wrong message

2017-03-03 Thread Eryk Sun
Eryk Sun added the comment: A symbolic link is typically represented the other way around, from the point of view of the link pointing at the target. However, Python conceptualizes linking as something like a copy or rename operation, with source and destination filenames, and the current

[issue26187] sqlite3 trace callback prints duplicate line

2017-03-03 Thread Berker Peksag
Changes by Berker Peksag : -- stage: test needed -> patch review ___ Python tracker ___

[issue29715] Arparse improperly handles "-_"

2017-03-03 Thread Martin Panter
Martin Panter added the comment: This is actually expected behaviour of the “argparse”, as well as general Unix CLI programs. See the documentation . The general workaround is to use a double-dash separator: >>>

[issue29706] IDLE needs syntax highlighting for async and await

2017-03-03 Thread David E. Franco G.
David E. Franco G. added the comment: I found the problem, it was a test.pyc file that was in my personal folder... once deleted it work perfect the build-in test module should have some other name... -- ___ Python tracker

[issue29406] asyncio SSL contexts leak sockets after calling close with certain Apache servers

2017-03-03 Thread Nikolay Kim
Changes by Nikolay Kim : -- pull_requests: +371 ___ Python tracker ___ ___

[issue28963] Use-after-free in _asyncio_Future_remove_done_callback() of _asynciomodule.c

2017-03-03 Thread Yury Selivanov
Changes by Yury Selivanov : -- resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.7 ___ Python tracker

[issue29704] Can't read data from Transport after asyncio.SubprocessStreamProtocol closes

2017-03-03 Thread Yury Selivanov
Changes by Yury Selivanov : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue24329] __qualname__ and __slots__

2017-03-03 Thread Yury Selivanov
Changes by Yury Selivanov : -- versions: -Python 3.5, Python 3.6 ___ Python tracker ___

[issue24329] __qualname__ and __slots__

2017-03-03 Thread Yury Selivanov
Yury Selivanov added the comment: Xiang, can you make a PR? -- ___ Python tracker ___ ___ Python-bugs-list

[issue28893] Make sure exceptions raised in __aiter__ are properly chained in ceval

2017-03-03 Thread Yury Selivanov
Changes by Yury Selivanov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue29271] Task.current_task(None) returns unexpected result

2017-03-03 Thread Yury Selivanov
Changes by Yury Selivanov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue29654] SimpleHTTPRequestHandler should support browser cache

2017-03-03 Thread Glenn Linderman
Changes by Glenn Linderman : -- nosy: +v+python ___ Python tracker ___ ___

[issue26213] Document BUILD_*_UNPACK opcodes

2017-03-03 Thread Brett Cannon
Brett Cannon added the comment: Thanks to Ivan for the PRs! -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker

[issue29454] Shutting down consumer on a remote queue

2017-03-03 Thread Rishav Kumar
Rishav Kumar added the comment: I'd like to work on this issue. -- nosy: +aptrishu ___ Python tracker ___ ___

[issue29717] `loop.add_reader` and `<<EOF`

2017-03-03 Thread Vahid Mardani
New submission from Vahid Mardani: Assume this simple script for reading from stdin: ```python #! /usr/bin/env python3 import sys import os import asyncio async def main(loop): done = False fileno = sys.stdin.fileno() def _reader(): nonlocal done chunk =

[issue29706] IDLE needs syntax highlighting for async and await

2017-03-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: If 'import test' fails that way, then there is a problem either with Anaconda or your installation. You might try deleting .../Lib/test/__pycache__/__init__*.pyc. -- ___ Python tracker

[issue29715] Arparse improperly handles "-_"

2017-03-03 Thread R. David Murray
R. David Murray added the comment: Have you tried '-' plus any other character? argparse treats '-' and '--' specially, and this is a known issue. -- nosy: +r.david.murray ___ Python tracker

[issue29572] Upgrade installers to OpenSSL 1.0.2k

2017-03-03 Thread Zachary Ware
Zachary Ware added the comment: Done on Windows except for PR444 for 2.7, which is waiting on Travis. -- assignee: -> ned.deily ___ Python tracker ___

[issue29572] Upgrade installers to OpenSSL 1.0.2k

2017-03-03 Thread Zachary Ware
Changes by Zachary Ware : -- pull_requests: +370 ___ Python tracker ___ ___

[issue29572] Upgrade installers to OpenSSL 1.0.2k

2017-03-03 Thread Zachary Ware
Changes by Zachary Ware : -- pull_requests: +369 ___ Python tracker ___ ___

[issue29572] Upgrade installers to OpenSSL 1.0.2k

2017-03-03 Thread Zachary Ware
Changes by Zachary Ware : -- pull_requests: +368 ___ Python tracker ___ ___

[issue29670] argparse: does not respect required args pre-populated into namespace

2017-03-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Can you test on 3.6? This might have been fixed and not back-ported. -- nosy: +bethard, terry.reedy ___ Python tracker

[issue26213] Document BUILD_*_UNPACK opcodes

2017-03-03 Thread Brett Cannon
Changes by Brett Cannon : -- pull_requests: +367 ___ Python tracker ___ ___

[issue26213] Document BUILD_*_UNPACK opcodes

2017-03-03 Thread Brett Cannon
Changes by Brett Cannon : -- pull_requests: +366 ___ Python tracker ___ ___

[issue29659] Expose the `length` arg from shutil.copyfileobj for public use

2017-03-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +terry.reedy stage: -> test needed type: -> enhancement ___ Python tracker ___

[issue29657] os.symlink: FileExistsError shows wrong message

2017-03-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The current error message looks good to me. What is wrong with it? -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue29706] IDLE needs syntax highlighting for async and await

2017-03-03 Thread David E. Franco G.
David E. Franco G. added the comment: Ok, Done. that work in both 3.5 and 3.6 I also did the python -m idlelib.ColorDelegator and python -m idlelib.colorizer and they turn ok I also open those modules in their respective idle and run them, ColorDelegator work ok but colorizer

[issue29572] Upgrade installers to OpenSSL 1.0.2k

2017-03-03 Thread Zachary Ware
Changes by Zachary Ware : -- pull_requests: +365 ___ Python tracker ___ ___

[issue29709] Short-circuiting not only on False and True

2017-03-03 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Committed and backported to 2.7, 3.5, and 3.6. Thanks all :) -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker

[issue29657] os.symlink: FileExistsError shows wrong message

2017-03-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> patch review type: -> behavior ___ Python tracker ___

[issue29471] AST: add an attribute to FunctionDef to distinguish functions from generators and coroutines

2017-03-03 Thread Yury Selivanov
Yury Selivanov added the comment: I'm not sure we need this feature TBH. -- ___ Python tracker ___ ___

[issue29716] Python 3 Module doc still sounds like __init__.py is required

2017-03-03 Thread James O
New submission from James O: PEP 420 says "Allowing implicit namespace packages means that the requirement to provide an __init__.py file can be dropped completely..." (as described here: http://stackoverflow.com/questions/37139786/is-init-py-not-required-for-packages-in-python-3) The

[issue26213] Document BUILD_*_UNPACK opcodes

2017-03-03 Thread Brett Cannon
Changes by Brett Cannon : -- assignee: docs@python -> brett.cannon ___ Python tracker ___

[issue29656] Change "make patchcheck" to be branch aware

2017-03-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> patch review versions: +Python 2.7, Python 3.6, Python 3.7 ___ Python tracker ___

[issue29709] Short-circuiting not only on False and True

2017-03-03 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +364 ___ Python tracker ___ ___

[issue29709] Short-circuiting not only on False and True

2017-03-03 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +363 ___ Python tracker ___ ___

[issue29709] Short-circuiting not only on False and True

2017-03-03 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- pull_requests: +362 ___ Python tracker ___ ___

[issue29651] Inconsistent/undocumented urlsplit/urlparse behavior on invalid inputs

2017-03-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +orsenthil stage: -> needs patch versions: -Python 3.3, Python 3.4, Python 3.5 ___ Python tracker

[issue29688] Document Path.absolute

2017-03-03 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +pitrou ___ Python tracker ___ ___

[issue29649] struct.pack_into check boundary error message ignores offset

2017-03-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> patch review title: struct.pack_into check boundary error message didn't respect offset -> struct.pack_into check boundary error message ignores offset type: -> enhancement ___ Python

[issue29688] Document Path.absolute

2017-03-03 Thread Brett Cannon
Brett Cannon added the comment: I've closed the PR on GitHub until we decide whether we just want to deprecate Path.absolute() in favour of Path.resolve(). -- ___ Python tracker

[issue29645] webbrowser module import has heavy side effects

2017-03-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: This will help IDLE startup (though webbrowser should not be imported on windows, where os.startfile is used instead). This is a somewhat separate issue, but should the Windows code be modified for Win10 and Microsoft Edge? -- nosy: +terry.reedy

[issue29715] Arparse improperly handles "-_"

2017-03-03 Thread Max Rothman
New submission from Max Rothman: In the case detailed below, argparse.ArgumentParser improperly parses the argument string "-_": ``` import argparse parser = argparse.ArgumentParser() parser.add_argument('first') print(parser.parse_args(['-_'])) ``` Expected behavior: prints

[issue29702] Error 0x80070003: Failed to launch elevated child process

2017-03-03 Thread Armen Levonian
Armen Levonian added the comment: If I close the failure to run dialog, the temp directory is also destroyed, thus getting rid of the temp executable, however, while the fail dialog is up and I travel to where it says it fails to run the executable, it then yet creates another temp guid

[issue29455] Mention coverage.py in trace module documentation

2017-03-03 Thread Brett Cannon
Brett Cannon added the comment: Thanks for the PR, Marco! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue29402] Problem with Checkbutton and duplicate last name components

2017-03-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a sample patch that makes implicit variables for checkbuttons unique. This is one of ways to solve this issue. But I'm not sure that this issue needs to be solved at all. In real applications Checkbutton() is called with the variable argument,

[issue29455] Mention coverage.py in trace module documentation

2017-03-03 Thread Brett Cannon
Changes by Brett Cannon : -- pull_requests: +361 ___ Python tracker ___ ___

[issue29572] Upgrade installers to OpenSSL 1.0.2k

2017-03-03 Thread Zachary Ware
Zachary Ware added the comment: Yes*. -- assignee: christian.heimes -> ___ Python tracker ___ ___

[issue29572] Upgrade installers to OpenSSL 1.0.2k

2017-03-03 Thread Ned Deily
Ned Deily added the comment: Steve, Zach: can we get this in for 3.6.1? -- ___ Python tracker ___ ___

[issue29688] Document Path.absolute

2017-03-03 Thread Brett Cannon
Brett Cannon added the comment: As brought up on the PR, it turns out Path.absolute() is extremely under-tested. Perhaps we should deprecate Path.absolute() instead of document it and properly test it (and the testing will be necessary to move forward with the documentation)? Path.resolve()

[issue29076] Mac installer shell updater script silently fails if default shell is fish

2017-03-03 Thread Ned Deily
Changes by Ned Deily : -- stage: -> needs patch title: Py 3.6 Mac installer doesn't update "python3" shell command -> Mac installer shell updater script silently fails if default shell is fish versions: +Python 2.7, Python 3.7 ___

[issue29116] Make str and bytes error messages on concatenation conform with other sequences

2017-03-03 Thread Ned Deily
Ned Deily added the comment: I'm removing myself as assignee as this doesn't seem to need a 3.6 RM decision at this point. If necessary, we can discuss a 3.6 backport after the issue has been resolved for 3.7. -- assignee: ned.deily -> ___ Python

[issue29471] AST: add an attribute to FunctionDef to distinguish functions from generators and coroutines

2017-03-03 Thread Rishav Kumar
Rishav Kumar added the comment: I'd like to work on this issue. -- nosy: +aptrishu ___ Python tracker ___ ___

[issue29706] IDLE needs syntax highlighting for async and await

2017-03-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: David, the easiest thing to do would be to copy and paste the following + ['async', 'await'] into this line of colorizer.py (ColorDelegator.py in 3.5) kw = r"\b" + any("KEYWORD", keyword.kwlist) + r"\b" about line 17, to get kw = r"\b" + any("KEYWORD",

[issue26187] sqlite3 trace callback prints duplicate line

2017-03-03 Thread Anish Shah
Changes by Anish Shah : -- pull_requests: +360 ___ Python tracker ___ ___

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-03 Thread Yury Selivanov
Yury Selivanov added the comment: Yes, closing the issue. Thanks, Ned! -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue29697] Wrong ECDH configuration with OpenSSL 1.1

2017-03-03 Thread Donald Stufft
Changes by Donald Stufft : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue29636] Specifying indent in the json.tool command

2017-03-03 Thread Daniel Himmelstein
Daniel Himmelstein added the comment: To recap the discussion from https://git.io/vyCY8: there are three potential mutually exclusive command line options that have been suggested. There are as follows. ```python import json obj = [1, 2] print('--indent=4') print(json.dumps(obj, indent=4))

[issue28261] wrong error messages when using PyArg_ParseTuple to parse normal tuples

2017-03-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Would it look less awful if remove "xx.__setstate__: "? -- ___ Python tracker ___

[issue29714] can't interpolate byte string with \x00 before replacement identifier

2017-03-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could this be due to using _PyBytesWriter? -- keywords: +3.6regression nosy: +haypo, serhiy.storchaka stage: -> needs patch type: -> behavior versions: +Python 3.7 ___ Python tracker

  1   2   >