[issue35640] Allow passing PathLike arguments to SimpleHTTPRequestHandler

2019-09-11 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.9 -Python 3.7 ___ Python tracker <https://bugs.python.or

[issue38054] enhance pdb.set_trace() to run when the specified condition is true

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: I was actually leaning in favor of this, but Jason's examples are very compelling and require no changes to other `breakpoint()`-compatible debuggers to work as expected. Thanks for the idea, though! -- nosy: +zach.ware resolution: -> reject

[issue38111] Error while building Python from source

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: Could you add some more details about what you're doing here, such as OS, OS version, compiler and compiler version, etc.? We routinely test `--enable-shared` builds on both Linux and FreeBSD in our post-merge buildbot setup, and have not had any issues

[issue36634] venv: activate.bat fails for venv with parentheses in PATH

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: New changeset 574b324bdc9a126b5a4488c3613f11ad2555415e by Zachary Ware (Steve Dower) in branch 'master': bpo-36634: Fixes activate.bat when existing values contain double quotes (GH-15924) https://github.com/python/cpyt

[issue38111] Error while building Python from source

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: I believe the better option would be to pass `CPPFLAGS=-I/home/e38160wl/local/openssl/include LDFLAGS=-L/home/e38160wl/local/openssl/lib` instead of editing Setup[.dist]. Could you give that a try? Otherwise, this may be an issue with the way OpenSSL was

[issue33166] os.cpu_count() returns wrong number of processors on specific systems

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: New changeset aa929273caca2f4e24e3aa9e790272fd4458ad35 by Zachary Ware (Steve Dower) in branch 'master': bpo-33166: Change os.cpu_count to return active (real) processors (GH-15949) https://github.com/python/cpyt

[issue38114] Exclude pip.ini from Nuget package

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: New changeset 19f6940cd7fb91246b88e1fbdbce97a02e7f3fa1 by Zachary Ware (Steve Dower) in branch 'master': bpo-38114: Do not include pip.ini in Nuget package (GH-15964) https://github.com/python/cpython/commit/19f6940cd7fb91246b88e1fbdbce97

[issue33166] os.cpu_count() returns wrong number of processors on specific systems

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: Thank you for clarifying this muddy topic, Eryk! (Dropping bpo-32592 dependency; we've done the update in a basically-compatible way.) -- dependencies: -Drop support of Windows Vista and 7 in Python 3.9 resolution: -> fixed stage: patc

[issue32592] Drop support of Windows Vista and 7 in Python 3.9

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: New changeset 0b72ccff56fb47e14f7b1f6590eafff8d104c229 by Zachary Ware (Steve Dower) in branch 'master': bpo-32592: Set Windows 8 as the minimum required version for API support (GH-15951) https://github.com/python/cpyt

[issue38111] Error while building Python from source

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: Ok, that shows that the issue is not actually with the Python build, but with trying to find the right incantation for both OpenSSL and Python to get what you want :). As such I'm going to go ahead and close the issue. As for getting you going, there

[issue34709] Suggestion: make getuser.getpass() also look at SUDO_USER environment variable

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: I agree with Steven in that I'm not quite sure this is a good change, but I also see that it would be useful in some cases. Perhaps either a `check_sudo_user=False` keyword-only parameter, or a `vars_to_check=()` parameter would be better? Adding Greg

[issue35282] Add a return value to lib2to3.refactor.refactor_file and refactor_dir

2019-09-11 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +benjamin.peterson, zach.ware versions: +Python 3.9 -Python 3.8 ___ Python tracker <https://bugs.python.org/issue35282> ___ ___

[issue38129] Spam

2019-09-12 Thread Zachary Ware
Change by Zachary Ware : -- components: -Distutils nosy: -dstufft, eric.araujo, situsjudionlineterpercaya type: compile error -> versions: -Python 3.6 ___ Python tracker <https://bugs.python.org/issu

[issue32820] Add __format__ method to ipaddress

