[issue38814] Python3.7.5 crashes on OSX with my django project

2019-11-15 Thread Ned Deily
Ned Deily added the comment: Sorry but with a non-debug build of Python, it's not very likely someone would be able to glean much from the macOS crash stack trace here. You also seem to have a very large number of C extension modules, some apparently from Homebrew and others from

[issue38814] Python3.7.5 crashes on OSX with my django project

2019-11-16 Thread Ned Deily
Ned Deily added the comment: The stack track is pretty suspicious. I really don't know why it would be crashing where it shows which seems to be pretty early in the interpreter. If you haven't already, you might just want to try reinstalling from Homebrew first and try again.

[issue38814] Python3.7.5 crashes on OSX with my django project

2019-11-16 Thread Ned Deily
Change by Ned Deily : -- status: open -> closed ___ Python tracker <https://bugs.python.org/issue38814> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue38814] Python3.7.5 crashes on OSX with my django project

2019-11-16 Thread Ned Deily
Ned Deily added the comment: Almost any kind of crash is possible when using ctypes. But you almost certainly don't want to be loading /usr/lib/libcrypto.dylib. That's the macOS legacy version which is there only for legacy Apple-supplied third-party components, like the App

[issue38814] Python3.7.5 crashes on OSX with my django project

2019-11-16 Thread Ned Deily
Ned Deily added the comment: Sorry, we have strayed from dealing with a Python issue here so, if you need nore assistance, you really should seek help elsewhere. But a quick web search found this which seems to describe your problem: https://github.com/wbond/asn1crypto/issues/113

[issue38790] test_fcntl failing on macOS CI

2019-11-17 Thread Ned Deily
Change by Ned Deily : -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed superseder: -> Add open_file_descriptor parameter to fcntl.lockf() (use the new F_OFD_SETLK flag) ___ Python tra

[issue22367] Add open_file_descriptor parameter to fcntl.lockf() (use the new F_OFD_SETLK flag)

2019-11-17 Thread Ned Deily
Ned Deily added the comment: Bump. Serhiy, are you planning to follow up on this? -- nosy: +ned.deily priority: normal -> deferred blocker ___ Python tracker <https://bugs.python.org/issu

[issue37228] UDP sockets created by create_datagram_endpoint() allow by default multiple processes to bind the same port

2019-11-20 Thread Ned Deily
Ned Deily added the comment: (Provisionally marking this as a security-related deferred blocker issue for backporting) -- nosy: +ned.deily priority: normal -> deferred blocker type: behavior -> security versions: +Python 3.5, Python 3.6, Python 3.7, Pyth

[issue38021] pep425 tag for AIX is inadequate

2019-11-20 Thread Ned Deily
Ned Deily added the comment: PEP 425 tags are now in the Python Packaging Authority realm. People from there should also be reviewing this issue and the new PR. CC-ing Brett and Nick for guidance. Also, assuming the feature is approved, I don't think it would be appropriate to bac

[issue38873] find_library for libcrypto and libssl on Catalina returns the unversioned library

2019-11-21 Thread Ned Deily
Ned Deily added the comment: How would having a "find the latest version" help here? The point is Apple does not want you to use *any* version of libcrypto in /usr/lib: they are there only for old versions of third-party apps that were linked to a specific then-current vers

[issue38877] Python 3.9 build fails under Debian 9.11

2019-11-21 Thread Ned Deily
Ned Deily added the comment: What ./configure options did you use? Did you do a make clean or equivalent between the two build attempts? If you used --enable-shared, try without it. -- nosy: +ned.deily ___ Python tracker <ht

[issue38021] pep425 tag for AIX is inadequate

2019-11-21 Thread Ned Deily
Ned Deily added the comment: Brett, sorry I wasn't more explicit about my concerns here. I added you and Nick to this issue and to its PR not primarily to do do code review but because I think it brings up issues that I believe haven't been dealt with before in our evolving envir

[issue38804] Regular Expression Denial of Service in http.cookiejar

