[issue40558] update CONTRIBUTING.rst docs

2020-05-25 Thread Zachary Ware
Zachary Ware added the comment: New changeset 2377a9bae3f698efaa81ff0426d0feb14c9f6329 by Hai Shi in branch 'master': Closes bpo-40558: update CONTRIBUTING.rst to reflect current branches (GH-19989) https://github.com/python/cpython/commit/2377a9bae3f698efaa81ff0426d0fe

[issue40754] ModuleNotFoundError: No module named '_testinternalcapi' under Win10

2020-05-25 Thread Zachary Ware
Zachary Ware added the comment: At a guess, it looks like we're not including that module in the Windows installer. And indeed, it looks like it's left out of Tools/msi/test/test_files.wxs if you would like to provide a PR :) On the other hand, I'm not sure that test

[issue40761] unittest.TestCase.assertTrue return True even if the expr is False

2020-05-25 Thread Zachary Ware
Zachary Ware added the comment: `unittest.TestCase.assertTrue` is simple enough (the entire implementation is copied below) that there is almost no way for it to fail to raise some kind of exception when its first argument is not truthy: def assertTrue(self, expr, msg=None

[issue40558] update CONTRIBUTING.rst docs

2020-05-25 Thread Zachary Ware
Zachary Ware added the comment: The very tiny disk on buildbot.python.org had filled up; its had some space cleared and is now working again. -- ___ Python tracker <https://bugs.python.org/issue40

[issue40791] hmac.compare_digest could try harder to be constant-time.

2020-05-27 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +christian.heimes, gregory.p.smith ___ Python tracker <https://bugs.python.org/issue40791> ___ ___ Python-bugs-list mailin

[issue40801] Expose PyFloat_ToDouble at Python level: operator.as_float?

2020-05-28 Thread Zachary Ware
Zachary Ware added the comment: `operator` seems a slightly odd place for this. My naive expectation would be that `float(floatlike_obj)` should do what you want, but it seems that's not the case (too permissive of input types?). So then, what about an alternate constructor on the

[issue40813] Output SyntaxError is not defective

2020-05-29 Thread Zachary Ware
Zachary Ware added the comment: Without some example code, there's no way to really tell what's going on here. In particular, it's suspicious that you're expecting an error on line 7 but seeing one on line 3. Can you attach your `main.py` file to the issue? -

[issue40813] Output SyntaxError is not defective

2020-05-29 Thread Zachary Ware
Change by Zachary Ware : -- type: compile error -> behavior ___ Python tracker <https://bugs.python.org/issue40813> ___ ___ Python-bugs-list mailing list Un

[issue40314] python code order of magnitude faster than equivalent CPython code for simple import statement

2020-06-06 Thread Zachary Ware
Zachary Ware added the comment: I've finally had a chance to try to reproduce this myself, and did. However, a subsequent run of `test.exe` showed exactly the same timing as the Python test, and even another attempt after removing and re-installing tensorflow showed comparable timi

[issue40914] tarfile creates output that appears to omit files

2020-06-08 Thread Zachary Ware
Zachary Ware added the comment: Note that `TarFile.getmembers()` is documented to return `TarInfo` objects, which are documented as explicitly *not* including file data. Try replacing `out.addfile(file)` with `out.addfile(file, tar.extractfile(file))`. -- nosy: +zach.ware

[issue40940] How to update pip permanently for new venv?

2020-06-10 Thread Zachary Ware
Change by Zachary Ware : -- components: +Library (Lib) -asyncio nosy: +vinay.sajip -asvetlov, yselivanov ___ Python tracker <https://bugs.python.org/issue40

[issue40914] tarfile creates output that appears to omit files

2020-06-15 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue40914> ___ ___

[issue41030] Provide toList() method on iterators/generators (`list()` is a flow killer in REPL)

2020-06-19 Thread Zachary Ware
Zachary Ware added the comment: Hi Julien, Thanks for the suggestion, but I agree with Ammar and Remi that this is not likely to either be easily doable or actually help your case. This would also be a big enough change to likely need a PEP. If you still want to pursue this I would

[issue41243] SPAM

2020-07-08 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg373315 ___ Python tracker <https://bugs.python.org/issue41243> ___ ___ Python-bugs-list m

[issue41243] SPAM

2020-07-08 Thread Zachary Ware
Change by Zachary Ware : -- components: -Interpreter Core nosy: -Deon257 versions: -Python 3.7 ___ Python tracker <https://bugs.python.org/issue41243> ___ ___

[issue41244] Change to use str.join() instead of += when concatenating string

2020-07-08 Thread Zachary Ware
Zachary Ware added the comment: That is not performance-critical code, and in that case it is clearer to use `+=` than str.join. Closing the issue; Andrew or Yury can of course reopen it if they disagree with my assessment. -- nosy: +zach.ware resolution: -> wont fix stage: pa

[issue41322] unittest: Generator test methods will always be marked as passed

2020-07-17 Thread Zachary Ware
Zachary Ware added the comment: In the same vein as Serhiy's suggestion, I would like to see unittest raise a DeprecationWarning when a test method returns anything other than `None`, and eventually switch that to an error (probably TypeError or ValueError). -- nosy: +zach

[issue41526] Python 3.9.0rc1 "setup successful" dialog box overflow

2020-08-11 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

[issue41529] Unable to compile 3.0b3 on Ubuntu systems: Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding

2020-08-12 Thread Zachary Ware
Zachary Ware added the comment: Can you reproduce this with the current release (3.9.0rc1)? Also, how did you call `./configure` and `make`? Adding Ɓukasz so this is on his radar in case the first answer is affirmative and there's nothing exotic in the second. For the record, I

[issue41701] Buildbot web page: connection lost after 1 minute, then display "Connection restored" popup

2020-09-03 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +EWDurbin ___ Python tracker <https://bugs.python.org/issue41701> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41712] REDoS in purge

2020-09-04 Thread Zachary Ware
Zachary Ware added the comment: Does it matter? This is not a library, it is a script used occasionally by a release manager, called manually, and the only input to the regex is provided via a command-line argument in that manual call. I don't think Steve plans to REDoS hi

[issue40562] SEO: differentiate between Python 2 and Python 3 docs on Google SERP

2020-09-08 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg376478 ___ Python tracker <https://bugs.python.org/issue40562> ___ ___ Python-bugs-list m

[issue40562] SEO: differentiate between Python 2 and Python 3 docs on Google SERP

2020-09-08 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg371208 ___ Python tracker <https://bugs.python.org/issue40562> ___ ___ Python-bugs-list m

[issue37575] Python Documentation on strings (tutorial section 3.1.2.)

2020-09-18 Thread Zachary Ware
Change by Zachary Ware : -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue37575> ___ ___ Python-bugs-list

[issue42024] Exception ignored in: .remove at 0x7f6a325f2ea0>

2020-10-13 Thread Zachary Ware
Zachary Ware added the comment: Python 3.5 is now at end-of-life as of September 5, 2020 with the release of 3.5.10, and will not be receiving any more changes. 3.5.4 itself has been obsolete since 3.5.5 was released in February 2018. You'll need to update to at least Python 3.8.6 (

[issue42032] Setting PYTHONPYCACHEPREFIX using ~ (tilde) creates a "~" folder

2020-10-14 Thread Zachary Ware
Zachary Ware added the comment: AFAIK, tilde expansion is entirely up to your shell rather than Python (unless you use something like `os.path.expanduser` in your own program). A few debugging questions: 1) What version of what shell(s) do you have on each system? 2) What value do you get

