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
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
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
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
Change by Zachary Ware :
--
nosy: +christian.heimes, gregory.p.smith
___
Python tracker
<https://bugs.python.org/issue40791>
___
___
Python-bugs-list mailin
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
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?
-
Change by Zachary Ware :
--
type: compile error -> behavior
___
Python tracker
<https://bugs.python.org/issue40813>
___
___
Python-bugs-list mailing list
Un
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
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
Change by Zachary Ware :
--
components: +Library (Lib) -asyncio
nosy: +vinay.sajip -asvetlov, yselivanov
___
Python tracker
<https://bugs.python.org/issue40
Change by Zachary Ware :
--
resolution: -> not a bug
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue40914>
___
___
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
Change by Zachary Ware :
--
Removed message: https://bugs.python.org/msg373315
___
Python tracker
<https://bugs.python.org/issue41243>
___
___
Python-bugs-list m
Change by Zachary Ware :
--
components: -Interpreter Core
nosy: -Deon257
versions: -Python 3.7
___
Python tracker
<https://bugs.python.org/issue41243>
___
___
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
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
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
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
Change by Zachary Ware :
--
nosy: +EWDurbin
___
Python tracker
<https://bugs.python.org/issue41701>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Zachary Ware :
--
Removed message: https://bugs.python.org/msg376478
___
Python tracker
<https://bugs.python.org/issue40562>
___
___
Python-bugs-list m
Change by Zachary Ware :
--
Removed message: https://bugs.python.org/msg371208
___
Python tracker
<https://bugs.python.org/issue40562>
___
___
Python-bugs-list m
Change by Zachary Ware :
--
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue37575>
___
___
Python-bugs-list
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 (
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
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
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
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
Change by Zachary Ware :
--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware
___
Python tracker
<https://bugs.python.org/issue42
Change by Zachary Ware :
--
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue42024>
___
___
Python-bugs-list
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
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
Change by Zachary Ware :
--
components: -IDLE
___
Python tracker
<https://bugs.python.org/issue42279>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
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
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
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
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
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
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
Zachary Ware added the comment:
Did running PCbuild/build.bat successfully download dependencies to the
`externals` directory?
--
___
Python tracker
<https://bugs.python.org/issue37
Change by Zachary Ware :
--
pull_requests: +13708
pull_request: https://github.com/python/cpython/pull/13823
___
Python tracker
<https://bugs.python.org/issue34
Change by Zachary Ware :
--
nosy: +facundobatista, mark.dickinson, rhettinger, skrah
___
Python tracker
<https://bugs.python.org/issue37168>
___
___
Python-bug
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
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
Change by Zachary Ware :
--
Removed message: https://bugs.python.org/msg345592
___
Python tracker
<https://bugs.python.org/issue12857>
___
___
Python-bugs-list m
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
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
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"
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
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
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
Change by Zachary Ware :
--
nosy: +brett.cannon
___
Python tracker
<https://bugs.python.org/issue37533>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
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
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
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
_
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
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
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
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
Zachary Ware added the comment:
Thanks for the patch!
--
components: +Build
resolution: -> fixed
stage: -> resolved
status: open -> closed
___
Python tracker
<http://bugs.python.or
Changes by Zachary Ware :
--
pull_requests: +2281
___
Python tracker
<http://bugs.python.org/issue30450>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Changes by Zachary Ware :
--
pull_requests: +2282
___
Python tracker
<http://bugs.python.org/issue30450>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
__
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
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
Changes by Zachary Ware :
--
nosy: +zach.ware
___
Python tracker
<http://bugs.python.org/issue30923>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
Changes by Zachary Ware :
--
assignee: christian.heimes -> zach.ware
___
Python tracker
<http://bugs.python.org/issue31120>
___
___
Python-bugs-list mai
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
Changes by Zachary Ware :
--
Removed message: http://bugs.python.org/msg300383
___
Python tracker
<http://bugs.python.org/issue31223>
___
___
Python-bugs-list m
Changes by Zachary Ware :
--
Removed message: http://bugs.python.org/msg300384
___
Python tracker
<http://bugs.python.org/issue31223>
___
___
Python-bugs-list m
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
Changes by Zachary Ware :
Removed file: http://bugs.python.org/file47089/kingskrupellos.txt
___
Python tracker
<http://bugs.python.org/issue31223>
___
___
Python-bug
Changes by Zachary Ware :
Removed file: http://bugs.python.org/file47087/_.txt
___
Python tracker
<http://bugs.python.org/issue31220>
___
___
Python-bugs-list mailin
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
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
Changes by Zachary Ware :
--
nosy: +zach.ware
___
Python tracker
<http://bugs.python.org/issue31217>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Zachary Ware :
--
pull_requests: +3336
___
Python tracker
<http://bugs.python.org/issue30450>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Changes by Zachary Ware :
--
pull_requests: +3359
___
Python tracker
<http://bugs.python.org/issue30450>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Zachary Ware :
--
pull_requests: +3361
___
Python tracker
<http://bugs.python.org/issue30450>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Changes by Zachary Ware :
--
pull_requests: +3372
___
Python tracker
<http://bugs.python.org/issue30445>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
Changes by Zachary Ware :
--
pull_requests: +3386
___
Python tracker
<http://bugs.python.org/issue31358>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
501 - 600 of 2740 matches
Mail list logo