[issue37815] 'Make Test' error while trying to install Python 3.7.4 on Linux Mint

2021-10-19 Thread Zachary Ware
Zachary Ware added the comment: I can't reproduce this on Pop_OS! 20.04 with libreadline-gplv2-dev, so I'm going to assume it's been fixed somewhere along the way. If anyone else can still reproduce with up-to-date versions of everything involved, please post the relevant versions

[issue38371] Tkinter: deprecate the split() method

2021-10-19 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +zach.ware nosy_count: 2.0 -> 3.0 pull_requests: +27350 pull_request: https://github.com/python/cpython/pull/29082 ___ Python tracker <https://bugs.python.org/issu

[issue45436] test_tk.test_configure_type() fails with Tcl/Tk 8.6.11

2021-10-19 Thread Zachary Ware
Zachary Ware added the comment: New changeset 4fe454c6f54b0948af67b53af6c2f35af6377e69 by Zachary Ware in branch 'main': bpo-45436: Fix tkinter tests with Tcl/Tk 8.6.11+ (GH-29077) https://github.com/python/cpython/commit/4fe454c6f54b0948af67b53af6c2f35af6377e69

[issue45436] test_tk.test_configure_type() fails with Tcl/Tk 8.6.11

2021-10-19 Thread Zachary Ware
Zachary Ware added the comment: AFAICT, this is just a couple of tests that are testing something that's no longer an error, though anyone with deeper knowledge is more than welcome to disagree with my diagnosis :). I've posted PR29077 to fix the tests. Ned and Ɓukasz, will you want

[issue45436] test_tk.test_configure_type() fails with Tcl/Tk 8.6.11

2021-10-19 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +zach.ware nosy_count: 6.0 -> 7.0 pull_requests: +27346 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/29077 ___ Python tracker <https://bugs.python.org/i

[issue39293] Windows 10 64-bit needs reboot after install

2021-10-19 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> works for me stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue28584] ICC compiler check is too permissive

2021-10-19 Thread Zachary Ware
Change by Zachary Ware : -- versions: +Python 3.10, Python 3.11, Python 3.9 -Python 3.8 ___ Python tracker <https://bugs.python.org/issue28584> ___ ___ Python-bug

[issue20983] Python 3.4 'repair' Windows installation does not install pip & setuptools packages

2021-10-19 Thread Zachary Ware
Zachary Ware added the comment: The installer system for v3.4 and before has long since been retired. -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue10071] Should not release GIL while running RegEnumValue

2021-10-18 Thread Zachary Ware
Zachary Ware added the comment: With Steve's opposition and the fact that we've gotten along for 11 years since this issue was opened without it (and also without further reports of issues), I'm going to go ahead and close the issue. -- resolution: -> rejected stage: patch rev

[issue25934] ICC compiler: ICC treats denormal floating point numbers as 0.0

2021-10-18 Thread Zachary Ware
Zachary Ware added the comment: I no longer have access to ICC, and the ICC buildbots have been mothballed some years ago. Closing this as out of date; the issue might not be, but the information about it here probably is :) -- resolution: -> out of date stage: -> resolved

[issue26626] test_dbm_gnu

2021-10-18 Thread Zachary Ware
Zachary Ware added the comment: Judging by the error message ("Device or resource busy:"), it seems likely to me that NFS was the culprit here. The fact that the tests passed when run alone may point to an issue with the way tests were run as a group, but this has changed sig

[issue45481] gc is disabled without explict calling gc.disable()

2021-10-15 Thread Zachary Ware
Change by Zachary Ware : -- versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issue45481> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45437] Assignment to a list of dictionary wrong

2021-10-11 Thread Zachary Ware
Zachary Ware added the comment: See https://docs.python.org/3/faq/programming.html#how-do-i-create-a-multidimensional-list Not quite the same example, but the underlying reason for what you're seeing is the same: each of the `dict` objects in `[{}] * 4` is actually the *same* dict object

[issue45432] sys.argv is processed strangely under Windows

2021-10-11 Thread Zachary Ware
Zachary Ware added the comment: This is Windows behavior, not Python; ^ is an escape character in cmd.exe. Try for example `echo test ^| python -c "print('hello world')"` with and without the ^ character. -- resolution: -> not a bug stage: -> resolved status