[issue42024] Exception ignored in: .remove at 0x7f6a325f2ea0>

2020-10-14 Thread Zachary Ware
Zachary Ware added the comment: Unfortunately, no guarantees that upgrading will fix things for you. However, there's nothing we can do here until you can show that the issue still exists in a supported version of Python. -- ___ Python tr

[issue42024] Exception ignored in: .remove at 0x7f6a325f2ea0>

2020-10-14 Thread Zachary Ware
Zachary Ware added the comment: As mentioned in my first message, Python 3.5.4 has been out of support for over 2.5 years now, and 3.5 as a whole has been out of support for a month now. You'll need to show the problem using Python 3.8.6 or 3.9.0 for anything to be done about it

[issue34716] MagicMock.__divmod__ should return a pair

2020-10-19 Thread Zachary Ware
Change by Zachary Ware : -- versions: +Python 3.10 -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue34716> ___ ___ Python-bug

[issue42120] Depreciated MACRO of copysign for MSVC

2020-10-22 Thread Zachary Ware
Change by Zachary Ware : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue42

[issue42024] Exception ignored in: .remove at 0x7f6a325f2ea0>

2020-10-28 Thread Zachary Ware
Change by Zachary Ware : -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue42024> ___ ___ Python-bugs-list

[issue42179] Clarify chaining exceptions in tutorial/errors.rst

