[issue34049] abs() method accept argument that implement __abs__()

2018-07-05 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34051] Update multiprocessing example

2018-07-05 Thread Raymond Hettinger
Change by Raymond Hettinger : -- assignee: docs@python -> davin nosy: +davin ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue28657] cmd.Cmd.get_help() implementation can't see do_*() methods added dynamically by setattr()

2018-07-05 Thread Raymond Hettinger
Raymond Hettinger added the comment: > That method would then perform an assignment with setattr() calls: > setattr(self, "do_" + command, func). Could this have been done with: setattr(self.__class__, "do_" + command, func)? I'm concerned that attaching functions to the instance is fightin

[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-05 Thread Bumsik Kim
Bumsik Kim added the comment: I also believe this can be backported to 2.7 as well. -- ___ Python tracker ___ ___ Python-bugs-list

[issue28657] cmd.Cmd.get_help() implementation can't see do_*() methods added dynamically by setattr()

2018-07-05 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: later -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue34019] webbrowser: wrong arguments for Opera browser.

2018-07-05 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +7707 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue34047] IDLE: on macOS, scroll slider 'sticks' at bottom of file

2018-07-05 Thread Bruce Elgort
Bruce Elgort added the comment: Terry, Here is a video I made showing the problem I’m having. I have no clue about the other things you are asking about. https://www.youtube.com/watch?v=BpyMhdjTNvQ Bruce > On Jul 5, 2018, at 3:21 PM, Terry J. R

[issue34058] Default Python 3.7 install broken on openSUSE Leap 42.3: $PYTHONHOME/lib64/python3.7/lib-dynload/ not linked to $PYTHONHOME/lib/python3.7/lib-dynload/

2018-07-05 Thread Ted Kandell
New submission from Ted Kandell : The default Python 3.7 install (./configure with no parameters) does not work (at least) on openSUSE Leap 42.3. Python3 gives a ModuleNotFoundError: No module named 'readline' error, and pip3 has a ModuleNotFoundError: No module named '_socket' error, becau

[issue34051] Update multiprocessing example

2018-07-05 Thread Windson Yang
Change by Windson Yang : -- nosy: +zach.ware ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue34059] multiprocessing deadlock

2018-07-05 Thread Guillaume Perrault-Archambault
New submission from Guillaume Perrault-Archambault : The simple code attached causes a deadlock in Linux. Problem is I have to slightly muck around with it depending on the distro and python version to get it to deadlock. On the cluster I use the most (python 3.6.3, CentOS Linux release 7.4.1

[issue34056] checked hash-based pyc files not working with imp module

2018-07-05 Thread Benjamin Peterson
Benjamin Peterson added the comment: Can you not use imp? It's been deprecated since 3.4 and gradually become more and more broken and useless as this and other import improvements (e.g., namespace packages) have happened. -- nosy: +benjamin.peterson

[issue34043] Optimize tarfile uncompression performance

2018-07-05 Thread INADA Naoki
INADA Naoki added the comment: New changeset 8d130913cb9359c01de412178f9942419e921170 by INADA Naoki in branch 'master': bpo-34043: Optimize tarfile uncompress performance (GH-8089) https://github.com/python/cpython/commit/8d130913cb9359c01de412178f9942419e921170 -- ___

[issue34056] checked hash-based pyc files not working with imp module

2018-07-05 Thread Patrick McCarty
Patrick McCarty added the comment: Thanks for the response. I would like to avoid using imp, but I work on a distro team that ships many packages that still use the module. We wanted to start using checked-hash invalidation right away after upgrading to 3.7.0, but some of our release tests

[issue34056] checked hash-based pyc files not working with imp module

2018-07-05 Thread Benjamin Peterson
Benjamin Peterson added the comment: I see. Thanks for being an early adopter! We can probably hack something together for imp. I'll send a PR in a moment. Filing bugs about imp usage would be valuable, especially if it flushes out any cases where imp provides functionality that our newer AP

[issue34056] checked hash-based pyc files not working with imp module

2018-07-05 Thread Benjamin Peterson
Change by Benjamin Peterson : -- keywords: +patch pull_requests: +7708 stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue34047] IDLE: on macOS, scroll slider 'sticks' at bottom of file

2018-07-05 Thread Tal Einat
Tal Einat added the comment: Confirmed on latest master on OSX. I'm also experiencing many other kinds of erratic scrolling behavior: 1. Dragging the scrollbar isn't possible immediately after opening the file Lib/idlelib/editor.py. Also later after scrolling to the top. 2. Scrolling via two

[issue34047] IDLE: on macOS, scroll slider 'sticks' at bottom of file

2018-07-05 Thread Tal Einat
Tal Einat added the comment: On OSX with Python 3.7.0 behavior is the same as current master. -- ___ Python tracker ___ ___ Python-

[issue34047] IDLE: on macOS, scroll slider 'sticks' at bottom of file

2018-07-05 Thread Tal Einat
Tal Einat added the comment: With Python 3.6.5 on OSX, I'm seeing all of the issues (including the originally reported one) except the issue with the scroll direction inversion on two-finger swipe. -- versions: +Python 3.6 ___ Python tracker

<    1   2