2019-11-22 Thread Ned Deily
Ned Deily added the comment: New changeset 0716056c49e9505041e30386dad9b2e788f67aaf by Ned Deily (Miss Islington (bot)) in branch '3.6': bpo-38804: Fix REDoS in http.cookiejar (GH-17157) (#17343) https://github.com/python/cpython/commit/0716056c49e9505041e30386dad9b2

[issue38877] Python 3.9 build fails under Debian 9.11

2019-11-22 Thread Ned Deily
Ned Deily added the comment: Glad you got it working. In general, it is probably a good idea to do a "make clean" before or after re-running ./configure in a particular build directory. Ideally, the Makefile dependencies should detect and do the right thing automatically so tha

[issue38500] Provide a way to get/set PyInterpreterState.frame_eval without needing to access interpreter internals

2019-11-22 Thread Ned Deily
Change by Ned Deily : -- keywords: +3.8regression nosy: +lukasz.langa priority: normal -> critical ___ Python tracker <https://bugs.python.org/issu

[issue38898] Tkinter checkbutton switch on and off together

2019-11-27 Thread Ned Deily
Change by Ned Deily : -- nosy: +gpolo, serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue38898> ___ ___ Python-bugs-list mailing list Unsub

[issue38917] Color setting doesn't work in tkinter

2019-11-27 Thread Ned Deily
Ned Deily added the comment: I believe this is a duplicate of Issue36468 which identifies the issue which is apparently fixed in Tk 8.6.9+; it also provides a workaround for Tk 8.6.8. -- nosy: +ned.deily resolution: -> duplicate stage: -> resolved status: open -> closed s

[issue38946] IDLE on macOS 10.15 Catalina does not open double-clicked files if app already launched

2019-11-30 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. If I understand correctly, the issue you are seeing is that, when IDLE is already launched and you double-click on a .py file in the Finder, that .py file does not open in IDLE, even though it will open in IDLE if IDLE is not already

[issue38948] os.path.ismount() returns true in python 3.7.4 and false in 2.7.14

2019-12-01 Thread Ned Deily
Change by Ned Deily : -- components: +Windows -2to3 (2.x to 3.x conversion tool) nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue38

[issue38945] Remove newline characters from uu encoding methods

2019-12-02 Thread Ned Deily
Ned Deily added the comment: New changeset 30afc91f5e70cf4748ffac77a419ba69ebca6f6a by Ned Deily (Miss Islington (bot)) in branch '3.6': bpo-38945: UU Encoding: Don't let newline in filename corrupt the output format (GH-17418) (GH-17444) https://github.com/python

[issue38945] Remove newline characters from uu encoding methods

2019-12-02 Thread Ned Deily
Change by Ned Deily : -- versions: +Python 2.7, Python 3.6, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issue38945> ___ ___

[issue38945] Remove newline characters from uu encoding methods

2019-12-02 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +16926 pull_request: https://github.com/python/cpython/pull/17445 ___ Python tracker <https://bugs.python.org/issue38

[issue38945] Remove newline characters from uu encoding methods

2019-12-02 Thread Ned Deily
Change by Ned Deily : -- versions: +Python 3.5 ___ Python tracker <https://bugs.python.org/issue38945> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38815] test_ssl: test_min_max_version() fails on FreeBSD and Fedora

2019-12-06 Thread Ned Deily
Ned Deily added the comment: @koobs, FWIW, unlike for most other third-party libs, there now is a configure option to allow specifying the path to the desired OpenSSL version, actually two ways. Either use the --with-openssl= option to ./configure. Otherwise, if pkg-config info is availble

[issue38975] Add direct anchors to regex syntax documentation

2019-12-06 Thread Ned Deily
Change by Ned Deily : -- nosy: +mdk ___ Python tracker <https://bugs.python.org/issue38975> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue22367] Add open_file_descriptor parameter to fcntl.lockf() (use the new F_OFD_SETLK flag)

2019-12-07 Thread Ned Deily
Ned Deily added the comment: It looks like the only thing left to do yet for this issue is to finish the review of and merge the PR that actually implements the new parameter. Removing the Deferred Blocker status and deselecting releases other than 3.9. -- priority: deferred

[issue37228] UDP sockets created by create_datagram_endpoint() allow by default multiple processes to bind the same port

2019-12-07 Thread Ned Deily
Ned Deily added the comment: Where are we with this? The deadline for 3.8.1 and 3.7.6 is coming up in a few days. -- ___ Python tracker <https://bugs.python.org/issue37

[issue34776] Postponed annotations break inspection of dataclasses

2019-12-07 Thread Ned Deily
Ned Deily added the comment: > I'll elevate the status so that I don't forget before 3.8.1. Ping, 3.8.1 cutoff is coming up very soon. -- ___ Python tracker <https://bugs.pytho

[issue30458] [security][CVE-2019-9740][CVE-2019-9947] HTTP Header Injection (follow-up of CVE-2016-5699)

2019-12-07 Thread Ned Deily
Ned Deily added the comment: What is the status of this issue? Now that Issue38576 has been opened to cover the host address part, can this issue be closed or downgraded? Should Issue38576 be a release blocker? -- ___ Python tracker <ht

[issue30064] BaseSelectorEventLoop.sock_{recv, sendall}() don't remove their callbacks when canceled

2019-12-07 Thread Ned Deily
Ned Deily added the comment: > I'll elevate the status so that we don't forget before 3.8.1 is too close Andrew, Yury: ping. 3.8.1 cutoff is approaching. -- nosy: +ned.deily ___ Python tracker <https://bugs.pytho

[issue38995] reverse search (ctrl-r) doest not work

2019-12-07 Thread Ned Deily
Ned Deily added the comment: Most likely what is happening is that the two Python instances you are using are linked to different versions of the external readline library. From the version information, it's clear that you are using the Python 3.8.0 from the python.org macOS inst

[issue38987] 3.8.0 on GNU/Linux fails to find shared library

2019-12-07 Thread Ned Deily
Change by Ned Deily : -- nosy: +doko ___ Python tracker <https://bugs.python.org/issue38987> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue37916] distutils: allow overriding of the RANLIB command on macOS (darwin)

2019-12-09 Thread Ned Deily
Ned Deily added the comment: Thank you for the PR. I did a quick look at it and added some comments to the PR including wondering whether the root cause of the problematic behavior is elsewhere in Distutils. -- nosy: +ned.deily ___ Python tracker

[issue38673] REPL shows continuation prompt (...) when comment or space entered

2019-12-09 Thread Ned Deily
Ned Deily added the comment: New changeset 188d5ae6f047342f3d6860646ccf1a523ef8b0ed by Ned Deily (Miss Islington (bot)) in branch '3.7': bpo-38673: dont switch to ps2 if the line starts with comment or whitespace (GH-17421) (GH-17522) https://github.com/python/cpyt

[issue37228] UDP sockets created by create_datagram_endpoint() allow by default multiple processes to bind the same port

2019-12-10 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +17044 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17570 ___ Python tracker <https://bugs.python.org/issu

[issue37228] UDP sockets created by create_datagram_endpoint() allow by default multiple processes to bind the same port

2019-12-10 Thread Ned Deily
Ned Deily added the comment: New changeset 95157c6a281ccfc7a92a17dfb8d7b5338cad5cb7 by Ned Deily in branch '3.7': bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (GH-17311) (GH-17570) https://github.com/python/cpython/commit/95157c6a281ccfc7a92a17dfb

[issue37228] UDP sockets created by create_datagram_endpoint() allow by default multiple processes to bind the same port

2019-12-10 Thread Ned Deily
Ned Deily added the comment: The backport to 3.7 seems straightforward so I did it to unblock 3.7.6rc1. The backport to 3.6 is a bit more complicated and 3.6.10rc1 can wait a bit longer so I'll leave that for Kyle along with the various What's N

[issue37228] UDP sockets created by create_datagram_endpoint() allow by default multiple processes to bind the same port

2019-12-10 Thread Ned Deily
Ned Deily added the comment: Actually, 3.6.10rc1 is currently blocked by this so if you do have time to work on it first, that would be great. -- ___ Python tracker <https://bugs.python.org/issue37

[issue39024] Compiling relative paths test fails (install via pyenv)

2019-12-10 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. This problem is being tracked in Issue38295. -- nosy: +ned.deily resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> test_relative_path of test_py_compile fails on macOS 10.

[issue37228] UDP sockets created by create_datagram_endpoint() allow by default multiple processes to bind the same port

2019-12-10 Thread Ned Deily
Ned Deily added the comment: New changeset b23c0840ce07e03f2705fb08d94f8f03e5c5d5b8 by Ned Deily (Kyle Stanley) in branch '3.6': [3.6] bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (GH-17311). (GH-17571) https://github.com/python

[issue39035] Travis CI fail on backports: pyvenv not installed

2019-12-16 Thread Ned Deily
Ned Deily added the comment: New changeset 7699281b72b862797a89fcad004da8f58e93c800 by Ned Deily (Inada Naoki) in branch '3.6': bpo-39035: travis: Update image to xenial (GH-17622) https://github.com/python/cpython/commit/7699281b72b862797a89fcad004da8f58e93c800 -- nosy:

[issue39066] Expose SOABI setting in the header

2019-12-16 Thread Ned Deily
Ned Deily added the comment: The entire extension suffix is currently available from the pythonX.Y-config command which does not depend on a running interpreter (on Linux systems at least), for example: $ python3.8-config --extension-suffix .cpython-38-i386-linux-gnu.so Is that not

[issue38295] test_relative_path of test_py_compile fails on macOS 10.15 Catalina

2019-12-17 Thread Ned Deily
Change by Ned Deily : -- keywords: +patch pull_requests: +17104 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/17636 ___ Python tracker <https://bugs.python.org/issu

[issue38295] test_relative_path of test_py_compile fails on macOS 10.15 Catalina

2019-12-17 Thread Ned Deily
Ned Deily added the comment: New changeset bf3aa1060a29a05813abbe877193af16e3e7131e by Ned Deily in branch '3.8': bpo-38295: prevent test_relative_path of test_py_compile failure on macOS Catalina (GH-17636) https://github.com/python/cpython/commit/bf3aa1060a29a05813abbe877193af

[issue38295] test_relative_path of test_py_compile fails on macOS 10.15 Catalina

2019-12-17 Thread Ned Deily
Ned Deily added the comment: New changeset 5a9b69732ec19b04de459af890bcc26b83d979c5 by Ned Deily (Miss Islington (bot)) in branch '3.6': bpo-38295: prevent test_relative_path of test_py_compile failure on macOS Catalina (GH-17636) (GH-17638) https://github.com/python/cpyt

[issue38295] test_relative_path of test_py_compile fails on macOS 10.15 Catalina

2019-12-17 Thread Ned Deily
Ned Deily added the comment: For master and 3.9.0a2, equivalent workaround was included in a76ba362c4d86adf5e7f8254398135d12d7afd25 (bpo-39041 / GH-17594). While these changes prevent the specific test failure, they point to more general issues with use of relative paths on macOS

[issue39035] Travis CI fail on backports: pyvenv not installed

2019-12-18 Thread Ned Deily
Ned Deily added the comment: New changeset 9af497419540cdb4659927e66c67d861c5ea48c2 by Ned Deily (Inada Naoki) in branch '3.7': bpo-39035: travis: Don't use beta group (GH-17604) https://github.com/python/cpython/commit/9af497419540cdb4659927e66

[issue38295] test_relative_path of test_py_compile fails on macOS 10.15 Catalina

2019-12-18 Thread Ned Deily
Ned Deily added the comment: New changeset 13ee023c03caf85101778b9323cdffbad695a4e0 by Ned Deily (Miss Islington (bot)) in branch '3.7': bpo-38295: prevent test_relative_path of test_py_compile failure on macOS Catalina (GH-17636) https://github.com/python/cpyt

[issue32780] ctypes: memoryview gives incorrect PEP3118 format strings for both packed and unpacked structs

2019-12-23 Thread Ned Deily
Change by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker <https://bugs.python.org/issue32780> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39149] False positive using operator 'AND' while checking keys on dict()

2019-12-28 Thread Ned Deily
Ned Deily added the comment: P.S. You should also read the "Operator precedence" section for expressions in the Python Language Reference manual which explains that comparison operators bind tighter than Boolean AND operators: https://docs.python.org/3/reference/expressions.htm

[issue39141] IDLE Clear function returns 256 on Mac OS Catalina

2019-12-29 Thread Ned Deily
Ned Deily added the comment: Unfortunately, this is not going to work as you expect because you are mixing commands for different windowing systems. The OS-level 'clear' command is used to clear a normal terminal window by issuing special character sequences to standard outpu

[issue39141] IDLE Clear function returns 256 on Mac OS Catalina

2019-12-29 Thread Ned Deily
Change by Ned Deily : -- assignee: -> terry.reedy components: +IDLE ___ Python tracker <https://bugs.python.org/issue39141> ___ ___ Python-bugs-list mai

[issue39154] "utf8" not always a synonym for "utf-8" in lib2to3

2019-12-29 Thread Ned Deily
Change by Ned Deily : -- Removed message: https://bugs.python.org/msg358994 ___ Python tracker <https://bugs.python.org/issue39154> ___ ___ Python-bugs-list m

[issue39154] "utf8" not always a synonym for "utf-8" in lib2to3

2019-12-29 Thread Ned Deily
Change by Ned Deily : -- Removed message: https://bugs.python.org/msg358997 ___ Python tracker <https://bugs.python.org/issue39154> ___ ___ Python-bugs-list m

[issue22593] Automate update of doc references to UCD version when it changes.

2019-12-29 Thread Ned Deily
Change by Ned Deily : -- assignee: -> docs@python components: +Documentation nosy: +docs@python, mdk versions: +Python 3.9 -Python 3.5 ___ Python tracker <https://bugs.python.org/issu

[issue39160] ./configure --help has inconsistencies in style

2019-12-29 Thread Ned Deily
Change by Ned Deily : -- nosy: +ned.deily ___ Python tracker <https://bugs.python.org/issue39160> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39162] setup.py not picking up tkinter headers

2019-12-30 Thread Ned Deily
Change by Ned Deily : -- assignee: -> ned.deily ___ Python tracker <https://bugs.python.org/issue39162> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue39168] Generic type subscription is a huge toll on Python performance

2019-12-30 Thread Ned Deily
Change by Ned Deily : -- nosy: +gvanrossum, levkivskyi ___ Python tracker <https://bugs.python.org/issue39168> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39203] python3 time module misses attributes in Mac installers

2020-01-03 Thread Ned Deily
Ned Deily added the comment: This is a duplicate of Issue34597. The Pythons provided by the python.org macOS installers are built to run on a range of operating system versions. The current practice is to build installers that work on any macOS version from 10.9 on. To safely provide that

[issue14132] Redirect is not working correctly in urllib2

2020-01-03 Thread Ned Deily
Change by Ned Deily : -- components: +Library (Lib) -XML type: performance -> behavior ___ Python tracker <https://bugs.python.org/issue14132> ___ ___ Python-

[issue14132] Redirect is not working correctly in urllib2

2020-01-03 Thread Ned Deily
Change by Ned Deily : -- Removed message: https://bugs.python.org/msg359255 ___ Python tracker <https://bugs.python.org/issue14132> ___ ___ Python-bugs-list m

[issue27657] urlparse fails if the path is numeric

2020-01-04 Thread Ned Deily
Change by Ned Deily : -- keywords: +3.7regression, 3.8regression -patch priority: normal -> deferred blocker ___ Python tracker <https://bugs.python.org/issu

[issue39198] Lock may not be released in Logger.isEnabledFor

2020-01-04 Thread Ned Deily
Change by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker <https://bugs.python.org/issue39198> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39221] Cross compiled python installed wrong version of lib2to3/Grammar pickle

2020-01-05 Thread Ned Deily
Change by Ned Deily : -- nosy: +doko ___ Python tracker <https://bugs.python.org/issue39221> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue39244] multiprocessing.get_all_start_methods() wrong default on macOS

2020-01-07 Thread Ned Deily
Change by Ned Deily : -- components: -macOS nosy: +davin, pitrou -ned.deily, ronaldoussoren versions: +Python 3.9 ___ Python tracker <https://bugs.python.org/issue39

[issue39308] Literal declarations are not typed. Literal[True] can be Literal[1] if declared after latter.

2020-01-11 Thread Ned Deily
Change by Ned Deily : -- nosy: +gvanrossum, levkivskyi ___ Python tracker <https://bugs.python.org/issue39308> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26317] Build Problem with GCC + Macintosh OS X 10.11 El Capitain

2020-01-13 Thread Ned Deily
Ned Deily added the comment: Thanks, Terry. I'll look at it shortly. -- assignee: -> ned.deily nosy: -vstinner ___ Python tracker <https://bugs.python.org

[issue39295] usage of bitfields in ctypes structures changed between 3.7.5 and 3.7.6

2020-01-13 Thread Ned Deily
Change by Ned Deily : -- keywords: +3.7regression, 3.8regression versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue39295> ___ ___ Python-bug

[issue39160] ./configure --help has inconsistencies in style

2020-01-13 Thread Ned Deily
Ned Deily added the comment: New changeset 2de064e6305008d16571a21e5f0c178e62e81f27 by Ned Deily (Anthony Shaw) in branch 'master': bpo-39160 Align the verbs, grammar and defaults for `./configure --help` (GH-17747) https://github.com/python/cpyt

[issue39160] ./configure --help has inconsistencies in style

2020-01-13 Thread Ned Deily
Change by Ned Deily : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.9 ___ Python tracker <https://bugs.python.or

[issue34922] hashlib segmentation fault

2020-01-14 Thread Ned Deily
Ned Deily added the comment: Since there has been no further discussion on this since the fixes were pushed over a year ago, I am declaring this issue resolved. Thanks for everyone's help! -- assignee: ned.deily -> resolution: -> fixed stage: patch review -> resolve

[issue39343] Travis CI: documentation job fails in library/nntplib.rst with random network issue on news.gmane.io

2020-01-15 Thread Ned Deily
Ned Deily added the comment: FYI, gmane.io is down for a server move today. It should be back in service by 2100 GMT. -- nosy: +ned.deily ___ Python tracker <https://bugs.python.org/issue39

[issue39343] Travis CI: documentation job fails in library/nntplib.rst with random network issue on news.gmane.io

2020-01-15 Thread Ned Deily
Ned Deily added the comment: I should have checked first. The move was completed ahead of schedule and it's now back in service. The tests should no loner fail. https://lars.ingebrigtsen.no/2020/01/15/news-gmane-org-is-now-news-gma

[issue39362] add option to make chunksize adaptive for multiprocessing.pool methods

2020-01-16 Thread Ned Deily
Change by Ned Deily : -- nosy: +davin, pitrou -ned.deily, ronaldoussoren ___ Python tracker <https://bugs.python.org/issue39362> ___ ___ Python-bugs-list mailin

[issue39370] askopenfilename is missing from the Tkinter filedialog library in 2.7.17

2020-01-17 Thread Ned Deily
Ned Deily added the comment: In Python 2, askopenfilename was in the separate tkFileDialog module: >>> import tkFileDialog >>> dir(tkFileDialog.askopenfilename) ['__call__', ... https://docs.python.org/2/library/tkinter.html?highlight=tkfiledialog#tkinter-

[issue3770] test_multiprocessing fails on systems with HAVE_SEM_OPEN=0

2020-01-20 Thread Ned Deily
Ned Deily added the comment: Matthew, this tracker issue has been closed for over 10 years; posting new questions or comments to such is unlikely to get a response (I just happened to see your comment in passing). If you believe you have identified a new issue with current versions of

[issue39392] Python Turtle is not filling alternate overlapping areas of a shape with same color

2020-01-20 Thread Ned Deily
Change by Ned Deily : -- nosy: +gregorlingl, willingc ___ Python tracker <https://bugs.python.org/issue39392> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39390] shutil.copytree - 3.8 changed argument types of the ignore callback

2020-01-20 Thread Ned Deily
Change by Ned Deily : -- keywords: +3.8regression -patch ___ Python tracker <https://bugs.python.org/issue39390> ___ ___ Python-bugs-list mailing list Unsub

[issue39390] shutil.copytree - 3.8 changed argument types of the ignore callback

2020-01-20 Thread Ned Deily
Change by Ned Deily : -- keywords: +patch ___ Python tracker <https://bugs.python.org/issue39390> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18819] tarfile fills devmajor and devminor fields even for non-devices

2020-01-20 Thread Ned Deily
Change by Ned Deily : -- nosy: +ethan.furman versions: -Python 2.7, Python 3.3, Python 3.4, Python 3.5, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue18

[issue39399] Cross compilation using different libc is broken

2020-01-20 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. This appears to be a duplicate of languishing Issue22724. Suggest you join the discussion there. -- nosy: +ned.deily resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> byte-compile fai

[issue39383] Mention Darwin as a potential value for platform.system()

2020-01-20 Thread Ned Deily
Ned Deily added the comment: New changeset 8d57a4182f0aa68e16d66dea31ba59e732612b4f by Ned Deily (Peter Bittner) in branch 'master': bpo-39383: Mention Darwin as a potential value for platform.system() (GH-18054) https://github.com/python/cpyt

[issue39383] Mention Darwin as a potential value for platform.system()

2020-01-20 Thread Ned Deily
Ned Deily added the comment: Thanks for the PR! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: enhancement -> versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python

[issue39401] Unsafe dll loading in getpathp.c on Win7

2020-01-22 Thread Ned Deily
Change by Ned Deily : -- priority: normal -> deferred blocker ___ Python tracker <https://bugs.python.org/issue39401> ___ ___ Python-bugs-list mailing list Un

[issue39401] Unsafe dll loading in getpathp.c on Win7

2020-01-22 Thread Ned Deily
Change by Ned Deily : -- nosy: +ned.deily ___ Python tracker <https://bugs.python.org/issue39401> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39421] Use-after-free in heappushpop() of heapq module

2020-01-23 Thread Ned Deily
Ned Deily added the comment: New changeset c563f409ea30bcb0623d785428c9257917371b76 by Ned Deily (Miss Islington (bot)) in branch '3.6': bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18118) (GH-18146) https://github.com/python/cpyt

[issue39414] Multiprocessing resolving object as None

2020-01-24 Thread Ned Deily
Change by Ned Deily : -- nosy: +davin, pitrou ___ Python tracker <https://bugs.python.org/issue39414> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39234] `enum.auto()` incrementation value not specified.

2020-01-25 Thread Ned Deily
Ned Deily added the comment: New changeset eec7636bfd07412b5872c0683636e9e98bf79a8c by Ned Deily (Miss Islington (bot)) in branch '3.8': bpo-39234: Doc: `enum.auto()` incrementation value not specified. (GH-17872) (GH-17875) https://github.com/python/cpyt

[issue39234] `enum.auto()` incrementation value not specified.

2020-01-25 Thread Ned Deily
Change by Ned Deily : -- versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issue39234> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39234] `enum.auto()` incrementation value not specified.