2020-11-05 Thread Zachary Ware
Change by Zachary Ware : Removed file: https://bugs.python.org/file49575/Cellular-Z 20200909 14:25:47 SLOT1.CSV ___ Python tracker <https://bugs.python.org/issue42

[issue42279] replacements function corrupts file

2020-11-06 Thread Zachary Ware
Zachary Ware added the comment: That's because you're writing an output line once per replacement rather than once per input line. For usage questions such as this, you'll be better off on a forum such as discuss.python.org, the python-l...@python.org mailing list, or the

[issue42279] replacements function corrupts file

2020-11-06 Thread Zachary Ware
Change by Zachary Ware : -- components: -IDLE ___ Python tracker <https://bugs.python.org/issue42279> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42289] Found a secret/private key in code.

2020-11-08 Thread Zachary Ware
Zachary Ware added the comment: That commit does not appear to be part of any branch of the main repository, and also appears to contain non-changes to every file in the repository. There are known private keys somewhere in Lib/test for use in tests. If you're referring to something

[issue42313] rstrip removes the trailing `e`s.

2020-11-10 Thread Zachary Ware
Zachary Ware added the comment: See https://docs.python.org/3/library/stdtypes.html#str.rstrip The `{l,r,}strip` methods remove all characters contained in the passed-in string; `"aabbccddeeffgg".rstrip("gfe") == "aabbccdd"` -- nosy: +zach.ware r

[issue41818] Lib/pty.py major revision

2020-11-25 Thread Zachary Ware
Zachary Ware added the comment: Moving my notes from PR23514 to here, the issue that that PR addressed is not Gentoo-specific; here's a simple reproducer on Ubuntu: ./python -c "import pty;pty.spawn('./python -m test -v

[issue14495] Minor typo in tkinter.ttk.Treeview.exists docstring

2012-04-04 Thread Zachary Ware
New submission from Zachary Ware : I found a very very minor typo in the docstring of tkinter.ttk.Treeview.exists: "Returns True if the specified item is present in the *three*" I assume that should be "tree". The attached patch removes the "h". Thanks! --Not

[issue14511] _static/opensearch.xml for Python 3.2 docs directs searches to 3.3 docs

2012-04-05 Thread Zachary Ware
New submission from Zachary Ware : Adding the search plugin for the 3.2 docs to Firefox and then searching from it returns results from the 3.3 dev docs, despite everything saying it should be for searching "Python v3.2.2 documentation". If my understanding of how it all works is co

[issue37043] Buildbots fail when new files are added