[issue45393] help() on operator precedence has confusing entries "await" "x" and "not" "x"

2021-10-07 Thread Zachary Ware
Zachary Ware added the comment: Correct; 3.7 and 3.8 are both in security-fix-only maintenance mode; their documentation is no longer updated unless a security-related fix causes a significant change in behavior that needs to be documented. As far as fixing this issue, we have a few options

[issue45382] platform() is not able to detect windows 11

2021-10-05 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +eryksun ___ Python tracker <https://bugs.python.org/issue45382> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45229] Always use unittest for collecting tests in regrtests

2021-09-17 Thread Zachary Ware
Zachary Ware added the comment: See also bpo-16748 -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue45229> ___ ___ Python-bugs-list mailin

[issue45220] Windows builds sometimes fail on main branch

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

[issue15870] PyType_FromSpec should take metaclass as an argument

2021-09-15 Thread Zachary Ware
Change by Zachary Ware : Removed file: https://bugs.python.org/file50281/MicrosoftOnlineServicesTerms(WW)(English)(February2021)(CR).docx ___ Python tracker <https://bugs.python.org/issue15

[issue15870] PyType_FromSpec should take metaclass as an argument

2021-09-15 Thread Zachary Ware
Change by Zachary Ware : -- components: -2to3 (2.x to 3.x conversion tool), Argument Clinic, Build, C API, Cross-Build, Demos and Tools, Distutils, Documentation, Extension Modules, FreeBSD, IDLE, IO, Installation, Library (Lib), Parser, Regular Expressions, SSL, Subinterpreters

[issue45022] Update libffi to 3.4.2

2021-09-13 Thread Zachary Ware
Zachary Ware added the comment: The 3.8 branch has been updated to point to the `libffi-3.3.0` tag; you can either update to the latest revision of 3.8 or pull in just 8c3a10e58b12608c3759fee684e7aa399facae2a -- ___ Python tracker <ht

[issue45139] Docs: add source directive for minor translation simplification

2021-09-09 Thread Zachary Ware
Zachary Ware added the comment: Note that this is suggesting to introduce a `.. source` directive, not adjust the existing `:source:` role. There's nothing preventing the use of the existing pattern in special cases, while using the new directive in the common cases. I don't have context

[issue45079] 3.8.11 and 3.8.12 missing Windows artifacts, only tarballs - build system failed?

2021-09-01 Thread Zachary Ware
Zachary Ware added the comment: 3.8 is in security-only maintenance mode, which means we no longer provide binary installers for this version. If you need binary installers, we highly recommend updating to a version in bugfix maintenance mode, which currently means 3.9

[issue45076] open "r+" problem

2021-09-01 Thread Zachary Ware
Zachary Ware added the comment: Usage questions like this are better suited to the Users category at https://discuss.python.org/c/users/7 or the python-l...@python.org mailing list. The write is buffered. If you want it to be written before you read, add `f.flush()` after the write

[issue45071] python 3.9.2 contains _bz2.pyd associates CVE-2019-12900 and CVE-2016-3189 of bzip2-1.0.6

2021-08-31 Thread Zachary Ware
Zachary Ware added the comment: This is a duplicate of bpo-44549. For future reports, please first check for existing issues, and also ensure that you are looking at the latest release of the version you are reporting against. -- nosy: +zach.ware resolution: -> duplicate st

[issue45070] python 3.9.2 contains wininst-10.0-amd64.exe. wininst-10.0.exe.wininst-7.1.exe. wininst-8.0.exe.wininst-9.0.exe.wininst-9.0-amd64.exe.wininst-14.0-amd64.exe and wininst-14.0.exe associate

2021-08-31 Thread Zachary Ware
Zachary Ware added the comment: As noted in bpo-45068, these executables are helpers for deprecated functionality. It is safe to delete them if they concern you and you don't need the deprecated functionality. They will not be updated except to remove them. -- components

[issue45072] python 3.9.2 contains ensurepip and pip associates CVE-2021-3572 of pip-20.2.3