2020-01-25 Thread Ned Deily
Ned Deily added the comment: New changeset b0a6ec256b460f071e33b4633e5bec450d8e6394 by Ned Deily (Miss Islington (bot)) in branch '3.7': bpo-39234: Doc: `enum.auto()` incrementation value not specified. (GH-17872) (GH-17876) https://github.com/python/cpyt

[issue39401] [CVE-2020-8315] Unsafe dll loading in getpathp.c on Win7

2020-01-30 Thread Ned Deily
Ned Deily added the comment: New changeset 51332c467ed2e07a191f903d554d0c54248e4d88 by Steve Dower in branch '3.6': [3.6] bpo-39401: Avoid unsafe DLL load on Windows 7 and earlier (GH-18231) (GH-18233) https://github.com/python/cpython/commit/51332c467ed2e07a191f903d554d0c

[issue39401] [CVE-2020-8315] Unsafe dll loading in getpathp.c on Win7

2020-01-30 Thread Ned Deily
Change by Ned Deily : -- priority: deferred blocker -> resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python

[issue39432] Distutils generates the wrong export symbol for unicode module names

2020-02-07 Thread Ned Deily
Ned Deily added the comment: We should not be changing Distutils 3.7 behavior at this late point in its life cycle, particularly since AFAIK this issue has not come up before. Let's see what Ɓukasz thinks for 3.8. -- nosy: +lukasz.langa versions: -Pytho