2019-09-12 Thread Zachary Ware
Zachary Ware added the comment: New changeset f9c95a4ba24c52eb1c052e3052d677e90a429a9a by Zachary Ware (ewosborne) in branch 'master': bpo-32820: __format__ method for ipaddress (#5627) https://github.com/python/cpython/commit/f9c95a4ba24c52eb1c052e3052d677e90a429a9a -

[issue32820] Add and document __format__ method for IPv[46]Address

2019-09-12 Thread Zachary Ware
Zachary Ware added the comment: The enhancement patch is merged, but it occurs to me after the fact that this could use some documentation, and possibly a mention in whatsnew. I'll leave this open as a documentation issue. -- assignee: -> docs@python components: +Docum

[issue38123] Unable to find Python3.8.0b4 on Ubuntu 19004 desktop

2019-09-12 Thread Zachary Ware
Zachary Ware added the comment: If calling /usr/local/bin/python3.8 directly works as expected, there's nothing for us to do here so I'm going to go ahead and close the issue. Please reopen if you can demonstrate a real bug in the installation code, though! -- nosy:

[issue38205] Python no longer compiles without small integer singletons

2019-09-18 Thread Zachary Ware
Zachary Ware added the comment: Whoops :(. Fixing this is beyond my C skill. I'd rather not lose the easter egg, but if it can't be fixed properly then 3ab61473ba7f3dca32d779ec2766a4faa0657923 should just be reverted. -- nosy: +grego

[issue38205] Python no longer compiles without small integer singletons

2019-09-18 Thread Zachary Ware
Zachary Ware added the comment: I have poked at this a bit and have an implementation that defines a `static inline void _Py_Unreachable()` in pymacro.h, see https://github.com/zware/cpython/commit/d07b4255dc1170155e18db0fea99ec1cb29c2f0a This works on at least macOS and Windows, and we

[issue38225] iscoroutinefunction broken with cython - allow tagging of functions as async?

2019-09-19 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +scoder versions: -Python 2.7, Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue38225> ___ ___ Pytho

[issue37353] Source code has not always been forward-compatible

2019-09-20 Thread Zachary Ware
Zachary Ware added the comment: New changeset 062cfe3b11c61d03ccc2915e360f9b0d80e23642 by Zachary Ware (Prateek Nayak) in branch 'master': bpo-37353: Updated parser note about source code compatibility(GH-14277) https://github.com/python/cpyt

[issue37353] Source code has not always been forward-compatible

2019-09-20 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.or

[issue38313] Crash/No start

2019-09-29 Thread Zachary Ware
Zachary Ware added the comment: Sorry, but you've given us no information to work with here. Which version of Python? Which version of Windows? What exactly are you trying to do? What error message do you get? Which distribution of Python are you using? How did you install it?

[issue38313] Crash/No start

2019-10-01 Thread Zachary Ware
Zachary Ware added the comment: Feel free to reopen if you can answer the questions in my previous message. -- resolution: -> works for me stage: -> resolved status: pending -> closed ___ Python tracker <https://bugs.python.or

[issue32545] Unable to install Python 3.7.0a4 on Windows 10 - Error 0x80070643: Failed to install MSI package.

2019-10-03 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg353882 ___ Python tracker <https://bugs.python.org/issue32545> ___ ___ Python-bugs-list m

[issue32545] Unable to install Python 3.7.0a4 on Windows 10 - Error 0x80070643: Failed to install MSI package.

2019-10-03 Thread Zachary Ware
Change by Zachary Ware : -- hgrepos: -383 ___ Python tracker <https://bugs.python.org/issue32545> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32545] Unable to install Python 3.7.0a4 on Windows 10 - Error 0x80070643: Failed to install MSI package.

2019-10-03 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg345856 ___ Python tracker <https://bugs.python.org/issue32545> ___ ___ Python-bugs-list m

[issue32545] Unable to install Python 3.7.0a4 on Windows 10 - Error 0x80070643: Failed to install MSI package.

2019-10-03 Thread Zachary Ware
Zachary Ware added the comment: This issue seems to have become a spam magnet, so I'm clearing the nosy list to keep it out of our inboxes. -- ___ Python tracker <https://bugs.python.org/is

[issue32545] Unable to install Python 3.7.0a4 on Windows 10 - Error 0x80070643: Failed to install MSI package.

2019-10-03 Thread Zachary Ware
Change by Zachary Ware : -- nosy: -Printer Setup, jacksmait, prince_parker ___ Python tracker <https://bugs.python.org/issue32545> ___ ___ Python-bugs-list m

[issue32545] Unable to install Python 3.7.0a4 on Windows 10 - Error 0x80070643: Failed to install MSI package.

2019-10-03 Thread Zachary Ware
Change by Zachary Ware : -- nosy: -Amin Radjabov, chipstuff, emniclap, mwr256, paul.moore, steve.dower, taleinat, terry.reedy, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue32

[issue38398] PyUnicode functions are not exported by python 2 in Ubuntu

2019-10-07 Thread Zachary Ware
Zachary Ware added the comment: Given that 2.7 is reaching end-of-life in a single-digit number of months, I doubt anything will be changed here. I'll leave it up to Benjamin to make that determination, though. -- nosy: +benjamin.peterson, zach

[issue34957] Segementation faults on ARM and ARM64

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

[issue38409] Typo in doc string for str.strip

2019-10-09 Thread Zachary Ware
Change by Zachary Ware : -- pull_requests: +16268 pull_request: https://github.com/python/cpython/pull/16682 ___ Python tracker <https://bugs.python.org/issue38

[issue38409] Typo in doc string for str.strip

2019-10-09 Thread Zachary Ware
Zachary Ware added the comment: New changeset 09895c27cd8ff60563a794016e8c099bc897cc74 by Zachary Ware in branch 'master': bpo-38409: Fix grammar in str.strip() docstring (GH-16682) https://github.com/python/cpython/commit/09895c27cd8ff60563a794016e8c099bc897cc74 -

[issue38409] Typo in doc string for str.strip

2019-10-09 Thread Zachary Ware
Change by Zachary Ware : -- pull_requests: +16272 pull_request: https://github.com/python/cpython/pull/16686 ___ Python tracker <https://bugs.python.org/issue38

[issue38409] Typo in doc string for str.strip

2019-10-09 Thread Zachary Ware
Zachary Ware added the comment: New changeset 0baa6b3c7d9ef1d96f10939c40f8ff95aba9155b by Zachary Ware (Miss Islington (bot)) in branch '3.8': bpo-38409: Fix grammar in str.strip() docstring (GH-16682) (GH-16684) https://github.com/python/cpyt

[issue38409] Typo in doc string for str.strip

2019-10-09 Thread Zachary Ware
Zachary Ware added the comment: New changeset a774ac6637e8f155a28b7733a0a93d4a680584d4 by Zachary Ware in branch '3.7': [3.7] bpo-38409: Fix grammar in str.strip() docstring (GH-16682) (GH-16686) https://github.com/python/cpython/commit/a774ac6637e8f155a28b7733a0a93d

[issue38409] Typo in doc string for str.strip

2019-10-09 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the report, Bob! -- keywords: -newcomer friendly resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8, Python 3.9 ___ Python tracker <https://bug

[issue38452] unittest setUpClass missing 1 required positional argument: 'cls'

2019-10-11 Thread Zachary Ware
Zachary Ware added the comment: `setUpClass` and `tearDownClass` are classmethods and must be decorated as such (`@classmethod`). -- nosy: +zach.ware resolution: -> not a bug status: open -> pending ___ Python tracker <https://bugs.p

[issue35297] untokenize documentation is not correct

2019-10-16 Thread Zachary McCord
Zachary McCord added the comment: I think anyone using the tokenize module to programmatically edit python source wants to use and probably does use the undocumented behavior, which should then be documented. I ran into this issue because for me this manifested as a crash: $ python3

[issue38433] 2.7.17rc1 tcl/tk version regression on Windows

2019-10-18 Thread Zachary Ware
Zachary Ware added the comment: Since 8.5.19 is the version specified in the build config, that really ought to be the version we ship. I would guess that it just didn't get rebuilt when Steve built the installer for 2.7.17rc1; should just be a matter of making sure it does for the

[issue38537] 2.7 on Windows: all-users installation does not clear previous just-for-me installation

2019-10-21 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> wont fix stage: -> resolved status: open -> closed title: Python 2.7.17 reports itself as 2.7.16 -> 2.7 on Windows: all-users installation does not clear previous just-for-me installation __

[issue38568] [3.7.5 x86_64 Linux] f-string parsing results in EOL

2019-10-23 Thread Zachary Ware
Zachary Ware added the comment: This is because you're trying to use the string's delimiting character (') in the string itself, which won't work for fairly apparent reasons :). Try removing the `f` prefix and see what happens. You can get around this by using a triple

[issue38558] Data Structures documentation out of sync with new Walrus operator

2019-10-25 Thread Zachary Ware
Zachary Ware added the comment: New changeset cb2cf06b0aad1851f54999497c1b50c381d1fdd8 by Zachary Ware (Ammar Askar) in branch 'master': bpo-38558: Mention `:=` in conditions tutorial (GH-16919) https://github.com/python/cpython/commit/cb2cf06b0aad1851f54999497c1b50

[issue38475] Break Statement

2019-11-04 Thread Zachary Ware
Zachary Ware added the comment: Absent any response from the OP, I'm going to go with yes. Devor, if you can reduce your example to show a bug in the Python interpreter or standard library, please reopen with that example. -- resolution: -> not a bug stage: -> reso

[issue38704] No `GetActiveProcessorCount` on Windows Vista

2019-11-05 Thread Zachary Ware
Zachary Ware added the comment: Added our 3.8 RM to adjust the download page. Steve, can or should we adjust the installer to refuse to install on Vista? Is there other documentation we need to adjust? -- components: +Installation, Windows nosy: +lukasz.langa, paul.moore

[issue38696] HTTP modules documentation error

2019-11-05 Thread Zachary Ware
Zachary Ware added the comment: New changeset 56698d57691af2272f695f8c17c835ed99545cde by Zachary Ware (Ammar Askar) in branch 'master': bpo-38696: Fix usage example of HTTPStatus (GH-17066) https://github.com/python/cpython/commit/56698d57691af2272f695f8c17c835ed99545cde -

[issue38696] HTTP modules documentation error

2019-11-06 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the report, Stojan, and for the patch, Ammar! -- nosy: +ammar2 resolution: -> fixed stage: patch review -> resolved status: open -> closed type: resource usage -> behavior versions: +Python 3.7

[issue43484] we can create valid datetime objects that become invalid if the timezone is changed

2021-03-12 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +belopolsky, lemburg, p-ganssle ___ Python tracker <https://bugs.python.org/issue43484> ___ ___ Python-bugs-list mailin

[issue43485] Spam

2021-03-12 Thread Zachary Ware
New submission from Zachary Ware : You appear to be just creating spam, so I've removed your ability to make any changes to bugs.python.org. If you feel this was done in error, please bring it up on discuss.python.org. -- assignee: docs@python -> components: -2to3 (2.

[issue43485] Spam

2021-03-12 Thread Zachary Ware
Change by Zachary Ware : -- hgrepos: -399 ___ Python tracker <https://bugs.python.org/issue43485> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43485] Spam

2021-03-12 Thread Zachary Ware
Change by Zachary Ware : -- hgrepos: -400 ___ Python tracker <https://bugs.python.org/issue43485> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19217] Calling assertEquals for moderately long list takes too long

2021-03-12 Thread Zachary Ware
Change by Zachary Ware : -- hgrepos: -401 ___ Python tracker <https://bugs.python.org/issue19217> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43543] stupid download

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

[issue43543] Spam

2021-03-18 Thread Zachary Ware
Change by Zachary Ware : -- components: -C API nosy: -yotabestww title: stupid download -> Spam type: resource usage -> ___ Python tracker <https://bugs.python.org/i

[issue43567] regen.vcxproj cannot regenerate some necessary files

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

[issue43700] Replace Zulip badge with Discourse badge in README

2021-04-01 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the patch! -- nosy: +zach.ware resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10, Python 3.8, Python 3.9 ___ Python tracker <https://bug

[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("startin

[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

[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-15 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> third party status: open -> pending ___ Python tracker <https://bugs.python.org/issue43782> ___ ___ Python-bugs-

[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__

[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.o

[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 for a

[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-

[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 re

[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

[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

[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

[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-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

[issue41730] Show deprecation warnings for tkinter.tix

2021-05-08 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

[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

[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 3

[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

[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

[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

[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/is

[issue44135] issubclass documentation doesn't explain tuple semantic

2021-05-17 Thread Zachary Kneupper
Change by Zachary Kneupper : -- keywords: +patch nosy: +zkneupper nosy_count: 3.0 -> 4.0 pull_requests: +24810 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26193 ___ Python tracker <https://bugs.python.org/i

[issue30274] Rename 'name' to 'fullname' argument to ExtensionFileLoader

2021-05-17 Thread Zachary Kneupper
Change by Zachary Kneupper : -- keywords: +patch nosy: +zkneupper nosy_count: 4.0 -> 5.0 pull_requests: +24812 pull_request: https://github.com/python/cpython/pull/26195 ___ Python tracker <https://bugs.python.org/issu

[issue44151] Improve parameter names and return value ordering for linear_regression

2021-05-17 Thread Zachary Kneupper
Change by Zachary Kneupper : -- keywords: +patch nosy: +zkneupper nosy_count: 5.0 -> 6.0 pull_requests: +24816 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26199 ___ Python tracker <https://bugs.python.org/i

[issue44151] Improve parameter names and return value ordering for linear_regression

2021-05-17 Thread Zachary Kneupper
Zachary Kneupper added the comment: > The ML world has collapsed on the terms X and y. (With that > capitalization). The ML community will probably use 3rd party packages for their linear regressions in any case. In my estimation, the ML community would be comfortable with any of

[issue37439] Add random.binomialvariate()

2021-05-18 Thread Zachary Kneupper
Zachary Kneupper added the comment: Is adding random.binomialvariate() still under consideration? I would be willing to work on this addition to Lib/random.py, as well as the accompanying tests and docs. Should I use the type of algorithm hinted at by Mark on 2019-07-01 17:56

[issue44151] Improve parameter names and return value ordering for linear_regression

2021-05-18 Thread Zachary Kneupper
Zachary Kneupper added the comment: > Any objections to linear_regression(x, y) -> (slope, intercept)? I think `linear_regression(x, y)` would be intuitive for a wide range of users. Just to clarify, is the proposal to return a regular tuple instead of named tuple? Would we d

[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

[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

[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

[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

[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

[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 h

[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: ->

[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

[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

[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 as

[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 to

[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

[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
Change by Zachary Ware : -- nosy: -zach.ware ___ Python tracker <https://bugs.python.org/issue4> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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

[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

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