2019-05-25 Thread Zachary Ware
Zachary Ware added the comment: The issue here is not with buildbots, but with installation on POSIX platforms. We do now have a couple of buildbots that install Python to a local location before running the tests, which is what flushes this out (see https://github.com/python/buildmaster

[issue37101] Filterer.filter can be rewritten using built-ins just as efficient much more readable

2019-05-30 Thread Zachary Ware
Zachary Ware added the comment: This could simplify even further with the following: def filter(self, record): return all(getattr(f, 'filter', f)(record) for f in self.filters) -- nosy: +zach.ware versions: +Python 3.8 -Python 3.9

[issue37094] Provide an example for TestCase.skipTest in unittest doc

2019-05-31 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.7 ___ Python tracker <https://bugs.python.or

[issue37118] Why is GIL on 2.7 so much faster than 3.7

2019-05-31 Thread Zachary Ware
New submission from Zachary Ware : This is a bug tracker, not a forum for questions. Please try a more appropriate venue for your question, like python-l...@python.org or StackOverflow. You're going to need to provide some actual evidence rather than just a provocative assertion, t

[issue37133] Erro "ffi.h: No such file" when build python 3.8 (branch master) on windows 10

2019-06-02 Thread Zachary Ware
Zachary Ware added the comment: Did running PCbuild/build.bat successfully download dependencies to the `externals` directory? -- ___ Python tracker <https://bugs.python.org/issue37

[issue34282] Enum._convert shadows members named _convert

2019-06-04 Thread Zachary Ware
Change by Zachary Ware : -- pull_requests: +13708 pull_request: https://github.com/python/cpython/pull/13823 ___ Python tracker <https://bugs.python.org/issue34

[issue37168] Decimal divisions sometimes 10x or 100x too large

2019-06-05 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +facundobatista, mark.dickinson, rhettinger, skrah ___ Python tracker <https://bugs.python.org/issue37168> ___ ___ Python-bug

[issue37189] PyRun_String not exported in python38.dll

2019-06-07 Thread Zachary Ware
Zachary Ware added the comment: A look through `git log -p` looks like bpo-34646 is likely to be related. -- nosy: +benjamin.peterson ___ Python tracker <https://bugs.python.org/issue37

[issue37220] test_idle crash on Windows when run with -R:

2019-06-10 Thread Zachary Ware
New submission from Zachary Ware : See for example https://buildbot.python.org/all/#/builders/33/builds/613 This build ended when I logged into the machine and clicked the "Close the program" button on the "python_d.exe crashed" dialog box. Here's the details f

[issue12857] Expose called function on frame object

2019-06-14 Thread Zachary Ware
Change by Zachary Ware : -- Removed message: https://bugs.python.org/msg345592 ___ Python tracker <https://bugs.python.org/issue12857> ___ ___ Python-bugs-list m

[issue37133] Erro "ffi.h: No such file" when build python 3.8 (branch master) on windows 10

2019-06-17 Thread Zachary Ware
Zachary Ware added the comment: I'm unable to reproduce the problem. If you're still having issues, please reopen the issue with more details about what exactly you did and the error(s) you saw (preferably copied and pasted into a message). -- resolution: -> works

[issue37332] Python from Windows Store cannot install pycrypto

2019-06-18 Thread Zachary Ware
Zachary Ware added the comment: I see the same thing using Python 3.7.0 from python.org on Windows 8.1; this appears to be an issue with pycrypto and not Python itself or the Windows Store distribution. A quick look at the pycrypto issue tracker (https://github.com/dlitz/pycrypto/issues

[issue37352] Typo in documentation: "to making it easy"

2019-06-20 Thread Zachary Ware
Zachary Ware added the comment: "making" looks fine to me as a native English speaker. I'm not sure it's properly correct English, but it's fine colloquially and I don't think "make" would improve it :) If anything, I'd change "to"

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

2019-06-20 Thread Zachary Ware
Zachary Ware added the comment: Perhaps just adding "within a major release series" after "forward-compatible" would be sufficient? -- nosy: +zach.ware ___ Python tracker <https://bug

[issue37396] [2.7] PCbuild/pythoncore.vcxproj kills the wrong program

2019-06-24 Thread Zachary Ware
Zachary Ware added the comment: How can you tell that $(PyDebugExt) is not set? Note that the "Killing any running python.exe instances..." line is hard-coded, it does not currently include $(PyDebugExt) (though it probably should). Adding that to the message would be a good

[issue37533] Possible Unicode handling issue in python.

2019-07-09 Thread Zachary Ware
Zachary Ware added the comment: That issue shows a traceback from Python 2.7, which handles Unicode significantly differently than (read "not as well as") Python 3. If the issue can be boiled down to a few lines of Python code that show a real problem in Python 3's Unicode h

[issue37533] Possible Unicode handling issue in python.

2019-07-09 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +brett.cannon ___ Python tracker <https://bugs.python.org/issue37533> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30757] pyinstaller can be added to docs, py2exe ref can be updated

2019-07-10 Thread Zachary Ware
Zachary Ware added the comment: I've just come across the fact that the Windows FAQ is out of date again. Denis, your PR still has some pending change requests; are you interested in updating your PR, or would you rather someone else take this over? -- components: +Windows

[issue37545] Argparse Tutorial - unreasonable operators

2019-07-10 Thread Zachary Ware
Zachary Ware added the comment: I don't agree with the proposed change; I think the examples are fine as is. Using `>= 1` means if you later decide that the `-vv` message should actually only happen at `-vvv` and `-vv` should get the same message as `-v`, you only have to change th

[issue37605] CI should not depend on gmane response

2019-07-16 Thread Zachary Ware
Zachary Ware added the comment: Victor, note that this issue is about the nntplib doctests in Doc/library/nntplib.rst. I agree that any examples in that file that actually hit an external server should be marked as not doctests. -- assignee: -> docs@python compone

[issue37605] CI should not depend on gmane response

2019-07-24 Thread Zachary Ware
Zachary Ware added the comment: For doctests, I would prefer to just disable some or all of the doctests in Doc/library/nntplib.rst rather than go to the effort of trying to mock things. -- ___ Python tracker <https://bugs.python.org/issue37

[issue37713] 2to3 division problems leading to program crashes in Python3

2019-07-29 Thread Zachary Ware
Zachary Ware added the comment: This is not a bug; division changed in Python 3 such that `/` is the "true division" operator, whereas `//` is the "integer division" operator. Note that this was actually added in Python 2.2, though it was guarded by `from __future__ impo

[issue37727] error past 15 places

2019-07-30 Thread Zachary Ware
Zachary Ware added the comment: This is a limitation of binary floating point, please see https://docs.python.org/3/tutorial/floatingpoint.html -- nosy: +zach.ware resolution: -> not a bug stage: -> resolved status: open -> closed _

[issue37767] TTK Treeview alternating row color not working

2019-08-05 Thread Zachary Ware
Zachary Ware added the comment: That file is part of Tcl/Tk and just bundled with Python on Windows; please raise an issue on the Tk issue tracker (which appears to be here: https://core.tcl-lang.org/tk/ticket). If and when the change is released in a new version of Tcl/Tk, please feel

[issue28994] Misc fixes and cleanups in error handling C code

2017-06-12 Thread Zachary Ware
Zachary Ware added the comment: Agreed, looks like something went wrong in your checkout, Terry. Just confirmed that a 3.6 build on a fresh checkout on Windows is fine. -- priority: release blocker -> normal ___ Python tracker &l

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

2017-06-15 Thread Zachary Ware
Zachary Ware added the comment: New changeset 51599e2bdd10ab77212a7cbb41a13ea70ee13da8 by Zachary Ware in branch 'master': bpo-30450: Pull Windows dependencies from GitHub rather than svn (GH-1783) https://github.com/python/cpython/commit/51599e2bdd10ab77212a7cbb41a13e

[issue30631] Warnings in VS2015 Update 3 32-Bit

2017-06-15 Thread Zachary Ware
Zachary Ware added the comment: New changeset c9318853bbe8d62cb72ed853b0ffb75311ea474c by Zachary Ware (Segev Finer) in branch 'master': bpo-30631: Silence MSVC warnings in third-party code (GH-1963) https://github.com/python/cpython/commit/c9318853bbe8d62cb72ed853b0ffb7

[issue30631] Warnings in VS2015 Update 3 32-Bit

2017-06-15 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the patch! -- components: +Build resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

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

2017-06-15 Thread Zachary Ware
Changes by Zachary Ware : -- pull_requests: +2281 ___ Python tracker <http://bugs.python.org/issue30450> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-06-15 Thread Zachary Ware
Zachary Ware added the comment: New changeset cb8c0485ab1e3aeb4f64e76177aabbc6eba5a0ef by Zachary Ware in branch 'master': bpo-30450: Add NEWS and whatsnew (GH-2236) https://github.com/python/cpython/commit/cb8c0485ab1e3aeb4f64e76177aabb

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

2017-06-15 Thread Zachary Ware
Changes by Zachary Ware : -- pull_requests: +2282 ___ Python tracker <http://bugs.python.org/issue30450> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-06-15 Thread Zachary Ware
Zachary Ware added the comment: New changeset 04431c926a88be433203f89e3577addd0d41b602 by Zachary Ware in branch '3.6': bpo-30450: Pull Windows dependencies from GitHub rather than svn (GH-1783) (GH-2237) https://github.com/python/cpython/commit/04431c926a88be433203f89e3577ad

[issue30743] unittest discover does not mention module file must be named with "test_" prefix

2017-06-23 Thread Zachary Ware
Zachary Ware added the comment: Does this cover what you're looking for? https://docs.python.org/3/library/unittest.html#cmdoption-unittest-discover-p -- nosy: +zach.ware ___ Python tracker <http://bugs.python.org/is

[issue27523] Silence Socket Depreciation Warnings.

2017-06-24 Thread Zachary Ware
Zachary Ware added the comment: This is being handled in bpo-23451, GH-2318. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit __

[issue30743] unittest discover does not mention module file must be named with "test_" prefix

2017-06-27 Thread Zachary Ware
Zachary Ware added the comment: This all seems to be covered in https://docs.python.org/3/library/unittest.html#test-discovery $ cat aaaTest.py import unittest class TestAAA(unittest.TestCase): def test_something(self): self.assertTrue(True) if __name__ == '__m

[issue30895] Decimal arithmetic sum error

2017-07-10 Thread Zachary Ware
Zachary Ware added the comment: https://docs.python.org/3/tutorial/floatingpoint.html -- nosy: +zach.ware resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue30923] Add -Wimplicit-fallthrough=0 to Makefile ?

2017-07-13 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +zach.ware ___ Python tracker <http://bugs.python.org/issue30923> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31017] gcc 7 fallthrough warnings

2017-07-24 Thread Zachary Ware
Zachary Ware added the comment: This is a duplicate of bpo-30923. -- nosy: +zach.ware resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Add -Wimplicit-fallthrough=0 to Makefile ? ___ Python tr

[issue31037] Results in section 4.4 break and continue

2017-07-25 Thread Zachary Ware
Zachary Ware added the comment: Take a look at the statement immediately following the example: "(Yes, this is the correct code. Look closely: the else clause belongs to the for loop, not the if statement.)" The example is correct, and is introducing the concept of an 'else&#x

[issue31037] Results in section 4.4 break and continue

2017-07-26 Thread Zachary Ware
Zachary Ware added the comment: We just received another report about this on docs@: https://mail.python.org/pipermail/docs/2017-July/032314.html -- ___ Python tracker <http://bugs.python.org/issue31

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

2017-08-04 Thread Zachary Ware
Changes by Zachary Ware : -- assignee: christian.heimes -> zach.ware ___ Python tracker <http://bugs.python.org/issue31120> ___ ___ Python-bugs-list mai

[issue30849] test_stress_delivery_dependent() of test_signal randomly fails on AMD64 Debian root 3.6

2017-08-09 Thread Zachary Ware
Zachary Ware added the comment: > Hmm. Perhaps someone can give me temporary shell access to one of those > buildbots? Check your @python.org inbox. -- ___ Python tracker <http://bugs.python.org/i

[issue31223] Hacked By KingSkrupellos Cyberizm.Org Digital Security Technological Turkish Moslem Army

2017-08-16 Thread Zachary Ware
Changes by Zachary Ware : -- Removed message: http://bugs.python.org/msg300383 ___ Python tracker <http://bugs.python.org/issue31223> ___ ___ Python-bugs-list m

[issue31223] Hacked By KingSkrupellos Cyberizm.Org Digital Security Technological Turkish Moslem Army

2017-08-16 Thread Zachary Ware
Changes by Zachary Ware : -- Removed message: http://bugs.python.org/msg300384 ___ Python tracker <http://bugs.python.org/issue31223> ___ ___ Python-bugs-list m

[issue31223] Spam

2017-08-16 Thread Zachary Ware
Changes by Zachary Ware : -- components: -Unicode nosy: -adminos, doko, ezio.melotti, haypo, larry resolution: works for me -> not a bug stage: -> resolved status: open -> closed title: Hacked By KingSkrupellos Cyberizm.Org Digital Security Technological Turkish Moslem Arm

[issue31223] Spam

2017-08-16 Thread Zachary Ware
Changes by Zachary Ware : Removed file: http://bugs.python.org/file47089/kingskrupellos.txt ___ Python tracker <http://bugs.python.org/issue31223> ___ ___ Python-bug

[issue31220] test

2017-08-16 Thread Zachary Ware
Changes by Zachary Ware : Removed file: http://bugs.python.org/file47087/_.txt ___ Python tracker <http://bugs.python.org/issue31220> ___ ___ Python-bugs-list mailin

[issue31220] Spam

2017-08-16 Thread Zachary Ware
Changes by Zachary Ware : -- components: -Argument Clinic nosy: -Basiruddin Syarifan Radifan, larry, matrixise resolution: rejected -> not a bug title: test -> Spam type: crash -> versions: -Python 3.4 ___ Python tracker <http://bug

[issue31219] Spam

2017-08-16 Thread Zachary Ware
Changes by Zachary Ware : -- components: -Argument Clinic nosy: -Basiruddin Syarifan Radifan, larry, matrixise resolution: rejected -> not a bug title: test -> Spam type: behavior -> versions: -Python 3.6 ___ Python track

[issue31217] test_code leaked [1, 1, 1] memory blocks on x86 Gentoo Refleaks 3.6/3.x

2017-08-31 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +zach.ware ___ Python tracker <http://bugs.python.org/issue31217> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-09-04 Thread Zachary Ware
Changes by Zachary Ware : -- pull_requests: +3336 ___ Python tracker <http://bugs.python.org/issue30450> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-09-04 Thread Zachary Ware
Zachary Ware added the comment: New changeset 986b7ffc650919b3022ccaa458a843bb8a95d2bd by Zachary Ware in branch '2.7': [2.7] bpo-30450: Pull Windows dependencies from GitHub rather than SVN (GH-1783) (GH-3306) https://github.com/python/cpython/commit/986b7ffc650919b3022ccaa458a843

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

2017-09-05 Thread Zachary Ware
Changes by Zachary Ware : -- pull_requests: +3359 ___ Python tracker <http://bugs.python.org/issue30450> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-09-05 Thread Zachary Ware
Changes by Zachary Ware : -- pull_requests: +3361 ___ Python tracker <http://bugs.python.org/issue30450> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2017-09-05 Thread Zachary Ware
Zachary Ware added the comment: New changeset 8905fb831cf7c400c479b79bb2f90bfbe9c71337 by Zachary Ware in branch '2.7': bpo-30450: Don't use where, XP doesn't have it (GH-3348) https://github.com/python/cpython/commit/8905fb831cf7c400c479

[issue30445] test_traceback fails in coverage run

2017-09-05 Thread Zachary Ware
Changes by Zachary Ware : -- pull_requests: +3372 ___ Python tracker <http://bugs.python.org/issue30445> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31355] Remove Travis CI job: rely on buildbots

2017-09-05 Thread Zachary Ware
Zachary Ware added the comment: I will note that my on-going research on rewriting the buildbot config makes it look like we should be able to securely enable building PRs by checking for the 'awaiting merge' label. -- ___ Python trac

[issue31358] Pull zlib out to cpython-source-deps

2017-09-05 Thread Zachary Ware
New submission from Zachary Ware: We currently bundle zlib in our source at Modules/zlib, but it is only used on Windows. The soon-to-be-attached PR instead pulls it from https://github.com/python/cpython-source-deps There is one failure in test_venv only when zlib is not built at all, which

[issue31358] Pull zlib out to cpython-source-deps

2017-09-05 Thread Zachary Ware
Changes by Zachary Ware : -- pull_requests: +3386 ___ Python tracker <http://bugs.python.org/issue31358> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30912] python 3 git master fails to find libffi and build _ctypes on Mageia v6 x86-64

2017-09-06 Thread Zachary Ware
Zachary Ware added the comment: doko, have you seen/have an opinion on GH-2687? -- nosy: +doko ___ Python tracker <http://bugs.python.org/issue30912> ___ ___ Pytho

[issue31367] [[]]*int gives x of the same list that cannot be appended to or popped from individually

2017-09-06 Thread Zachary Ware
Zachary Ware added the comment: https://docs.python.org/3/faq/programming.html#how-do-i-create-a-multidimensional-list -- nosy: +zach.ware resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python track

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