2021-08-31 Thread Zachary Ware
Zachary Ware added the comment: As noted in bpo-45068, v3.9.2 is out of date. v3.9.7 includes pip v21.2.3. -- nosy: +zach.ware resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bug

[issue45068] python 3.9.2 contains libcrypto-1_1.dll and libssl-1_1.dll associates CVE-2021-23840\CVE-2021-3450\CVE-2021-3711\CVE-2021-3712\CVE-2021-23841\CVE-2021-3449 of openssl-1.1.1i

2021-08-31 Thread Zachary Ware
Zachary Ware added the comment: v3.9.2 is rather out of date at this point; v3.9.7 was released just yesterday and includes OpenSSL v1.1.1l. If you're concerned about issues in the version of OpenSSL included with Python v3.9.2, you are encouraged to update to the latest v3.9.7, or replace

[issue33426] [doc] Behavior of os.path.join does not match documentation

2021-08-31 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue33426> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45051] wrote optimised async_test.py for async lib

2021-08-30 Thread Zachary Ware
New submission from Zachary Ware : Ayush, your PRs are starting to look like spam. Please slow down and ask for advice on what contributions would be welcome. We have several resources available for this, such as the core-mentors...@python.org mailing list, the discuss.python.org

[issue45037] theme-change.py for tkinter lib

2021-08-28 Thread Zachary Ware
Zachary Ware added the comment: I agree with Serhiy and Terry that this is not the right place for this example and am closing the issue. -- nosy: +zach.ware resolution: -> rejected stage: -> resolved status: open -> closed ___ Pytho

[issue45038] Bugs

2021-08-28 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg400479 ___ Python tracker <https://bugs.python.org/issue45038> ___ ___ Python-bugs-list m

[issue45038] Bugs

2021-08-28 Thread Zachary Ware
Zachary Ware added the comment: If you don't describe them, we can't fix them ;) This looks rather like an accidental submission, so I'm going to go ahead and close it; if you do have a report you would like to submit, please edit the title and add a new comment and I'll be happy to reopen

[issue44924] logging.handlers.QueueHandler does not maintain the exc_text

2021-08-16 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +vinay.sajip, zach.ware versions: -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue44

[issue44903] [Doc] How does one to about getting onto the "Other Graphical User Interface Packages" page?

2021-08-12 Thread Zachary Ware
Zachary Ware added the comment: I don't have the bandwidth to do so at the moment, but am willing to review one :) -- keywords: +easy, newcomer friendly stage: -> needs patch type: -> enhancement ___ Python tracker <https://bugs.p

[issue44903] [Doc] How does one to about getting onto the "Other Graphical User Interface Packages" page?

2021-08-12 Thread Zachary Ware
Zachary Ware added the comment: Frankly, we should probably just remove that page, or replace it with a generic "Many other GUI toolkits can be found on PyPI" message. -- nosy: +mdk, zach.ware versions: +Python 3.11 -Python 3.6, Python 3.7,

[issue33232] Segmentation fault in operator.attrgetter

2021-08-07 Thread Zachary Ware
Zachary Ware added the comment: 3.5 is now EOL, so this is definitely out of date :) -- stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.org/i

[issue44814] python 3.9.6 installation installs 0 modules

2021-08-02 Thread Zachary Ware
Zachary Ware added the comment: Posting just an image link makes this look like spam. Please copy and paste text showing your problem into a message instead. -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue44

[issue44762] getpass.getpass on Windows fallback detection is bad

2021-07-28 Thread Zachary Ware
Change by Zachary Ware : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware stage: -> needs patch versions: +Python 3.10, Python 3.11 ___ Python tracker <https://bugs.python.org/issu

[issue44765] Misspelled Word In Docs

2021-07-28 Thread Zachary Ware
Zachary Ware added the comment: This is at https://docs.python.org/3/library/http.server.html#http.server.BaseHTTPRequestHandler.handle_expect_100, which can be found in Doc/library/http.server.rst -- assignee: -> docs@python components: +Documentation keywords: +easy, newco

[issue42357] Wrong Availability for signal.SIGCHLD