[issue39580] Check for COMMAND_LINE_INSTALL variable in Python_Documentation.pkg

2020-02-07 Thread Ned Deily
Change by Ned Deily : -- assignee: -> ned.deily ___ Python tracker <https://bugs.python.org/issue39580> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue39545] await is not supported in f-string in 3.6

2020-02-10 Thread Ned Deily
Ned Deily added the comment: New changeset a2963f09629a0a8c63e9acef79c1dcc0a040ddb6 by Elena Oat in branch '3.6': bpo-39545: docs: do not use await in f-strings (GH-18434) https://github.com/python/cpython/commit/a2963f09629a0a8c63e9acef79c1dcc0a040ddb6 -- nosy:

[issue39545] await is not supported in f-string in 3.6

2020-02-10 Thread Ned Deily
Ned Deily added the comment: Thanks for the PR! We don't normally accept doc changes for branches in security-fix mode but this seems like a worthwhile exception. -- resolution: -> fixed stage: patch review -> resolved status: ope

[issue39545] await is not supported in f-string in 3.6

2020-02-13 Thread Ned Deily
Ned Deily added the comment: New changeset cebe9ee988837b292f2c571e194ed11e7cd4abbb by Serhiy Storchaka in branch '3.6': bpo-39545: Document restrictions on "await" and "async for" in f-strings. (GH-18459) https://github.com/python/cpython/commit/cebe9ee988

[issue10572] Move test sub-packages to Lib/test

2020-02-16 Thread Ned Deily
Ned Deily added the comment: As noted in the review of the PR, keep in mind that tests are included in an installed Python instance; there is a list of test directories in the main Makefile (Makefile.pre.in) that is used by "make install". Any movement of test directories thu

[issue39669] macOS test failures

2020-02-17 Thread Ned Deily
Ned Deily added the comment: The importlib test failures have been showing up on the buildbots but haven't yet been triaged: https://mail.python.org/archives/list/buildbot-sta...@python.org/thread/XMDX3AVR3HALZIPKBWB4WUV3FOAYHGUV/ It is referred here: https://mail.python.org/archives

[issue27657] urlparse fails if the path is numeric

2020-02-26 Thread Ned Deily
Ned Deily added the comment: FYI, for those following along, now that 3.8.2 has been released with the revert of the regression, we are planning to accelerate the schedule for 3.7.7, the next 3.7.x bugfix release, in part to get the revert out to 3.7.x users sooner (https

<    12   13   14   15   16   17   18   19   20   21   >