Changes by SilentGhost :
--
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue21973>
___
___
Python-bugs-list mailing list
Unsubscrib
Changes by SilentGhost :
--
nosy: +terry.reedy
___
Python tracker
<http://bugs.python.org/issue21981>
___
___
Python-bugs-list mailing list
Unsubscribe:
SilentGhost added the comment:
I can reproduce your example on 3.4, but for the comparison:
>>> exec(compile("if __debug__: print(42)", "exec", "exec", optimize=1))
>>> exec(compile("if __debug__: print(42)", "exec", "exe
Changes by SilentGhost :
--
title: PyUnicode_ functions not accessible in Limited API on Windows -> ucs2
___
Python tracker
<http://bugs.python.org/issu
Changes by SilentGhost :
--
title: ucs2 -> PyUnicode_ functions not accessible in Limited API on Windows
___
Python tracker
<http://bugs.python.org/issu
SilentGhost added the comment:
Your code produces many false positives, would you care to reduce this list to
only those modules that actually do not have a Source code link?
--
nosy: +SilentGhost
___
Python tracker
<http://bugs.python.
New submission from SilentGhost:
chain.from_iterable is not linkified in the overview table at the top of the
itertools docs. The patch requires reformat of the table.
--
assignee: docs@python
components: Documentation
files: linkify.diff
keywords: patch
messages: 208184
nosy
Changes by SilentGhost :
--
versions: -Python 3.5
___
Python tracker
<http://bugs.python.org/issue20272>
___
___
Python-bugs-list mailing list
Unsubscribe:
SilentGhost added the comment:
Mike, the note is at the very bottom of the page.
datetime.strftime produces empty strings with this specifiers for naïve
objects, are the object you're testing timezone-aware?
--
nosy: +SilentGhost
___
Python tr
SilentGhost added the comment:
Martin, it would be better if you do the check the way it's done in test_rast:
h.startswith(b'\x76\x2f\x31\x01')
Otherwise, you need to check that that h has at least 4 elements (if it doesn't
you'll get an IndexError).
Changes by SilentGhost :
--
resolution: -> rejected
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue20591>
___
___
Python-bugs-list
New submission from SilentGhost :
According to docs
(http://docs.python.org/3.1/reference/datamodel.html#object.__bool__)
__bool__ can return 1 or 0 instead of True or False.
However, when I ran the following code:
Python 3.1 (r31:73574, Jun 26 2009, 20:21:35) [MSC v.1500 32 bit
(Intel)] on
New submission from SilentGhost :
Doc string for tkinter/__init__.py Canvas.coords (line 2115 in
python3.1.1) reads: """Return a list of coordinates for the item given
in ARGS."""
actual code: return map(...etc...)
I actually don't know whether it's an
New submission from SilentGhost :
the following
>>> getopt.getopt('--testing=dr'.split(), '', ['testing'])[0]
would raise 'option --testing must not have an argument'.
Documentation reads, however: "Long options which require an argumen
SilentGhost added the comment:
issue is in the wording: "Long options which require an argument
should be followed by an equal sign ('=')." What if the argument is
optional? Then by definition it is not required, but as my example shows
omitting the equal sign, would prod
SilentGhost added the comment:
Yes, that's true Doug. May be it should be explicitly stated?
--
___
Python tracker
<http://bugs.python.org/issue6977>
___
___
New submission from SilentGhost :
I'm comparing initialisation of Counter from an iterable with the
following function:
def unique(seq):
"""Dict of unique values (keys) & their counts in original sequence"""
out_dict = dict.fro
SilentGhost added the comment:
I've never meant to suggest any kind of replacement of the Counter with
my example. I just tried to show that
self[elem] += 1# line 430 of collections.py
which at initialisation naturally propagates to __missing__ is somewhat
slow. and had it been pos
SilentGhost added the comment:
> My guess is you have a plugin which is resolving these ip-address lookalikes.
That probably is the reason. My hosts line looks like:
hosts: files mdns4_minimal [NOTFOUND=return] resolve [!UNAVAIL=return]
dns
I guess there isn't much that
SilentGhost added the comment:
> Does test_host_resolution still stably fails?
Yes.
--
___
Python tracker
<http://bugs.python.org/issue28728>
___
___
Python-
New submission from SilentGhost:
Couple of entries in Misc/NEWS are causing warnings due to use of double quotes
instead of backticks for code segments. This patches fixes the formatting.
--
assignee: docs@python
components: Documentation
files: escape.diff
keywords: patch
messages
SilentGhost added the comment:
I get either ('ec2-54-88-107-140.compute-1.amazonaws.com', [],
['54.88.107.140']) or ('ec2-54-84-80-173.compute-1.amazonaws.com', [],
['54.84.80.173']).
It indeed seems to be related to ISP, as I get a regular socket.gai
Changes by SilentGhost :
--
resolution: not a bug -> third party
stage: -> resolved
___
Python tracker
<http://bugs.python.org/issue28772>
___
___
Pyth
Changes by SilentGhost :
--
resolution: -> out of date
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<http://bugs.python.or
SilentGhost added the comment:
What do you mean by "work" and "does not work"? Both versions raise TypeError,
because you're passing epoch to fromtimestamp, but once that's fixed both
versions return identical output. Python is not sensitive to empty lines in
Changes by SilentGhost :
--
stage: -> resolved
___
Python tracker
<http://bugs.python.org/issue28819>
___
___
Python-bugs-list mailing list
Unsubscrib
SilentGhost added the comment:
Reads just fine to me.
--
nosy: +SilentGhost
___
Python tracker
<http://bugs.python.org/issue28830>
___
___
Python-bugs-list mailin
Changes by SilentGhost :
--
resolution: -> not a bug
stage: -> resolved
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue28830>
___
___
SilentGhost added the comment:
You seem to be misunderstanding how the intersection/union/etc are supposed to
be used:
>>> ab = {'a', 'b'}
>>> ab.intersection('bc')
{'b'}
Using set.intersection (where set is a built-in class, rather th
Changes by SilentGhost :
--
nosy: +orsenthil
versions: +Python 3.5, Python 3.6, Python 3.7 -Python 3.4
___
Python tracker
<http://bugs.python.org/issue28
SilentGhost added the comment:
Looking at the code it seems NamedTemporaryFile is closed on destruction of the
object, so there is no need for ResourceWarning, because the file descriptor is
not leaking.
You also don't need to involve unittest here. Just running python with -Wall
SilentGhost added the comment:
It's part of the copyright notice, just removing it is probably not an option.
--
nosy: +SilentGhost
___
Python tracker
<http://bugs.python.org/is
SilentGhost added the comment:
> The point of ResourceWarning it tell you when you are depending on
> destructors for cleanup
But there is an explicit call in __del__ to .close(), it's looks like intended
behaviour and is ultimately the difference that Jon was see
SilentGhost added the comment:
The ResourceWarning that you've introduced need to be "fixed" in a few place in
test_urllib2
--
stage: -> needs patch
versions: +Python 3.7
___
Python tracker
<http://bugs.
SilentGhost added the comment:
This is the wrong bug tracker. The issue seems to have already been reported to
pypa https://github.com/pypa/pypi-legacy/issues/492
--
nosy: +SilentGhost
resolution: -> not a bug
stage: -> resolved
status: open -> closed
type: performance -&
Changes by SilentGhost :
--
nosy: +eric.smith
type: -> behavior
___
Python tracker
<http://bugs.python.org/issue29104>
___
___
Python-bugs-list mailing list
Un
SilentGhost added the comment:
This doesn't seem likely that it's anything to do with datetime, could you try
reproducing it in repl?
--
nosy: +SilentGhost
___
Python tracker
<http://bugs.python.o
Changes by SilentGhost :
--
components: +Windows
nosy: +belopolsky, paul.moore, steve.dower, tim.golden, zach.ware
stage: -> needs patch
type: -> behavior
___
Python tracker
<http://bugs.python.org/i
SilentGhost added the comment:
Cannot reproduce this with the tip on linux
--
___
Python tracker
<http://bugs.python.org/issue29097>
___
___
Python-bugs-list m
SilentGhost added the comment:
ContextBaseClass is meant to represent a user-defined class that is a parent of
mycontext.
--
nosy: +SilentGhost
___
Python tracker
<http://bugs.python.org/issue29
Changes by SilentGhost :
--
assignee: -> docs@python
components: +Documentation
nosy: +docs@python
stage: -> patch review
type: -> behavior
versions: +Python 3.5, Python 3.6, Python 3.7
___
Python tracker
<http://bugs.python.or
SilentGhost added the comment:
The main message there is about the parsing of the two-digit year, so while it
might worth it to remove the mention of Y2K, it would only be a minor change.
--
nosy: +SilentGhost
___
Python tracker
<h
SilentGhost added the comment:
Can't reproduce this on 3.7, can you supply additional information, such as
what exact revision you're trying to build and what gcc version you're using?
------
nosy: +SilentGhost
___
Python
Changes by SilentGhost :
--
stage: -> patch review
versions: -Python 3.2, Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/issue27144>
___
_
Changes by SilentGhost :
--
nosy: +steven.daprano
stage: -> patch review
type: -> behavior
___
Python tracker
<http://bugs.python.org/issue27139>
___
___
Changes by SilentGhost :
--
components: +Library (Lib)
nosy: +r.david.murray
stage: -> test needed
type: -> behavior
versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5
___
Python tracker
<http://bugs.python.org/i
Changes by SilentGhost :
--
nosy: +jnoller, sbt
versions: +Python 3.6 -Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/issue27151>
___
___
Pytho
Changes by SilentGhost :
--
components: +Library (Lib) -Demos and Tools
nosy: +vinay.sajip
versions: -Python 3.2, Python 3.3, Python 3.4, Python 3.5
___
Python tracker
<http://bugs.python.org/issue27
SilentGhost added the comment:
I closed the issue because it's outdated: i) patch no longer applies cleanly;
ii) changes to cmd line parsing where done in issue 22642; iii) remaining
changes are largely cosmetic.
As for issue 10896, a much more trivial patch would have to be produced ag
Changes by SilentGhost :
--
nosy: +haypo, rhettinger
stage: -> patch review
versions: +Python 3.6
___
Python tracker
<http://bugs.python.org/issue27145>
___
_
New submission from SilentGhost:
This could only go in 3.6, but it needs proper documentation and test(s).
--
nosy: +SilentGhost, yselivanov
stage: -> test needed
versions: -Python 3.5
___
Python tracker
<http://bugs.python.org/issu
Changes by SilentGhost :
--
nosy: +pitrou
type: -> behavior
versions: -Python 3.5
___
Python tracker
<http://bugs.python.org/issue27175>
___
___
Python-
Changes by SilentGhost :
--
nosy: +ezio.melotti, michael.foord, rbcollins
versions: +Python 3.6
___
Python tracker
<http://bugs.python.org/issue27176>
___
___
Changes by SilentGhost :
--
assignee: -> yselivanov
stage: patch review -> commit review
___
Python tracker
<http://bugs.python.org/issue27172>
___
___
Pyth
Changes by SilentGhost :
--
stage: patch review -> commit review
versions: -Python 3.2, Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/iss
SilentGhost added the comment:
Thanks for the patch, Dave. For whatever reason it doesn't seem to apply
cleanly to the current tip, would you mind preparing a new patch that does?
--
assignee: -> docs@python
components: +Documentation
nosy: +SilentGhost, berker.peksag, doc
Changes by SilentGhost :
--
components: +Extension Modules -Interpreter Core
nosy: +larry
___
Python tracker
<http://bugs.python.org/issue27235>
___
___
Python-bug
Changes by SilentGhost :
--
components: +Tests
title: Yury isn't sure comprehensions and await interact correctly ->
Comprehensions and await need more unittests
type: -> behavior
___
Python tracker
<http://bugs.python.
SilentGhost added the comment:
There seems to be an issue with your patch, it does apply cleanly when doing
that manually, but Rietveld doesn't like it. The changes in Lib/posixpath.py
and Lib/test/test_posixpath.py don't show up.
--
nosy: +S
SilentGhost added the comment:
This is behaviour introduced by issue 25548, it would make sense to me to
discuss this problem there if you think it's necessary. repr in error messages
has been a standard approach in Python for a very long time, however.
--
nosy: +Silent
Changes by SilentGhost :
--
nosy: +SilentGhost
versions: +Python 3.6
___
Python tracker
<http://bugs.python.org/issue26867>
___
___
Python-bugs-list mailin
SilentGhost added the comment:
test_format resulted in semi-failure due to this change. The attached patch
fixes the issue.
--
assignee: -> serhiy.storchaka
nosy: +SilentGhost
resolution: fixed ->
stage: resolved -> commit review
status: closed -> open
Adde
Changes by SilentGhost :
--
stage: -> needs patch
type: -> behavior
versions: -Python 3.2, Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/i
Changes by SilentGhost :
--
nosy: +georg.brandl
stage: -> patch review
___
Python tracker
<http://bugs.python.org/issue27241>
___
___
Python-bugs-list mai
Changes by SilentGhost :
--
nosy: +vinay.sajip
stage: -> test needed
type: -> behavior
versions: +Python 3.6
___
Python tracker
<http://bugs.python.org/i
Changes by SilentGhost :
--
nosy: +alex, christian.heimes, dstufft, giampaolo.rodola, janssen, pitrou
___
Python tracker
<http://bugs.python.org/issue27
Changes by SilentGhost :
--
nosy: +pmoody
versions: -Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/issue27269>
___
___
Python-bugs-list mailin
Changes by SilentGhost :
--
nosy: +amaury.forgeotdarc, belopolsky, meador.inge
versions: +Python 3.6
___
Python tracker
<http://bugs.python.org/issue27
Changes by SilentGhost :
--
components: +Tests
___
Python tracker
<http://bugs.python.org/issue27277>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by SilentGhost :
--
nosy: +loewis
stage: -> patch review
versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/issu
Changes by SilentGhost :
--
nosy: +SilentGhost
___
Python tracker
<http://bugs.python.org/issue20825>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by SilentGhost :
--
nosy: +rhettinger, stutzbach
type: -> enhancement
versions: +Python 3.6
___
Python tracker
<http://bugs.python.org/issu
Changes by SilentGhost :
--
versions: +Python 3.6 -Python 3.5
___
Python tracker
<http://bugs.python.org/issue27303>
___
___
Python-bugs-list mailing list
Unsub
SilentGhost added the comment:
There are more occurrences of "it is already exists" in the first table.
--
nosy: +SilentGhost
stage: -> needs patch
versions: +Python 3.6
___
Python tracker
<http://bugs.pytho
SilentGhost added the comment:
pip is not part of standard library, its issue tracker is at
https://github.com/pypa/pip/issues
--
nosy: +SilentGhost
resolution: -> third party
stage: -> resolved
status: open -> closed
___
Python track
SilentGhost added the comment:
LGTM.
--
stage: needs patch -> commit review
___
Python tracker
<http://bugs.python.org/issue27306>
___
___
Python-bugs-list mai
Changes by SilentGhost :
--
nosy: +georg.brandl
type: crash -> behavior
___
Python tracker
<http://bugs.python.org/issue27316>
___
___
Python-bugs-list mai
SilentGhost added the comment:
I cannot reproduce this issue on 3.5, do you have a chance to test this on a
3.5 or some other version of python? Also, could you provide any more details
of your system?
--
nosy: +SilentGhost
___
Python tracker
Changes by SilentGhost :
--
nosy: +alanmcintyre, serhiy.storchaka, twouters
versions: +Python 3.6 -Python 2.7
___
Python tracker
<http://bugs.python.org/issue27
Changes by SilentGhost :
--
resolution: -> works for me
stage: -> resolved
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue27316>
___
___
Changes by SilentGhost :
Removed file: http://bugs.python.org/file43458/bugreport-2016-05-29-03-43-39.txt
___
Python tracker
<http://bugs.python.org/issue27347>
___
___
Changes by SilentGhost :
--
Removed message: http://bugs.python.org/msg268813
___
Python tracker
<http://bugs.python.org/issue27347>
___
___
Python-bugs-list m
SilentGhost added the comment:
Pandas is not part of the standard library. Their issue tracker is at
https://github.com/pydata/pandas/issues
--
nosy: +SilentGhost
resolution: -> third party
stage: -> resolved
status: open -> closed
_
SilentGhost added the comment:
This seems to have been reported on riak's tracker:
https://github.com/basho/riak-python-client/issues/449
--
nosy: +SilentGhost
resolution: -> third party
stage: -> resolved
status: open -> closed
type: cra
SilentGhost added the comment:
You need to use os.makedirs
--
nosy: +SilentGhost
resolution: -> not a bug
stage: -> resolved
status: open -> closed
type: enhancement -> behavior
___
Python tracker
<http://bugs.python
Changes by SilentGhost :
--
nosy: +gpolo, serhiy.storchaka
___
Python tracker
<http://bugs.python.org/issue27371>
___
___
Python-bugs-list mailing list
Unsub
SilentGhost added the comment:
The patch applies cleanly, not sure why the rietveld link doesn't appear.
Perhaps because of the extension?
In test, I noticed, that you're not testing that OSError is raised, perhaps
something to add?
--
nosy: +S
Changes by SilentGhost :
--
nosy: +michael.foord
stage: -> patch review
___
Python tracker
<http://bugs.python.org/issue27376>
___
___
Python-bugs-list mai
SilentGhost added the comment:
I've left comments on rietveld. Not sure if everyone's seeing them.
--
nosy: +SilentGhost
stage: needs patch -> patch review
___
Python tracker
<http://bugs.pytho
SilentGhost added the comment:
Have you seen my comments on rietveld re you previous patch?
--
___
Python tracker
<http://bugs.python.org/issue20825>
___
___
Pytho
Changes by SilentGhost :
--
assignee: -> docs@python
components: +Documentation
nosy: +docs@python
stage: -> patch review
versions: +Python 3.5, Python 3.6
___
Python tracker
<http://bugs.python.org/i
SilentGhost added the comment:
This patch is going to be rejected, camelCase is standard convention in tkinter
and logging modules and that's why it is used in documentation as well.
--
nosy: +SilentGhost
___
Python tracker
<http://bugs.py
Changes by SilentGhost :
--
nosy: +haypo, serhiy.storchaka
stage: -> commit review
versions: +Python 3.6
___
Python tracker
<http://bugs.python.org/issu
Changes by SilentGhost :
--
assignee: -> docs@python
components: +Documentation
nosy: +docs@python
stage: -> needs patch
versions: +Python 3.5, Python 3.6
___
Python tracker
<http://bugs.python.org/i
Changes by SilentGhost :
--
nosy: +giampaolo.rodola
stage: -> test needed
___
Python tracker
<http://bugs.python.org/issue27486>
___
___
Python-bugs-list mai
Changes by SilentGhost :
--
nosy: +fdrake
stage: -> patch review
versions: -Python 3.2, Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/issu
Changes by SilentGhost :
--
nosy: +mark.dickinson, rhettinger
___
Python tracker
<http://bugs.python.org/issue27539>
___
___
Python-bugs-list mailing list
Unsub
Changes by SilentGhost :
--
versions: +Python 3.6 -Python 3.5
___
Python tracker
<http://bugs.python.org/issue27580>
___
___
Python-bugs-list mailing list
Unsub
Changes by SilentGhost :
--
resolution: fixed ->
status: closed -> open
___
Python tracker
<http://bugs.python.org/issue27601>
___
___
Python-bugs-list
Changes by SilentGhost :
--
components: +Macintosh
nosy: +ned.deily, ronaldoussoren
___
Python tracker
<http://bugs.python.org/issue27612>
___
___
Python-bug
701 - 800 of 1410 matches
Mail list logo