2021-07-23 Thread Zachary Ware
Zachary Ware added the comment: You are correct, thanks for the ping Andrei. And thank you for the patch, Maiyun! -- nosy: +zach.ware resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8, P

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

2021-07-23 Thread Zachary Ware
Zachary Ware added the comment: The bundled version of libffi is no longer included in any version in bugfix support; closing this as out of date. As suggested in an earlier message, the libffi from your system should be used instead if you're building a version of Python that still

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

2021-07-23 Thread Zachary Ware
Change by Zachary Ware : -- pull_requests: -25844 ___ Python tracker <https://bugs.python.org/issue33063> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44634] Version is duplicated in name of app in list of installed apps

2021-07-21 Thread Zachary Ware
Zachary Ware added the comment: Agreed with Paul, it's more useful than confusing to have the version in the name. -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue44689] MacOS: Python binaries not portable between Catalina and Big Sur

2021-07-20 Thread Zachary Ware
Change by Zachary Ware : -- components: +macOS nosy: +ned.deily, ronaldoussoren ___ Python tracker <https://bugs.python.org/issue44689> ___ ___ Python-bugs-list m

[issue44670] bug on showing tuple on console

2021-07-18 Thread Zachary Ware
Zachary Ware added the comment: As Dennis said, this isn't a bug. Try printing `b` and `c` as well, and you'll find 3 and 4. -- nosy: +zach.ware resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracke

[issue44639] [sqlite3] Confusing typo "transation"

2021-07-14 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue44639> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44623] help(open('/dev/zero').writelines) gives no help

2021-07-13 Thread Zachary Ware
Change by Zachary Ware : -- versions: +Python 3.6 -Python 3.11 ___ Python tracker <https://bugs.python.org/issue44623> ___ ___ Python-bugs-list mailing list Unsub

[issue44623] help(open('/dev/zero').writelines) gives no help

