[issue32812] edited code only runs after closing and re-opening Python.

2018-02-09 Thread Ned Deily
Ned Deily added the comment: OK, since you are using Spyder, you should ask for help with it. On the Spyder project page (https://pythonhosted.org/spyder/index.html), it looks like there is a Spyder forum here: https://groups.google.com/forum/#!forum/spyderlib Trying asking there. Good

[issue32813] SSL shared_ciphers implementation wrong - returns configured but not shared ciphers

2018-02-10 Thread Ned Deily
Change by Ned Deily : -- nosy: +christian.heimes ___ Python tracker <https://bugs.python.org/issue32813> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32811] test_os.py fails when run in docker container on OSX host

2018-02-10 Thread Ned Deily
Ned Deily added the comment: Thanks for the elaboration. Your report wasn't confusing. The fact remains that we don't test or claim to support Python running under Docker on macOS. If someone wants to investigate further (and re-open this issue), they are welcome to but I perso

[issue32813] SSL shared_ciphers implementation wrong - returns configured but not shared ciphers

2018-02-10 Thread Ned Deily
Ned Deily added the comment: Christian, what is your take on the criticality of this? -- nosy: +ned.deily ___ Python tracker <https://bugs.python.org/issue32

[issue32824] Docs: Using Python on a Macintosh has bad info per Apple site

2018-02-11 Thread Ned Deily
Ned Deily added the comment: Thanks for the reminder. Yes, the whole "Using Python on a Macintosh" section is very much out-of-date and needs a complete rewrite. It has been on my To Do list for a long time; I'll see what I can do to expedite it. -- assign

[issue32830] tkinter documentation suggests "from tkinter import *", contradicting PEP8

2018-02-12 Thread Ned Deily
Ned Deily added the comment: PEP 8 also says: "In particular: do not break backwards compatibility just to comply with this PEP!" This is one of those cases. There is a ton of code out there that depends on importing tkinter this way for the reasons Serhiy cited. Thanks for the

[issue32840] Must install python 3.6.3 when 3.6.4 already installed

2018-02-14 Thread Ned Deily
Change by Ned Deily : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue32

[issue32845] Mac: Local modules can shadow builtins (e.g. a local `math.py` can shadow `math`)

2018-02-14 Thread Ned Deily
Ned Deily added the comment: This had me confused for a while. But eric.smith's comment is the clue to what's going on here: > This is the expected behavior, fortunately or not. "math" is not builtin in > the sense that is used in that paragraph. The differenc

[issue32845] Mac: Local modules can shadow builtins (e.g. a local `math.py` can shadow `math`)

2018-02-15 Thread Ned Deily
Ned Deily added the comment: P.S. This issue points out once again why it is generally a bad idea to shadow or mix-and-match standard library module names. -- ___ Python tracker <https://bugs.python.org/issue32

[issue32845] Mac: Local modules can shadow builtins (e.g. a local `math.py` can shadow `math`)

2018-02-15 Thread Ned Deily
Ned Deily added the comment: The example you gave caused problems because of the use of the ambiguous unqualified name "math". If you are careful to use qualified names, and/or perhaps use alias names ("as") to increase readability, there should

[issue32855] Add documention stating supported Platforms

2018-02-15 Thread Ned Deily
Change by Ned Deily : -- nosy: +ned.deily ___ Python tracker <https://bugs.python.org/issue32855> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25988] collections.abc.Indexable

2018-02-18 Thread Ned Deily
Ned Deily added the comment: Thanks, Tim, for noticing that and thanks, Ivan, for taking care of it. I should have cherrypicked this into 3.7.0b1. -- ___ Python tracker <https://bugs.python.org/issue25

[issue25988] collections.abc.Indexable

2018-02-18 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +5520 ___ Python tracker <https://bugs.python.org/issue25988> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25988] collections.abc.Indexable

2018-02-18 Thread Ned Deily
Ned Deily added the comment: New changeset 2e84e47626c6eafacc9f011cd9fccc8bf1c8508e by Ned Deily in branch '3.7': bpo-25988: add NEWS entry for 3.7.0b2 (#5743) https://github.com/python/cpython/commit/2e84e47626c6eafacc9f011cd9fccc

[issue32872] backport of #32305 causes regressions in various packages

2018-02-19 Thread Ned Deily
Ned Deily added the comment: Now that we know that this change *does* break some existing code, I think it is worth having that talk as mentioned in PR 5481: "I suppose it's possible that this will break existing code, but I'd argue that because current behavior runs

[issue32872] backport of #32305 causes regressions in various packages

2018-02-19 Thread Ned Deily
Change by Ned Deily : -- priority: critical -> release blocker ___ Python tracker <https://bugs.python.org/issue32872> ___ ___ Python-bugs-list mailing list Un

[issue32896] Error when subclassing a dataclass with a field that uses a defaultfactory

2018-02-21 Thread Ned Deily
Change by Ned Deily : -- nosy: +eric.smith ___ Python tracker <https://bugs.python.org/issue32896> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27923] PEP 467 -- Minor API improvements for binary sequences

2018-02-21 Thread Ned Deily
Change by Ned Deily : -- versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue27923> ___ ___ Python-bugs-list mailing list Unsub

[issue32016] Python 3.6.3 venv FAILURE

2018-02-21 Thread Ned Deily
Ned Deily added the comment: > Without any additional information, should this be closed as 'Works for Me'? Yes, please. -- nosy: +ned.deily ___ Python tracker <https://bugs.pytho

[issue28498] tk busy command

2018-02-21 Thread Ned Deily
Change by Ned Deily : -- versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue28498> ___ ___ Python-bugs-list mailing list Unsub

[issue32911] Doc strings omitted from AST

2018-02-22 Thread Ned Deily
Ned Deily added the comment: It seems we have a difference of opinion here. Serhiy closed this issue so, Mark, if you feel strongly enough to pursue it, you should reopen it and solicit other opinions. The clock has just about run out to change the now current behavior for 3.7.0

[issue32901] Update 3.7 and 3.8 Windows and macOS installer builds to tcl/tk 8.6.8

2018-02-22 Thread Ned Deily
Ned Deily added the comment: Yeah, we should do that for the macOS installers as well. -- components: +macOS nosy: +ned.deily, ronaldoussoren priority: normal -> release blocker title: Update Windows 3.7/8 builds to tcl/tk 8.6.8 -> Update 3.7 and 3.8 Windows and macOS installer

[issue32909] ApplePersistenceIgnoreState warning on macOS

2018-02-22 Thread Ned Deily
Ned Deily added the comment: I don't know much about this but it seems to be due to the application Resume feature added in OS X 10.7 and has to do with the persistence of application windows. Python itself does not create any such windows; they are created by the GUI toolkits us

[issue32915] Running Python 2 with -3 flag doesn't complain about cmp/__cmp__

2018-02-23 Thread Ned Deily
Change by Ned Deily : -- nosy: +benjamin.peterson ___ Python tracker <https://bugs.python.org/issue32915> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32924] Python 3.7 docs in docs.p.o points to GitHub's master branch

2018-02-24 Thread Ned Deily
Ned Deily added the comment: It would be great if the URL in the template were constructed from the value of SOURCE_URI in Doc/tools/extensions/pyspecific.py. I was unaware that there was this additional URL reference in the template. -- nosy: +ned.deily resolution: fixed -> st

[issue32937] Multiprocessing worker functions not terminating with a large number of processes and a manager

2018-02-24 Thread Ned Deily
Change by Ned Deily : -- nosy: +davin, pitrou -ned.deily, ronaldoussoren ___ Python tracker <https://bugs.python.org/issue32937> ___ ___ Python-bugs-list mailin

[issue32931] Python 3.70b1 specifies non-existent compiler gcc++

2018-02-24 Thread Ned Deily
Change by Ned Deily : -- keywords: +patch pull_requests: +5630 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue32931> ___ ___ Python-

[issue32931] Python 3.70b1 specifies non-existent compiler gcc++

2018-02-24 Thread Ned Deily
Ned Deily added the comment: New changeset acd7163c0a0674b2fb6cc0178d52cf90c953fbae by Ned Deily in branch 'master': bpo-32931: fix macOS 10.9+ installer c++ compiler name (#5855) https://github.com/python/cpython/commit/acd7163c0a0674b2fb6cc0178d52cf

[issue32931] Python 3.70b1 specifies non-existent compiler gcc++

2018-02-24 Thread Ned Deily
Ned Deily added the comment: New changeset d24c5a068c1831a8579a5915f44ae3b4344aba43 by Ned Deily (Miss Islington (bot)) in branch '3.7': [3.7] bpo-32931: fix macOS 10.9+ installer c++ compiler name (GH-5856) https://github.com/python/cpython/commit/d24c5a068c1831a8579a5915f44ae3

[issue32931] Python 3.70b1 specifies non-existent compiler gcc++

2018-02-24 Thread Ned Deily
Ned Deily added the comment: Thanks for noticing! Fixed for 3.7.0b2. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 ___ Python tracker <https://bugs.python.or

[issue32394] socket lib beahavior change in 3.6.4

2018-02-25 Thread Ned Deily
Ned Deily added the comment: What's the status of this issue? 3.7.0b2 is tagging in 48 hours or so and 3.6.5rc1 is in less than 2 weeks. -- ___ Python tracker <https://bugs.python.org/is

[issue32604] Expose the subinterpreters C-API in Python for testing use.

2018-02-25 Thread Ned Deily
Ned Deily added the comment: What's the status of this issue? 3.7.0b2 is tagging in 48 hours or so. -- versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/is

[issue32872] backport of #32305 causes regressions in various packages

2018-02-25 Thread Ned Deily
Ned Deily added the comment: OK, I agree with Brett and Nick. Barry, are you OK with reverting this change for 3.6? If so, can you do the honors? -- stage: -> needs patch ___ Python tracker <https://bugs.python.org/issu

[issue32872] backport of #32305 causes regressions in various packages

2018-02-25 Thread Ned Deily
Ned Deily added the comment: Thanks, Barry! I don't see that either action is ideal but I am concerned about breaking third-party packages and 2 (already known) breakages is worrisome. And thanks, @doko, for bringing the matter up. -- ___ P

[issue32911] Doc strings no longer stored in body of AST

2018-02-25 Thread Ned Deily
Ned Deily added the comment: Is this going to get resolved in time for 3.7.0b2? If we need to change this behavior, I really do not want to delay this for b3 which is when the 3.7.0 ABI freezes; otherwise such a major behavior change would likely need to wait until 3.8. -- priority

[issue31961] subprocess._execute_child doesn't accept a single PathLike argument for args

2018-02-25 Thread Ned Deily
Ned Deily added the comment: What's the status of this issue? We need to make a decision soon about what to do for 3.7.0. -- ___ Python tracker <https://bugs.python.org/is

[issue32305] Namespace packages have inconsistent __file__ and __spec__.origin

2018-02-26 Thread Ned Deily
Ned Deily added the comment: Note that this change was originally also backported to 3.6 in PR 5504 but, due to third-party package regressions discovered in pre-release testing, the 3.6 change was reverted in PR 5591 prior to release of 3.6.5rc1. -- nosy: +ned.deily versions

[issue32147] improve performance of binascii.unhexlify() by using conversion table

2018-02-26 Thread Ned Deily
Change by Ned Deily : -- versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue32147> ___ ___ Python-bugs-list mailing list Unsub

[issue29334] ssl.SSLObject method getpeercert() is buggy, do_handshake() is strange

2018-02-26 Thread Ned Deily
Change by Ned Deily : -- nosy: +benjamin.peterson -ned.deily ___ Python tracker <https://bugs.python.org/issue29334> ___ ___ Python-bugs-list mailing list Unsub

[issue32873] Pickling of typing types

2018-02-26 Thread Ned Deily
Ned Deily added the comment: So we need a decision on this about what, if anything, to do for 3.7. The 3.7.0 ABI freeze is in 3.7.0b3; it would be better to get it resolved for 3.7.0b2. -- nosy: +ned.deily priority: normal -> deferred bloc

[issue32873] Pickling of typing types

2018-02-26 Thread Ned Deily
Ned Deily added the comment: > Is it possible to fix this in 3.7b3? Yes. Get well first! -- ___ Python tracker <https://bugs.python.org/issue32873> ___ _

[issue31961] subprocess._execute_child doesn't accept a single PathLike argument for args

2018-02-26 Thread Ned Deily
Ned Deily added the comment: We should either remove the entry in Misc/NEWS/3.7.0b1.rst or, perhaps better, add a line to it noting that it was removed in 3.7.0b2. -- ___ Python tracker <https://bugs.python.org/issue31

[issue29804] test_ctypes test_pass_by_value fails on arm64 (aarch64) architecture

2018-02-26 Thread Ned Deily
Ned Deily added the comment: Vinay, should this backported to 3.6? Otherwise, can the issue be closed? -- versions: +Python 3.7 ___ Python tracker <https://bugs.python.org/issue29

[issue32604] Expose the subinterpreters C-API in Python for testing use.

2018-02-26 Thread Ned Deily
Ned Deily added the comment: > Still planned for 3.7: [...] Eric, please try to get everything you want done and into master as soon as possible, then produce a PR for 3.7, and then we can review it and make a decision if it is appropriate for 3.7. As I've mentioned in msg310448 and

[issue32604] Expose the subinterpreters C-API in Python for testing use.

2018-02-26 Thread Ned Deily
Change by Ned Deily : -- priority: normal -> deferred blocker ___ Python tracker <https://bugs.python.org/issue32604> ___ ___ Python-bugs-list mailing list Un

[issue32911] Doc strings no longer stored in body of AST

2018-02-27 Thread Ned Deily
Ned Deily added the comment: Since we are already past the 3.7.0b2 cutoff time and there does not seen to be a consensus that the current 3.7 behavior needs to change and the proposed change is quite large, I think we should not change anything now for b2. You can have a discussion on

[issue15767] add ModuleNotFoundError

2018-02-27 Thread Ned Deily
Ned Deily added the comment: Christoph, thanks for your suggestion. If you think the documentation needs improving, please open a new issue with any suggested wording (or, even better, a doc PR). This issue (issue15767) has long been closed and any discussion here is likely to not be acted

[issue32493] UUID Module - FreeBSD build failure

2018-02-27 Thread Ned Deily
Ned Deily added the comment: We are still seeing the 3.7 and 3.8 FreeBSD buildbot failures Victor identified in msg310147. Can someone please take this on and produce a PR? -- nosy: +ned.deily priority: normal -> deferred blocker versions: +Python

[issue31106] os.posix_fallocate() generate exception with errno 0

2018-02-27 Thread Ned Deily
Ned Deily added the comment: I agree with Alexey's analysis. Koobs, could you please open a new issue about the failing test? Unless someone knows of a foolproof way to determine on all platforms that a file is resident on ZFS, the fix is to skip the test on FreeBSD as well if Z

[issue32517] test_read_pty_output() of test_asyncio hangs on macOS 10.13.2 (darwin 17.3.0)

2018-02-27 Thread Ned Deily
Ned Deily added the comment: Since this is still happening on current macOS 10.13.3, we should get a fix for this in before 3.6.5rc1. PR's welcome! -- priority: normal -> release blocker stage: -> needs patch ___ Python trac

[issue27313] test case failures in test_widgets.ComboboxTest.of test_ttk_guionly on OS X with Cocoa Tk 8.5.18

2018-02-27 Thread Ned Deily
Ned Deily added the comment: With a current Tk 8.6.8, test_virtual_event no longer fails (still does with 8.5.18) but test_identify still fails as it does with 8.5. -- versions: +Python 3.7, Python 3.8 -Python 3.5 ___ Python tracker <ht

[issue29915] Drop Mac OS X Tiger support in Python 3.7?

2018-02-27 Thread Ned Deily
Ned Deily added the comment: Update: due to recent changes at github.com to no longer support older implementations of SSL/TLS, the git client on the macOS 10.4 Tiger buildbot server has stopped working. We had a brief discussion with David Bolen, the buildbot's owner, and decided it w

[issue32966] Python 3.6.4 - 0x80070643 - Fatal Error during installation

2018-02-27 Thread Ned Deily
Change by Ned Deily : -- components: +Windows -Installation nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue32

[issue32965] Passing a bool to io.open() should raise a TypeError, not read from stdin

2018-02-27 Thread Ned Deily
Ned Deily added the comment: Thanks for your report. Alas, this is expected behavior. As documented, the Boolean values False and True behave like the integers 0 and 1; this behavior dates back to the earliest days of Python. So when you pass False to open, you are passing the integer 0

[issue32901] Update 3.7 and 3.8 Windows and macOS installer builds to tcl/tk 8.6.8

2018-02-27 Thread Ned Deily
Ned Deily added the comment: New changeset 9189e95d9c6691de18783b2e9213ec2dc18fd0c5 by Ned Deily in branch 'master': bpo-32901: update macOS 10.9+ installer to Tcl/Tk 8.6.8 https://github.com/python/cpython/commit/9189e95d9c6691de18783b2e9213ec

[issue32901] Update 3.7 and 3.8 Windows and macOS installer builds to tcl/tk 8.6.8

2018-02-27 Thread Ned Deily
Ned Deily added the comment: New changeset a7edca7122cb952874e74d64d693c5b938c758cb by Ned Deily in branch '3.7': bpo-32901: update macOS 10.9+ installer to Tcl/Tk 8.6.8 https://github.com/python/cpython/commit/a7edca7122cb952874e74d64d693c5

[issue32901] Update 3.7 and 3.8 Windows and macOS installer builds to tcl/tk 8.6.8

2018-02-27 Thread Ned Deily
Ned Deily added the comment: Terry: > Is "this will only be useful on Windows," in the source-deps readme still > true? It appears that the tcl/tk tar.gz source is meant for Mac also. The macOS installer builds do not use the cpython-source-deps repo. -- priority:

[issue31961] subprocess._execute_child doesn't accept a single PathLike argument for args

2018-02-27 Thread Ned Deily
Ned Deily added the comment: New changeset be50a7b627d0aa37e08fa8e2d5568891f19903ce by Ned Deily (Serhiy Storchaka) in branch 'master': Revert "bpo-31961: subprocess now accepts path-like args (GH-4329)" (#5912) https://github.com/python/cpython/commit/be50a7b627d0aa37e08f

[issue31961] subprocess._execute_child doesn't accept a single PathLike argument for args

2018-02-27 Thread Ned Deily
Ned Deily added the comment: New changeset b7dcae358e9d5a3ac9dafec9f6b64e9a66843ad8 by Ned Deily (Miss Islington (bot)) in branch '3.7': Revert "bpo-31961: subprocess now accepts path-like args (GH-4329)" (GH-5912) (GH-5931) https://github.com/p

[issue31961] subprocess._execute_child doesn't accept a single PathLike argument for args

2018-02-27 Thread Ned Deily
Ned Deily added the comment: Thanks for everyone's input and thanks for the PRs! Since there are still outstanding review comments, I decided to revert this from both master and 3.7 for 3.7.0b2. I would suggest getting a polished version stabilized in master for 3.8.0. We could

[issue32706] test_check_hostname() of test_ftplib started to fail randomly

2018-02-27 Thread Ned Deily
Ned Deily added the comment: Let's get the changes into master first and stabilized there and then we can discuss the possibility of a 3.7 backport. -- ___ Python tracker <https://bugs.python.org/is

[issue32968] Fraction modulo infinity should behave consistently with other numbers

2018-02-27 Thread Ned Deily
Change by Ned Deily : -- nosy: +mark.dickinson, rhettinger ___ Python tracker <https://bugs.python.org/issue32968> ___ ___ Python-bugs-list mailing list Unsub

[issue15663] Investigate providing Tcl/Tk 8.6 with OS X installers

2018-02-27 Thread Ned Deily
Ned Deily added the comment: As of 3.7.0b1, the new macOS 10.9+ installer variant includes a private copy of Tcl/Tk 8.6: 8.6.7 for 3.7.0b1, updated to 8.6.8 for 3.7.0b2. The framework layout is pretty much the same as in the original attempt, that is, everything is installed within /Library

[issue32864] Visual glitches when animating ScrolledText instances using place geometry manager

2018-02-27 Thread Ned Deily
Ned Deily added the comment: Victor, FYI, 3.7.0b2 has just been released and the macOS 10.9+ installer contains an updated version of Tcl/Tk (8.6.7 -> 8.6.8). According to the Tk change log, there were a number of macOS related fixes that went in to 8.6.8. Perhaps some of the glitches

[issue29480] Mac OSX Installer SSL Roots

2018-02-27 Thread Ned Deily
Ned Deily added the comment: Tommy, you should ask your question elsewhere, like on Stackoverflow or on the Python mailing list. It does not seem related to this issue at all or to indicate a problem with Python itself. (For the record, the Python Developer's Guide has some good tips o

[issue29480] Mac OSX Installer SSL Roots

2018-02-27 Thread Ned Deily
Ned Deily added the comment: Thanks for your suggestions. I agree that the Root Certificates and OpenSSL situation on macOS is still less than desirable. For 3.7.0b2, I have tried to make things more obvious in two ways. One, the installer package will now attempt to open a Finder window

[issue31013] gcc7 throws warning when pymem.h development header is used

2018-02-28 Thread Ned Deily
Change by Ned Deily : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> [2.7] Fix -Wnonnull and -Wint-in-bool-context warnings ___ Python tracker <https://bugs.python

[issue32974] Add bitwise operations and other missing comparison methods to Python's IP address module

2018-02-28 Thread Ned Deily
Change by Ned Deily : -- nosy: +pmoody ___ Python tracker <https://bugs.python.org/issue32974> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32056] bug in Lib/wave.py

2018-02-28 Thread Ned Deily
Change by Ned Deily : -- keywords: +security_issue -patch nosy: +serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue32056> ___ ___ Python-bug

[issue30607] Extract documentation theme into a separate package

2018-03-01 Thread Ned Deily
Ned Deily added the comment: New changeset bf63e8d55fd2853df3bb99d66de7f428107aadb3 by Ned Deily (Jon Wayne Parrott) in branch 'master': bpo-30607: Use external python-doc-theme (GH-2017) https://github.com/python/cpython/commit/bf63e8d55fd2853df3bb99d66de7f428107aadb3 -

[issue30607] Extract documentation theme into a separate package

2018-03-01 Thread Ned Deily
Ned Deily added the comment: Thanks, Jon, and every one else who helped with and commented on the PR. -- resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bug

[issue32056] Improve exceptions in aifc, sunau and wave

2018-03-01 Thread Ned Deily
Ned Deily added the comment: @zhangdeyue, can you please request that the CVE be unassigned? I think we all agree this is *not* a security issue. -- keywords: -security_issue nosy: +ned.deily ___ Python tracker <https://bugs.python.

[issue32056] Improve exceptions in aifc, sunau and wave

2018-03-01 Thread Ned Deily
Ned Deily added the comment: > I agree that it is very small, but I still think it is indeed a security > issue, because it can crash real world program when called by some library > used in Deep Learning ASR project. That sounds like a programming error, not a security bug. The

[issue32986] multiprocessing, default assumption of Pool size unhelpful

2018-03-02 Thread Ned Deily
Change by Ned Deily : -- nosy: +davin, pitrou ___ Python tracker <https://bugs.python.org/issue32986> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32985] subprocess.Popen: Confusing documentation for restore_signals

2018-03-02 Thread Ned Deily
Change by Ned Deily : -- nosy: +giampaolo.rodola, gregory.p.smith ___ Python tracker <https://bugs.python.org/issue32985> ___ ___ Python-bugs-list mailin

[issue32958] socket module calls with long host names can fail with idna codec error

2018-03-02 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. The behavior you see can be further isolated to socket.gethostbyname: >>> import socket >>> h = >>> "0123456789012345678901234567890123456789012345678901234567890123.example.com" >>> socket.get

[issue32990] Supporting extensible format(PCM) for wave.open(read-mode)

2018-03-03 Thread Ned Deily
Ned Deily added the comment: Thanks for working on this. Please follow the process in our Developers Guide and submit a PR against the master branch (for 3.8). After a core developer reviews it and if it is accepted, we can then decide about backports to other release branches. Also, if

[issue32994] Building the html documentation is broken

2018-03-04 Thread Ned Deily
Ned Deily added the comment: You need to install that component. The easiest way is: cd Doc make venv make html -- nosy: +ned.deily resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bug

[issue14266] pyunit script as shorthand for python -m unittest

2018-03-04 Thread Ned Deily
Ned Deily added the comment: -0.5. I have mixed feelings about this. While I can see the utility of it, I think more recently we have been moving away from the concept of installed scripts for standard library features primarily because they are difficult to manage when there are multiple

[issue30147] Change in re.escape output is not documented in whatsnew

2018-03-04 Thread Ned Deily
Ned Deily added the comment: New changeset 18fd89246333bfa1b76c1623df689214f3ce2bf3 by Ned Deily (Cheryl Sabella) in branch 'master': bpo-30147: Add re.escape changes to 3.7 What's New (GH-5978) https://github.com/python/cpython/commit/18fd89246333bfa1b76c1623d

[issue30147] Change in re.escape output is not documented in whatsnew

2018-03-04 Thread Ned Deily
Ned Deily added the comment: New changeset f92478d57a6b4014dcc0882d43b534fae1e7b929 by Ned Deily (Miss Islington (bot)) in branch '3.7': [3.7] bpo-30147: Add re.escape changes to 3.7 What's New (GH-5978) (GH-5979) https://github.com/python

[issue30147] Change in re.escape output is not documented in 3.7 whatsnew

2018-03-04 Thread Ned Deily
Ned Deily added the comment: Thanks, @csabella, for the PR! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed title: Change in re.escape output is not documented in whatsnew -> Change in re.escape output is not documented in 3.7 whatsnew versi

[issue32056] Improve exceptions in aifc, sunau and wave

2018-03-04 Thread Ned Deily
Ned Deily added the comment: > For any program which receive external file, to check the input file is > necessary to do, isn't it? Yes and no. wave.py is doing checking and can raise various exceptions. So a well-designed program has to be prepared to handle exceptions w

[issue33008] urllib.request.parse_http_list incorrectly strips backslashes

2018-03-06 Thread Ned Deily
Change by Ned Deily : -- nosy: +barry, orsenthil, r.david.murray ___ Python tracker <https://bugs.python.org/issue33008> ___ ___ Python-bugs-list mailin

[issue33020] Tkinter old style classes

2018-03-07 Thread Ned Deily
Change by Ned Deily : -- nosy: +gpolo, serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue33020> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33028] tempfile.TemporaryDirectory incorrectly documented

2018-03-08 Thread Ned Deily
Change by Ned Deily : -- nosy: +lars.gustaebel versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue33028> ___ ___ Python-bugs-list m

[issue33028] tempfile.TemporaryDirectory incorrectly documented

2018-03-08 Thread Ned Deily
Change by Ned Deily : -- type: enhancement -> ___ Python tracker <https://bugs.python.org/issue33028> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue30353] ctypes: pass by value for structs broken on Cygwin/MinGW 64-bit

2018-03-08 Thread Ned Deily
Ned Deily added the comment: New changeset 2f3ba27185a369bcb6b36b13aa3518ffcc970ffa by Ned Deily (Miss Islington (bot)) in branch '3.6': [3.6] bpo-30353: Fix pass by value for structs on 64-bit Cygwin/MinGW (GH-1559) (GH-5954) https://github.com/python/cpyt

[issue30353] ctypes: pass by value for structs broken on Cygwin/MinGW 64-bit

2018-03-08 Thread Ned Deily
Change by Ned Deily : -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed versions: +Python 3.7 ___ Python tracker <https://bugs.python.or

[issue32981] Catastrophic backtracking in poplib and difflib

2018-03-08 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +5796 ___ Python tracker <https://bugs.python.org/issue32981> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32981] Catastrophic backtracking in poplib and difflib

2018-03-08 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +5797 ___ Python tracker <https://bugs.python.org/issue32981> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32981] Catastrophic backtracking in poplib (CVE-2018-1060) and difflib (CVE-2018-1061)

2018-03-08 Thread Ned Deily
Change by Ned Deily : -- keywords: +security_issue nosy: +larry priority: normal -> critical title: Catastrophic backtracking in poplib and difflib -> Catastrophic backtracking in poplib (CVE-2018-1060) and difflib (CVE-2018-1061) versions: +Python 2.7, Python 3.4, Python 3.5,

[issue33036] test_selectors.PollSelectorTestCase failing on macOS 10.13.3

2018-03-09 Thread Ned Deily
Ned Deily added the comment: Sorry, I am not seeing this failure on 10.13.3 with either current 3.6 head or with v3.6.1. Didn't try anything else. -- nosy: +ned.deily ___ Python tracker <https://bugs.python.org/is

[issue32576] concurrent.futures.thread deadlock due to Queue in weakref callback

2018-03-09 Thread Ned Deily
Ned Deily added the comment: Yes, backporting all of the required code to earlier releases would be out of scope for a maintenance release, particularly at this late stage in the 3.6 life cycle. Let's see whether disabling the GC is a sufficient workaround until 3.7 is avai

[issue32993] urllib and webbrowser.open() can open w/ file: protocol

2018-03-09 Thread Ned Deily
Ned Deily added the comment: This is now marked as a security issue but I do not understand what the problem is. urllib / urllib2 are supposed to be able to open file:// style URLs, that was not the point of Issue11662. https://docs.python.org/3/library/urllib.request.html

[issue33020] Tkinter old style classes

2018-03-09 Thread Ned Deily
Ned Deily added the comment: Thanks for the suggestion but I agree with Serhiy. We should not make this kind of significant change to 2.7 at this stage of its life cycle. -- nosy: +ned.deily resolution: -> wont fix stage: -> resolved status: open -&g

[issue30077] Support Apple AIFF-C pseudo compression in aifc.py

2018-03-09 Thread Ned Deily
Change by Ned Deily : -- versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue30077> ___ ___ Python-bugs-list mailing list Unsub

[issue30940] Documentation for round() is incorrect.

2018-03-09 Thread Ned Deily
Ned Deily added the comment: This issue seems to have slipped through the cracks with a couple of long-standing PR's open. Anyone feel up to finishing it? -- nosy: +ned.deily stage: needs patch -> patch review versions: +Python 3.8 -Py

[issue24084] pstats: sub-millisecond display

2018-03-09 Thread Ned Deily
Ned Deily added the comment: Based on the review comments, it looks like the existing PR 3931 needs to be revised and resubmitted against current master branch. So, can we close PR 3931? -- nosy: +ned.deily versions: +Python 3.8 -Python 3.5

[issue32458] test_asyncio failures on Windows

2018-03-09 Thread Ned Deily
Ned Deily added the comment: Note, I think this failure is still happening occasionally on the windows7 buildbot; for example: http://buildbot.python.org/all/#/builders/111/builds/68/steps/3/logs/stdio http://buildbot.python.org/all/#/builders/111/builds/85/steps/3/logs/stdio -- nosy

<    28   29   30   31   32   33   34   35   36   37   >