[issue32972] unittest.TestCase coroutine support

2018-03-06 Thread Zachary Ware
Zachary Ware added the comment: How is a separate base class better? :) Having a default coroutine runner on the standard TestCase means all you have to do to add async tests is tack an `async` onto the front of your method definition, and everything just works as it always has. Making it a

[issue32972] unittest.TestCase coroutine support

2018-03-07 Thread Zachary Ware
Zachary Ware added the comment: Why is a metaclass required? Playing with a modified version of John's PR5938, it doesn't seem necessary. -- ___ Python tracker <https://bugs.python.o

[issue32972] unittest.TestCase coroutine support

2018-03-12 Thread Zachary Ware
Zachary Ware added the comment: 1. I'm still -1 on a separate subclass, especially since the subclass should still be compatible with the base class. 2. This is only in consideration for 3.8 (even 3.7 is past feature freeze at this point), so the version-dependent behavior is unnecessar

[issue32972] unittest.TestCase coroutine support

2018-03-12 Thread Zachary Ware
Zachary Ware added the comment: Ok, Yury clarified a few points before I got my message submitted there, so some of my last message may be a bit misguided. In particular, the problems with just using `asyncio.run` are clearer to me now. To give my answers to Yury's open questions:

[issue33063] failed to build _ctypes: undefined reference to `ffi_closure_FASTCALL'

2018-03-13 Thread Zachary Ware
Zachary Ware added the comment: Your better option is to install libffi-devel (or whatever the correct name is ) on your system and use `./configure --with-system-ffi`. This is the default in 3.6 and the only option in 3.7 (on any platform but Windows and macOS). -- nosy: +zach.ware

[issue33125] Windows 10 ARM64 platform support

2018-03-23 Thread Zachary Ware
Zachary Ware added the comment: Ideally, all of the changes necessary in OpenSSL, libffi, and Tcl/Tk will happen upstream and we'll just update to new versions of them. We have PR 3806 in progress to extract libffi from our repo and treat it just as any other external dependency on Wi

[issue33191] Refleak in posix_spawn

2018-03-30 Thread Zachary Ware
New submission from Zachary Ware : There is a refleak in posix_spawn; see for example http://buildbot.python.org/all/#/builders/114/builds/53 The attached PR fixes it, but I am not confident that I did it correctly. -- components: Interpreter Core messages: 314719 nosy

[issue33191] Refleak in posix_spawn

2018-03-30 Thread Zachary Ware
Change by Zachary Ware : -- keywords: +patch pull_requests: +6031 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue33191> ___ ___ Py

[issue31455] ElementTree.XMLParser() mishandles exceptions

2018-03-30 Thread Zachary Ware
Zachary Ware added the comment: This added a refleak on 2.7, see http://buildbot.python.org/all/#/builders/78/builds/122 and later builds. Also, the bug ID in the blurb is incorrect (31544 vs 31455). -- nosy: +zach.ware status: closed -> o

[issue32823] Regression in test -j behavior and time in 3.7.0b1

2018-03-30 Thread Zachary Ware
Zachary Ware added the comment: Terry, could you give me the full command you use to get that result? -- ___ Python tracker <https://bugs.python.org/issue32

[issue33206] Windows inet_pton(socket.AF_INET6, 'localhost') raises ValueError instead of socket.error

2018-04-02 Thread Zachary Ware
Zachary Ware added the comment: Your traceback seems to include both pika and twisted, and as best I can tell, `socket.inet_pton` does not exist on Windows in Python 2.7. If I've diagnosed this incorrectly, please reopen the ticket with a reproducer that does not depend on pika or tw

[issue33232] Segmentation fault in operator.attrgetter

2018-04-05 Thread Zachary Ware
Zachary Ware added the comment: Python 3.5 is in security-fix-only mode now, which means we won't be releasing any more binaries for it, and thus can't really do much about this other than possibly recommending that Windows users build with VS2017 instead of VS2015 in future 3

[issue32823] Regression in test -j behavior and time in 3.7.0b1

2018-04-05 Thread Zachary Ware
Zachary Ware added the comment: I can't reproduce this. Even running `python -m test -j14` on a machine with 2 vCPUs, I get my first results at 2s, and even test___all__ passes in only 6 (though on my first run, with -j0 (== -j4), test___all__ took 41s but other results came in

[issue32823] Regression in test -j behavior and time in 3.7.0b1

2018-04-09 Thread Zachary Ware
Zachary Ware added the comment: Ok, interesting. The above results are from running on my Windows 8.1 buildbot, running on Azure. Running on a local fully-updated (I think) Windows 10 VM, I get results similar to what Terry reports: results come in batches of X for -jX. Does anyone know

[issue33273] Allow multiple imports from one module while preserving its namespace

2018-04-13 Thread Zachary Ware
Zachary Ware added the comment: Do you mean like `from lib import mod1, mod2, mod3`? If that doesn't cover what you're looking for, try sending your idea (fleshed out a bit more :)) to the python-id...@python.org mailing list, where you can get feedback on your idea. For now, I

[issue33288] Spam

2018-04-16 Thread Zachary Ware
Change by Zachary Ware : -- nosy: -stevensalbert resolution: -> not a bug stage: -> resolved status: open -> closed title: Diethealth -> Spam ___ Python tracker <https://bugs.python

[issue33288] Spam

2018-04-16 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg315363 ___ Python tracker <https://bugs.python.org/issue33288> ___ ___ Python-bugs-list m

[issue33288] Spam

2018-04-16 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg315364 ___ Python tracker <https://bugs.python.org/issue33288> ___ ___ Python-bugs-list m

[issue33369] Removing Popen log files in threads is racy on Windows

2018-04-26 Thread Zachary Ware
Zachary Ware added the comment: You will get no support for Python 2.7.3 out of us (that patch release is over 6 years old! At least try 2.7.14, or wait a week for 2.7.15) and most of us have lost interest in 2.7 altogether, particularly on Windows. However, this sounds very much like

[issue33404] Phone Number Generator

2018-05-01 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue33404> ___ ___

[issue33404] Phone Number Generator

2018-05-01 Thread Zachary Ware
Change by Zachary Ware : -- assignee: terry.reedy -> ___ Python tracker <https://bugs.python.org/issue33404> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue33404] Phone Number Generator

2018-05-01 Thread Zachary Ware
Change by Zachary Ware : -- components: -IDLE ___ Python tracker <https://bugs.python.org/issue33404> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33355] Windows 10 buildbot: 15 min timeout on test_mmap.test_large_filesize()

2018-05-06 Thread Zachary Ware
Zachary Ware added the comment: David, has anything gone wonky on those builders lately? Should we consider passing `-u-largefile` on them? -- nosy: +db3l ___ Python tracker <https://bugs.python.org/issue33

[issue31569] inconsistent case of PCbuild/ directory

2017-09-25 Thread Zachary Ware
Zachary Ware added the comment: Personally, *I'd* prefer PC -> Windows and PCbuild -> Windows\build :) I'm also good with the PR as is. -- ___ Python tracker <https://bugs.py

[issue31595] Preferring MSVC 2017 in Python 3.6.x new minor releases

2017-09-26 Thread Zachary Ware
Zachary Ware added the comment: 3.5 is in security-fix-only mode, so it will not receive such an update. 3.6 is up to Ned and Steve. -- assignee: -> steve.dower components: +Windows nosy: +ned.deily, paul.moore, steve.dower, tim.golden, zach.ware title: Preferring MSVC 2017 in Pyt

[issue31584] Documentation Language mixed up

2017-09-27 Thread Zachary Ware
Zachary Ware added the comment: Sounds like we really ought to be building each translation in its own directory so they can't possibly stomp on each other. -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/is

[issue25098] test_uuid fails with pywin32 installed

2017-09-28 Thread Zachary Ware
Zachary Ware added the comment: Still fails on Python 3.6.1 with pypiwin32-220; those are the versions I have handy to check on. I've not managed to report it to pywin32 or look into it any deeper, though. If someone can confirm that it's definitely their bug, this can be close

[issue31645] openssl build fails in win32 if .pl extension is not associated with Perl

2017-09-30 Thread Zachary Ware
Change by Zachary Ware : -- components: +Windows nosy: +larry, paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue31

[issue31120] [2.7] Python 64 bit _ssl compile fails due missing buildinf_amd64.h

2017-09-30 Thread Zachary Ware
Zachary Ware added the comment: Sorry it's taken me so long to get back to this, Hiren. Do you still need it since 2.7.14 is out? -- ___ Python tracker <https://bugs.python.org/is

[issue25153] PCbuild/*.vcxproj* should use CRLF line endings

2017-09-30 Thread Zachary Ware
Zachary Ware added the comment: This has been done for a while via .gitattributes. -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue28046] Remove the concept of platform-specific directories

2017-09-30 Thread Zachary Ware
Zachary Ware added the comment: Are there any remaining outstanding issues here? -- assignee: zach.ware -> status: open -> pending ___ Python tracker <https://bugs.python.org/i

[issue23283] Backport Tools/clinic to 3.4

2017-09-30 Thread Zachary Ware
Zachary Ware added the comment: At this point in 3.4's life cycle, this is likely not worth the effort. -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.pyth

[issue21411] Enable Treat Warning as Error on 32-bit Windows

2017-09-30 Thread Zachary Ware
Zachary Ware added the comment: We've introduced enough new warnings in the past 3 years that this is not viable at this point. If we decide we want warnings in the compile stage to set the whole build to warnings, we can open an issue in https://github.com/python/buildmaster-confi

[issue20323] Argument Clinic: docstring_prototype output causes build failure on Windows

2017-09-30 Thread Zachary Ware
Zachary Ware added the comment: With two-pass gone, this is gone. -- resolution: remind -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue20464] Update distutils sample config file in Doc/install/index.rst

2017-09-30 Thread Zachary Ware
Change by Zachary Ware : -- versions: +Python 3.7 -Python 3.4, Python 3.5 ___ Python tracker <https://bugs.python.org/issue20464> ___ ___ Python-bugs-list mailin

[issue31652] make install fails: no module _ctypes

2017-09-30 Thread Zachary Ware
Zachary Ware added the comment: I expect that the root cause is missing libffi(-dev[el]) on your system, preventing _ctypes from building, so your quick fix would be to install that and try again. However, not having _ctypes shouldn't cause installation to fail. Donald, is ctypes a

[issue28027] Remove Lib/plat-*/* files

2017-09-30 Thread Zachary Ware
Zachary Ware added the comment: Since we've reached 3.6.3 with no complaints that have made it to me, I'm going to go ahead and close the issue. -- resolution: -> fixed status: open -> closed ___ Python tracker <https://bugs.py

[issue29041] Reference leaks on Windows

2017-09-30 Thread Zachary Ware
Zachary Ware added the comment: Victor has cleaned these up, and we now have a buildbot running refleak checks on Windows every day (as long as it's not hung :) -- resolution: -> fixed stage: needs patch -> resolved status: ope

[issue31679] pydot missing write, write_png, etc

2017-10-03 Thread Zachary Ware
Zachary Ware added the comment: pydot is not part of the standard library; you'll need to find their issue tracker (looks like maybe https://github.com/erocarrera/pydot/issues?) and open a ticket there. -- nosy: +zach.ware resolution: -> third party stage: -> resolved s

[issue31623] Allow to build MSI installer from the official tarball

2017-10-03 Thread Zachary Ware
Zachary Ware added the comment: As 3.4 is in security-fix-only mode, it's up to Larry whether this can be merged. The patch looks fine as far as I can tell, but I can't test it. Note, though, that you are likely to be the only person on Earth using this installer, since there

[issue31682] Exception: Cannot import `win32api`!

2017-10-03 Thread Zachary Ware
Zachary Ware added the comment: win32api is part of the third-party pywin32 package, which is most easily installed by running `C:\Python27\python.exe -m pip install pypiwin32`. For further assistance, please try either the comp.lang.python list at python-l...@python.org, the pywin32 list

[issue31685] Cannot connect to CE path `127.0.0.1:8010`

2017-10-03 Thread Zachary Ware
Zachary Ware added the comment: This issue does not appear to have anything to do with the CPython interpreter or standard library, and this issue tracker is not a help forum. Please try python-l...@python.org for assistance, but you'll need to provide the other users of the

[issue31685] Cannot connect to CE path `127.0.0.1:8010`

2017-10-03 Thread Zachary Ware
Change by Zachary Ware : -- components: -Demos and Tools type: compile error -> ___ Python tracker <https://bugs.python.org/issue31685> ___ ___ Python-

[issue31623] Allow to build MSI installer from the official tarball

2017-10-04 Thread Zachary Ware
Zachary Ware added the comment: If you're still on XP, security is obviously not a big concern and you're just as well off to stick with 3.4.4 :) -- ___ Python tracker <https://bugs.python.o

[issue31694] Running Windows installer with LauncherOnly=1 should not register the version as installed

2017-10-04 Thread Zachary Ware
Change by Zachary Ware : -- assignee: -> steve.dower components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issu

[issue31710] setup.py: _ctypes won't getbuilt when system ffi is only in $PREFIX

2017-10-05 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +Chi Hsuan Yen, doko, zach.ware ___ Python tracker <https://bugs.python.org/issue31710> ___ ___ Python-bugs-list mailin

[issue31724] test_xmlrpc should use something other than buildbot.python.org

2017-10-07 Thread Zachary Ware
New submission from Zachary Ware : With the upgrade to buildbot 0.9, the xmlrpc interface to buildbot.python.org is removed, causing test_xmlrpc to fail. The test should hit a different host, possibly on pythontest.net? -- components: Tests messages: 303894 nosy: loewis, zach.ware

[issue31724] test_xmlrpc_net should use something other than buildbot.python.org

2017-10-07 Thread Zachary Ware
Change by Zachary Ware : -- title: test_xmlrpc should use something other than buildbot.python.org -> test_xmlrpc_net should use something other than buildbot.python.org ___ Python tracker <https://bugs.python.org/issu

[issue31724] test_xmlrpc_net should use something other than buildbot.python.org

2017-10-07 Thread Zachary Ware
Change by Zachary Ware : -- keywords: +patch pull_requests: +3894 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue31724] test_xmlrpc_net should use something other than buildbot.python.org

2017-10-07 Thread Zachary Ware
Change by Zachary Ware : -- stage: patch review -> needs patch ___ Python tracker <https://bugs.python.org/issue31724> ___ ___ Python-bugs-list mailing list Un

[issue31724] test_xmlrpc_net should use something other than buildbot.python.org

2017-10-07 Thread Zachary Ware
Zachary Ware added the comment: New changeset 73ffd3f2036179ed54591ef0455e5ba5694ae5bd by Zachary Ware in branch 'master': bpo-31724: Skip test_xmlrpc_net (GH-3921) https://github.com/python/cpython/commit/73ffd3f2036179ed54591ef0455e5b

[issue31724] test_xmlrpc_net should use something other than buildbot.python.org

2017-10-07 Thread Zachary Ware
Zachary Ware added the comment: This is currently mitigated by some nasty hacks on the buildbot.python.org server to avoid breaking tests on every released version of Python 3, but this still needs to change. The test is skipped in master and (soon) 3.6 to minimize the damage when the hacks

[issue31724] test_xmlrpc_net should use something other than buildbot.python.org

2017-10-07 Thread Zachary Ware
Zachary Ware added the comment: New changeset d13a4e50679c0861971cfae2bb226f35b8bf5142 by Zachary Ware (Miss Islington (bot)) in branch '3.6': [3.6] bpo-31724: Skip test_xmlrpc_net (GH-3922) https://github.com/python/cpython/commit/d13a4e50679c0861971cfae2bb226f

[issue31724] test_xmlrpc_net should use something other than buildbot.python.org

2017-10-09 Thread Zachary Ware
Change by Zachary Ware : -- stage: patch review -> needs patch ___ Python tracker <https://bugs.python.org/issue31724> ___ ___ Python-bugs-list mailing list Un

[issue31741] backports import path can not be overridden in Windows (Linux works fine)

2017-10-11 Thread Zachary Ware
Zachary Ware added the comment: Note that your instructions start with downloading the installer for 2.7.0, whereas the latest version of 2.7 is 2.7.14, which includes pip. backports is a strange beast of a package, which tries to emulate Python 3's namespace packages in Python 2. To

[issue31832] Async list comprehension (PEP 530) causes SyntaxError in Python 3.6.3

2017-10-20 Thread Zachary Ware
Zachary Ware added the comment: Your async listcomp must also be defined within a coroutine to turn `async` into a keyword in 3.6. The following is far from best practice (don't do this, I don't know what I'm doing! :), but at least it compiles and shows that it works: asy

[issue31832] Async list comprehension (PEP 530) causes SyntaxError in Python 3.6.3

2017-10-20 Thread Zachary Ware
Zachary Ware added the comment: That's already provided, just do `return outputs` instead of `print(outputs)`, and `outputs = event_loop.run_until_complete(main())`. See https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.AbstractEventLoop.run_until_com

[issue31430] [Windows][2.7] Python 2.7 compilation fails on mt.exe crashing with error code C0000005

2017-10-24 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +db3l ___ Python tracker <https://bugs.python.org/issue31430> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31877] Build fails on Cython since issue28180

2017-10-26 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +haypo, ncoghlan, zach.ware ___ Python tracker <https://bugs.python.org/issue31877> ___ ___ Python-bugs-list mailing list Unsub

[issue31810] Travis CI, buildbots: run "make smelly" to check if CPython leaks symbols

2017-10-26 Thread Zachary Ware
Change by Zachary Ware : -- pull_requests: -4103 ___ Python tracker <https://bugs.python.org/issue31810> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30952] include Math extension in SQlite

2017-11-02 Thread Zachary Ware
Zachary Ware added the comment: Would you like to supply a PR? -- ___ Python tracker <https://bugs.python.org/issue30952> ___ ___ Python-bugs-list mailin

[issue31932] setup.py cannot find vcversall.bat on MSWin 8.1 if installed in user AppData

2017-11-03 Thread Zachary Ware
Change by Zachary Ware : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue31

[issue31951] import curses is broken on windows

2017-11-06 Thread Zachary Ware
Zachary Ware added the comment: Curses is available for Windows from Christopher Gohlke's site: https://www.lfd.uci.edu/~gohlke/pythonlibs/#curses We should clean up this situation, though, either by making the state of Windows curses support explicit in the docs or by actually a

[issue28791] update sqlite to latest version before beta 1

2017-11-07 Thread Zachary Ware
Zachary Ware added the comment: I'd say that's up to Ned and Benjamin. It's a very simple backport at this point. -- nosy: +benjamin.peterson ___ Python tracker <https://bugs.pyt

[issue30487] DOC: automatically create a venv and install Sphinx when running make

2017-11-08 Thread Zachary Ware
Zachary Ware added the comment: You should be able to force-push your branch (`git push -f origin auto-venv-docbuilder`, or replace `origin` with the correct remote name) to fix the existing PR. Sorry I haven't gotten back to this previously; time to do a review and remembering that t

[issue30952] [Windows] include Math extension in SQlite

2017-11-08 Thread Zachary Ware
Zachary Ware added the comment: I, for one, don't have the time to work on this, especially since I don't regularly use the sqlite3 module. If this is something you want, submit a PR. Lack of skill is not a legitimate reason not to do so; the devguide provides instructions on the

[issue30855] [2.7] test_tk: test_use() of test_tkinter.test_widgets randomly fails with "integer value too large to represent" on with AMD64 Windows8 3.5

2017-11-20 Thread Zachary Ware
Zachary Ware added the comment: > Ah, this is Cygwin! Hmm, no; Cygwin isn't installed on ware-win81-release. When was the fix made? 2.7 on Windows currently uses 8.5.15, we can bump it up to latest 8.5 if that will help. -- ___ Python

[issue32095] AIX: ModuleNotFoundError: No module named '_ctypes' - make install fails

2017-11-20 Thread Zachary Ware
Zachary Ware added the comment: Do you have libffi (and its development headers) installed where the compiler can find it? Python 3.7 no longer bundles a copy of libffi (see #27979). -- nosy: +zach.ware versions: -Python 3.8 ___ Python tracker

[issue30855] [2.7] test_tk: test_use() of test_tkinter.test_widgets randomly fails with "integer value too large to represent" on with AMD64 Windows8 3.5

2017-11-21 Thread Zachary Ware
Zachary Ware added the comment: If you'd like to do that update, there are some instructions at https://github.com/python/cpython-source-deps. You can get AppVeyor to use dependencies from your fork of `cpython-source-deps` by adjusting 2.7/PCbuild/get_externals.bat:32 to point to

[issue32095] AIX: ModuleNotFoundError: No module named '_ctypes' - make install fails

2017-11-21 Thread Zachary Ware
Zachary Ware added the comment: You removed me from the nosy list, so I didn't see your reply until now when I happened to refresh the tab that happened to still be open :) The warning I was talking about in that message was a warning that libffi was found but is outdated, which wouldn

[issue30855] [2.7] test_tk: test_use() of test_tkinter.test_widgets randomly fails with "integer value too large to represent" on with AMD64 Windows8 3.5

2017-11-24 Thread Zachary Ware
Change by Zachary Ware : -- pull_requests: +4481 stage: resolved -> patch review ___ Python tracker <https://bugs.python.org/issue30855> ___ ___ Python-bugs-lis

[issue30855] [2.7] test_tk: test_use() of test_tkinter.test_widgets randomly fails with "integer value too large to represent" on with AMD64 Windows8 3.5

2017-11-26 Thread Zachary Ware
Zachary Ware added the comment: New changeset be1faabeef0821f188a28dd7cc6b744b89e85e94 by Zachary Ware in branch '2.7': bpo-30855: Bump Tcl/Tk to 8.5.19 on Windows (GH-4550) https://github.com/python/cpython/commit/be1faabeef0821f188a28dd7cc6b74

[issue28046] Remove the concept of platform-specific directories

2017-11-26 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> fixed stage: commit review -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.or

[issue30487] DOC: automatically create a venv and install Sphinx when running make

2017-11-26 Thread Zachary Ware
Zachary Ware added the comment: New changeset d8d6b9122134f040cd5a4f15f40f6c9e3386db4d by Zachary Ware (Caleb Hattingh) in branch 'master': bpo-30487: automatically create a venv and install Sphinx when running make (GH-4346) https://github.com/python/cpyt

[issue30487] DOC: automatically create a venv and install Sphinx when running make

2017-11-26 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue32149] bolen-dmg-3.x: compiled failed with: blurb: command not found

2017-11-27 Thread Zachary Ware
Zachary Ware added the comment: This is likely due to a change I merged yesterday. -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue32

[issue30487] DOC: automatically create a venv and install Sphinx when running make

2017-11-27 Thread Zachary Ware
Zachary Ware added the comment: Go ahead with the revert, Ned. -- ___ Python tracker <https://bugs.python.org/issue30487> ___ ___ Python-bugs-list mailin

[issue31430] [Windows][2.7] Python 2.7 compilation fails on mt.exe crashing with error code C0000005

2017-12-06 Thread Zachary Ware
Zachary Ware added the comment: The worker is happy, closing the issue. -- keywords: +buildbot resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue30450] Pull Windows dependencies from GitHub rather than svn.python.org

2017-12-06 Thread Zachary Ware
Zachary Ware added the comment: This has been backported and working for nearly 3 months now; closing. As for whether to continue operating svn.python.org now that we're officially away from it: that can be determined elsewhere, probably by the box dying and deciding f

[issue32287] Import of _pyio module failed on cygwin

2017-12-12 Thread Zachary Ware
Zachary Ware added the comment: Presumably this issue does prevent us from testing _pyio on Cygwin, which is not ideal. The outside usage of _pyio is definitely not supported, as Christian said, but this may be worth fixing anyway. -- nosy: +masamoto, zach.ware priority: normal

[issue32287] Import of _pyio module failed on cygwin

2017-12-12 Thread Zachary Ware
Zachary Ware added the comment: Right, so you should raise an issue with cherrypy :). You're more likely to get a fix from them quickly, and their usage of _pyio is not correct anyway. Also, note that Cygwin is not (anymore/yet) a fully-supported platform. We're working towards t

[issue32302] test_distutils: test_get_exe_bytes() failure on AppVeyor

2017-12-13 Thread Zachary Ware
Change by Zachary Ware : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware priority: normal -> high stage: -> needs patch ___ Python tracker <https://bugs.python.org/i

[issue30492] 'make clinic' does not work for out of tree builds / clinic.py is not in the devguide

2017-12-20 Thread Zachary Ware
Zachary Ware added the comment: > I don't like to hijack this issue but could we get some of the build bots to > do their builds in a subfolder? The buildmaster config is at https://github.com/python/buildmaster-config, feel free to submit a pull request that sets the ware

[issue28459] _pyio module broken on Cygwin / setmode not usable

2017-12-21 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +zach.ware stage: -> patch review versions: -Python 3.5 ___ Python tracker <https://bugs.python.org/issue28459> ___ ___ Py

[issue30855] [2.7] test_tk: test_use() of test_tkinter.test_widgets randomly fails with "integer value too large to represent" on with AMD64 Windows8 3.5

2018-01-05 Thread Zachary Ware
Zachary Ware added the comment: I manually cleared `externals\tcltk64` on that bot some time ago, and it appears to be happy now. -- ___ Python tracker <https://bugs.python.org/issue30

[issue30855] [2.7] test_tk: test_use() of test_tkinter.test_widgets randomly fails with "integer value too large to represent" on with AMD64 Windows8 3.5

2018-01-05 Thread Zachary Ware
Zachary Ware added the comment: I think so :) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue32248] Port importlib_resources (module and ABC) to Python 3.7

2018-01-06 Thread Zachary Ware
Zachary Ware added the comment: I notice that my 'Installed' builder (http://buildbot.python.org/all/#/builders/103) has been broken since PR4911 landed. My suspicion is that it's just another directory missed in the Makefile install libinstall target, but haven't act

[issue33543] `make html` broken

2018-05-16 Thread Zachary Ware
Zachary Ware added the comment: Try `make venv && make html`. -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue33543> ___ ___ Py

[issue33556] leftover thread crumb in threading.ident docstring

2018-05-17 Thread Zachary Ware
Zachary Ware added the comment: Rather than a leading underscore, I think `thread.` should just be removed. `get_ident` is now exposed by the threading module itself. For a change this small, https://github.com/python/cpython/edit/master/Lib/threading.py can be used to create it, but every

[issue33556] leftover thread crumb in threading.ident docstring

2018-05-18 Thread Zachary Ware
Zachary Ware added the comment: New changeset 5634331a76dfe9fbe4b76475e11307a0922d6a15 by Zachary Ware (Skip Montanaro) in branch 'master': bpo-33556: Remove reference to thread module from docstring (GH-6963) https://github.com/python/cpython/commit/5634331a76dfe9fbe4b76475e11307

[issue33556] leftover thread crumb in threading.ident docstring

2018-05-18 Thread Zachary Ware
Zachary Ware added the comment: New changeset abde17e663edd6437cc7eb0405fe418449a25d72 by Zachary Ware (Miss Islington (bot)) in branch '3.7': bpo-33556: Remove reference to thread module from docstring (GH-6963) https://github.com/python/cpyt

[issue33556] leftover thread crumb in threading.ident docstring

2018-05-18 Thread Zachary Ware
Zachary Ware added the comment: Done, thanks Skip :) Can we convince you to reclaim your commit bits so you can click the buttons yourself next time? ;) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed _

[issue33634] Buildbot configuration issue on Windows7 buildbots

2018-05-24 Thread Zachary Ware
Zachary Ware added the comment: This was fixed by https://github.com/python/buildmaster-config/pull/36 -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue33656] IDLE: Turn on DPI awareness on Windows

2018-05-29 Thread Zachary Ware
Zachary Ware added the comment: Does Tcl/Tk have a function for this, and/or should we expose this as a function in Tkinter? Do other platforms (macOS, X/Wayland) have similar functions? -- nosy: +serhiy.storchaka ___ Python tracker <ht

[issue31731] [2.7] test_io hangs on x86 Gentoo Refleaks 2.7

2018-05-29 Thread Zachary Ware
Zachary Ware added the comment: test_io is currently hung on that builder: buildbot 13541 0.0 0.1 4920 2508 pts/1Ss+ May28 0:00 \_ make buildbottest TESTOPTS=-j2 -R 3:3 -u-cpu TESTPYTHONOPTS= TESTTIMEOUT=11700 buildbot 13556 0.2 0.4 33620 9952 pts/1Sl+ May28 2:45

[issue33764] AppVeyor builds interrupted before tests complete

2018-06-03 Thread Zachary Ware
Change by Zachary Ware : -- pull_requests: +6995 ___ Python tracker <https://bugs.python.org/issue33764> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33785] Crash caused by pasting 𐌈𐌖 into python

2018-06-06 Thread Zachary Ware
Zachary Ware added the comment: I suspect this is the old issue of Tcl/Tk's lack of support for Unicode characters outside the BMP. If I'm correct, there's nothing we can do about it. -- assignee: -> terry.reedy components: +IDLE nosy: +serhiy.storchaka, terr

[issue33785] Crash caused by pasting 𐌈𐌖 into python

2018-06-06 Thread Zachary Ware
Zachary Ware added the comment: Depending on PowerShell's support for Unicode (I'm not familiar with it :)), yes; running python from PowerShell would probably be fine in this case. The BMP: https://en.wikipedia.org/wiki/Plane_(Unicode)#Basic_Multilingual_Plane -- nosy: -

[issue33807] CONTRIBUTING.rst: 'Stable buildbots' links with 404 errors

2018-06-08 Thread Zachary Ware
Zachary Ware added the comment: New changeset 9e6685ea7b749ee34466e71b22d99e5112d71a95 by Zachary Ware (Suriyaa ✌️️) in branch 'master': bpo-33807: Add Python 3.7 buildbot link to '.github/CONTRIBUTING.rst' (GH-7532) https://github.com/p

[issue33807] CONTRIBUTING.rst: 'Stable buildbots' links with 404 errors

2018-06-08 Thread Zachary Ware
Zachary Ware added the comment: I fixed the issue by reenabling redirects in the buildbot.python.org Apache config, and Suriyaa fixed the lack of a 3.7 link with PR7532. Thanks for the report and PR! -- resolution: -> fixed stage: patch review -> resolved status: open -&g

<    4   5   6   7   8   9   10   11   12   13   >