2021-07-13 Thread Zachary Ware
Zachary Ware added the comment: Even with 3.6 I get a different result: ``` Python 3.6.13 (tags/v3.6.13:aa73e1722e, Mar 23 2021, 15:45:49) [GCC 9.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>>

[issue44623] help(open('/dev/zero').writelines) gives no help

2021-07-13 Thread Zachary Ware
Zachary Ware added the comment: I also can't reproduce this with a fresh build of 3b5b99da4b on Linux. -- nosy: +zach.ware resolution: -> works for me status: open -> pending ___ Python tracker <https://bugs.python.org/i

[issue44591] Added max heap push

2021-07-09 Thread Zachary Ware
Change by Zachary Ware : -- components: +Library (Lib) -Windows nosy: +rhettinger -zach.ware stage: -> patch review versions: +Python 3.11 -Python 3.9 ___ Python tracker <https://bugs.python.org/issu

[issue44575] Windows installer prohibits different patches for the same version

2021-07-08 Thread Zachary Ware
Change by Zachary Ware : -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue44575> ___ ___ Python-bugs-list

[issue44572] Calls to platform._syscmd_ver() dependent functions consume STDIN

2021-07-07 Thread Zachary Ware
Zachary Ware added the comment: You can make a PR entirely through the Github web interface, though we do generally encourage running the tests locally, especially since it would be good to add a new test for this case. -- ___ Python tracker

[issue44572] Calls to platform._syscmd_ver() dependent functions consume STDIN

2021-07-07 Thread Zachary Ware
Zachary Ware added the comment: The pull request you opened was invalid, because it was just trying to merge the `main` branch of the python/cpython repository into the `3.9` branch. What we need instead is a pull request between a branch from `main` in your own fork of python/cpython

[issue44572] Calls to platform._syscmd_ver() dependent functions consume STDIN

2021-07-06 Thread Zachary Ware
Zachary Ware added the comment: Would you like to create a pull request to that effect? -- components: -IO stage: -> needs patch versions: +Python 3.10, Python 3.11 ___ Python tracker <https://bugs.python.org/issu

[issue43346] subprocess.run() sometimes ignores timeout in Windows

2021-06-28 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +bugale bugale, eric.smith versions: +Python 3.11 ___ Python tracker <https://bugs.python.org/issue43346> ___ ___ Python-bug

[issue44507] Spam

2021-06-24 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg396511 ___ Python tracker <https://bugs.python.org/issue44507> ___ ___ Python-bugs-list m

[issue44507] Spam

2021-06-24 Thread Zachary Ware
Change by Zachary Ware : -- nosy: -Old Sub Sailor title: Favor needed ASAP -> Spam ___ Python tracker <https://bugs.python.org/issue44507> ___ ___ Python-

[issue39452] Improve the __main__ module documentation

2021-06-23 Thread Zachary Ware
Change by Zachary Ware : -- versions: -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue39452> ___ ___ Python-bugs-list mailin

[issue44485] TKinter docs page does not provide actual documentation

2021-06-22 Thread Zachary Ware
Zachary Ware added the comment: I'm closing this as a duplicate of bpo-42560 (and probably several others). Chris: in short, we know the Tkinter docs are incomplete and we welcome improvements to them, but it costs just as much to say "I don't have the time to spend on this"

[issue22782] Python 3.4.2 Windows installer - cannot install 32 bit then 64 bit version

2021-06-22 Thread Zachary Ware
Zachary Ware added the comment: Yes, this is out of date. -- resolution: -> out of date stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.or

[issue44478] I can't

2021-06-21 Thread Zachary Ware
Zachary Ware added the comment: This site is not a help forum, it is for tracking bugs in the implementation of the CPython reference interpreter. You'll have better luck somewhere like https://discuss.python.org/c/users/7, the python-l...@python.org mailing list, or the #python IRC

[issue44454] Spam

2021-06-18 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg396077 ___ Python tracker <https://bugs.python.org/issue44454> ___ ___ Python-bugs-list m

[issue44454] Spam

2021-06-18 Thread Zachary Ware
Change by Zachary Ware : -- nosy: -fixofflineprinters resolution: -> not a bug stage: -> resolved status: open -> closed title: How to find canon printer default wifi password -> Spam ___ Python tracker <https://bugs.python

[issue44444] Spam

2021-06-17 Thread Zachary Ware
Change by Zachary Ware : -- nosy: -zach.ware ___ Python tracker <https://bugs.python.org/issue4> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44444] Spam

2021-06-17 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg396003 ___ Python tracker <https://bugs.python.org/issue4> ___ ___ Python-bugs-list m

[issue44444] Spam

2021-06-17 Thread Zachary Ware
Zachary Ware added the comment: So disappointing that this issue number was taken by spam :( -- nosy: +zach.ware -fastwaytracking123 title: How can track and trace your parcel live? -> Spam ___ Python tracker <https://bugs.python.org/issu

[issue44429] Tkinter Flow Geometry Manager

2021-06-15 Thread Zachary Ware
Zachary Ware added the comment: Hi Gary. This sounds interesting. However, Tkinter generally tries to be a pretty thin wrapper around Tcl/Tk; is there something like this already in Tk that could be used instead, or existing discussion to add such to Tk? We certainly would not want

[issue44419] Wrong division calculation for numbers more than 16 digits

2021-06-14 Thread Zachary Ware
Zachary Ware added the comment: The `/` operator does true division, which means the result will be a `float` rather than an `int`. When the resultant float is large enough, precision will be lost. You can use the `//` operator for floor (integer) division, where the result will remain

[issue44352] Native Windows Python builds running on Europe/Moscow TZ report wrong time from datetime.datetime.now when there is TZ environment variable also set to Europe/Moscow

2021-06-09 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +belopolsky, p-ganssle ___ Python tracker <https://bugs.python.org/issue44352> ___ ___ Python-bugs-list mailing list Unsub

[issue44333] Segmentation fault

2021-06-07 Thread Zachary Ware
Zachary Ware added the comment: Your examples appear to use code from outside the standard library, some of which may include C code that will happily segfault your process well outside of Python's control. You'll need to reduce your problem to the smallest possible reproducer (100 lines

[issue44294] 3.9.5 Windows 64-bit installer says v3.8.10 in startup window.

2021-06-03 Thread Zachary Ware
Zachary Ware added the comment: I don't see anything that looks odd from your screenshots, so I'll go ahead and close it. Steve can leave a note here if there was actually something going weird on the server that he fixed. -- resolution: -> works for me stage: -> resolved

[issue44294] 3.9.5 Windows 64-bit installer says v3.8.10 in startup window.

2021-06-03 Thread Zachary Ware
Zachary Ware added the comment: I suspect one or more of your screenshots did not make it through submission (you can only attach one at a time), but are you quite certain you got things straight here? This is the first report we've had of this, and I'm quite sure there would have been

[issue44277] cpython forks are spammed with dependabot PRs

2021-06-02 Thread Zachary Ware
Zachary Ware added the comment: In that case, closing as third-party. -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue44277] cpython forks are spammed with dependabot PRs

2021-06-01 Thread Zachary Ware
Zachary Ware added the comment: This seems like a Dependabot bug; is there anything we can even do about it? -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue44

[issue44248] copy.deepcopy calls objdect's __deepcopy__ with incorrect argument

2021-05-27 Thread Zachary Ware
Zachary Ware added the comment: Actually, looking into the implementation a bit, I can say there is definitely no bug here. Line 153 basically works out to `y = x.__deepcopy__(memo)`, which is how the `__deepcopy__` method is documented[1] to be called. Calling `copier(x)` instead would

[issue44248] copy.deepcopy calls objdect's __deepcopy__ with incorrect argument

2021-05-27 Thread Zachary Ware
Zachary Ware added the comment: Do you have a short reproducer showing a behavioral bug here? That particular line of code hasn't changed in 19 years[1] :) [1] https://github.com/python/cpython/blame/main/Lib/copy.py#L153 -- nosy: +zach.ware

[issue44247] bpo stacktrace linkifier does not understand 3.10+

2021-05-27 Thread Zachary Ware
Zachary Ware added the comment: Could you open this at https://github.com/python/bugs.python.org please? -- nosy: +zach.ware resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker <https://bug

[issue44123] make function parameter sentinel value true singletons

2021-05-13 Thread Zachary Ware
Zachary Ware added the comment: FWIW, at work we've been using `...` as a handy not-None singleton. -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue44

[issue28708] Low FD_SETSIZE limit on Windows

2021-05-11 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg393447 ___ Python tracker <https://bugs.python.org/issue28708> ___ ___ Python-bugs-list m

[issue44103] Python 3.10 docs are visually broken

2021-05-10 Thread Zachary Ware
Zachary Ware added the comment: This is likely an artifact of the new version of the theme and browser caching issues; try a full reload (Ctrl + Shift + R in Firefox). See also https://github.com/python/python-docs-theme/issues/78; I'll close this as a duplicate of that issue

[issue44076] issue with list in Python 3.8.5

2021-05-10 Thread Zachary Ware
Zachary Ware added the comment: Given that 3.8 is in security-fix-only mode and that it's not clear that this is actually a Python bug, I'm closing the issue. If you can reproduce the issue in Python 3.9 with a short script, do please open a new issue (or reopen this one

[issue43804] "Building C and C++ Extensions on Windows" docs are very out-of-date

2021-05-10 Thread Zachary Ware
Zachary Ware added the comment: Since the removal of Rietveld from the tracker, it's not easy to review a patch as a patch file. Please open a PR instead. As I said on the first PR, and as William says above, I don't see any indication that your assertion that some commands are 32-bit only

[issue41730] Show deprecation warnings for tkinter.tix

2021-05-09 Thread Zachary Ware
Zachary Ware added the comment: Fixed in GH-26005 and GH-26006, which just revert the test. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue41730] Show deprecation warnings for tkinter.tix

2021-05-09 Thread Zachary Ware
Change by Zachary Ware : -- pull_requests: +24657 stage: resolved -> patch review pull_request: https://github.com/python/cpython/pull/26005 ___ Python tracker <https://bugs.python.org/issu

[issue40297] test_socket.CANTest is broken at HEAD on master

2021-05-06 Thread Zachary Ware
Change by Zachary Ware : -- pull_requests: +24619 pull_request: https://github.com/python/cpython/pull/25960 ___ Python tracker <https://bugs.python.org/issue40

[issue40297] test_socket.CANTest is broken at HEAD on master

2021-05-06 Thread Zachary Ware
Change by Zachary Ware : -- versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue40297> ___ ___ Python-bugs-list mailing list Unsub

[issue40297] test_socket.CANTest is broken at HEAD on master

2021-05-04 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the thoroughly researched patch and your patience! Sorry it took so long to get it merged. -- nosy: +zach.ware resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Py

[issue43710] Access violations in C extension modules on Python 3.9.3

2021-04-30 Thread Zachary Ware
Change by Zachary Ware : Removed file: https://bugs.python.org/file49966/logs.gz ___ Python tracker <https://bugs.python.org/issue43710> ___ ___ Python-bugs-list mailin

[issue43710] Access violations in C extension modules on Python 3.9.3

2021-04-30 Thread Zachary Ware
Change by Zachary Ware : Removed file: https://bugs.python.org/file50002/Screenshot_20210426-104915_Lucknow Public School.jpg ___ Python tracker <https://bugs.python.org/issue43

[issue14243] tempfile.NamedTemporaryFile not particularly useful on Windows

2021-04-30 Thread Zachary Ware
Zachary Ware added the comment: > if NamedTemporaryFile is used as a context manager, the file is closed *on > context manager exit* and *not* when the file is closed. +1 -- ___ Python tracker <https://bugs.python.org/i

[issue43924] print unexpected values in infinite loop

2021-04-23 Thread Zachary Ware
New submission from Zachary Ware : Without a description, it is impossible to tell what you're trying to report. You'll need to provide some details, such as what you're trying to do, what you expected to happen, what actually happened, and how you ran the code to get that result. As is, I

[issue43804] "Building C and C++ Extensions on Windows" docs are very out-of-date

2021-04-22 Thread Zachary Ware
Change by Zachary Ware : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden stage: patch review -> needs patch title: Add more info about building C/C++ Extensions on Windows using MSVC -> "Building C and C++ Extensions on Windows" docs are very out-

[issue43804] Add more info about building C/C++ Extensions on Windows using MSVC

2021-04-22 Thread Zachary Ware
Zachary Ware added the comment: Please have some patience. Constant requests for review or pings are frankly quite annoying. Everyone on this project is a volunteer, and as such things only get done when someone has the time and inclination to do them. If your issue/PR has sat idle

[issue43900] string comprehension

2021-04-20 Thread Zachary Ware
Zachary Ware added the comment: filtered_s = ''.join(c for c in s if c in string.ascii_lowercase) -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue43

[issue43627] What are the requirements for a test_sundry-testable script in Tools/scripts?

2021-04-15 Thread Zachary Ware
Zachary Ware added the comment: `test_sundry` just checks to see if the script is importable, so if your script runs on import it may very well cause problems :). Adding it to a skip list is a reasonable solution, as is making the script import-friendly (e.g. with a `if __name__

[issue43782] Failure to build from source on ppc64le on ubuntu xenial

2021-04-15 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> third party status: open -> pending ___ Python tracker <https://bugs.python.org/issue43782> ___ ___ Python-bugs-

[issue43837] Operator precedence documentation could be more clear

2021-04-14 Thread Zachary Ware
Zachary Ware added the comment: I think it might be easiest to see your suggestion as a pull request :) -- nosy: +zach.ware ___ Python tracker <https://bugs.python.org/issue43

[issue43782] Failure to build from source on ppc64le on ubuntu xenial

2021-04-08 Thread Zachary Ware
Zachary Ware added the comment: The error message certainly looks more like a compiler bug than a Python bug. FTR, we also have several builders on buildbot.python.org [1] running Fedora or RHEL on PPC64LE, none of which appear to have a problem. [1] https://buildbot.python.org/all

[issue43736] asyncio create_task() odd behavior

2021-04-05 Thread Zachary Ware
Zachary Ware added the comment: You missed something :) By immediately awaiting the result of `create_task`, you're synchronizing thing. It's the same as just rearranging the lines of the first example to: t0 = create_task(task("T0", 10)) print("starting tasks ..

<    1   2   3   4   5   6   7   8   9   10   >