SilentGhost added the comment:
OK, here is the patch with the test that I think is exercising the issue.
--
keywords: +needs review, patch
stage: -> patch review
Added file: http://bugs.python.org/file41403/issue25933.diff
___
Python tracker
&l
Changes by SilentGhost :
--
components: +Installation, Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware
versions: +Python 3.5
___
Python tracker
<http://bugs.python.org/issue25
SilentGhost added the comment:
Content of the article is in very reasonable shape, I have only couple of notes:
1. I don't think "production" is a good description of the python's repository
workflow, so I'd suggest changing it to "repository".
2. Lack of
Changes by SilentGhost :
--
nosy: +alex, christian.heimes, dstufft, giampaolo.rodola, janssen, pitrou
type: -> behavior
versions: +Python 3.5, Python 3.6 -Python 3.4
___
Python tracker
<http://bugs.python.org/issu
Changes by SilentGhost :
--
components: +Library (Lib)
nosy: +yselivanov
versions: +Python 3.6
___
Python tracker
<http://bugs.python.org/issue25952>
___
___
Pytho
SilentGhost added the comment:
Well, at least on the surface of it, the fix seems pretty straightforward:
check for the group index. With this patch the behaviour is as expected, but I
get two tests erroring out since they're expecting differently worded error.
This probably needs adjust
SilentGhost added the comment:
None of this warnings highlights a real issue. Furthermore, optparse module is
deprecated and you'd be better off using argparse instead.
--
components: +Library (Lib)
nosy: +SilentGhost
resolution: -> not a bug
stage: -> resolved
status: ope
SilentGhost added the comment:
The deprecation warning is clearly displayed at the top of the module
documentation: https://docs.python.org/3/library/optparse.html
Regarding variable names: it is not an issue and pychecker is simply mistaken
here
SilentGhost added the comment:
The code was introduced to solve issue 12494, so I'm adding Victor to weigh in.
--
nosy: +SilentGhost, haypo
versions: +Python 3.5, Python 3.6 -Python 3.3
___
Python tracker
<http://bugs.python.org/is
Changes by SilentGhost :
--
components: +Interpreter Core
versions: +Python 3.5, Python 3.6 -Python 3.4
___
Python tracker
<http://bugs.python.org/issue25
SilentGhost added the comment:
The host ip needs to be supplied as a string:
telnetlib.Telnet(host='192.168.1.15', port=3490, timeout=5)
--
nosy: +SilentGhost
resolution: -> not a bug
stage: -> resolved
status: open -> closed
Changes by SilentGhost :
--
stage: patch review -> commit review
___
Python tracker
<http://bugs.python.org/issue19475>
___
___
Python-bugs-list mailing list
Un
Changes by SilentGhost :
--
nosy: +meador.inge
___
Python tracker
<http://bugs.python.org/issue25977>
___
___
Python-bugs-list mailing list
Unsubscribe:
SilentGhost added the comment:
Here is the updated patch.
--
Added file: http://bugs.python.org/file41465/issue25916_3.diff
___
Python tracker
<http://bugs.python.org/issue25
Changes by SilentGhost :
Added file: http://bugs.python.org/file41466/issue25916_4.diff
___
Python tracker
<http://bugs.python.org/issue25916>
___
___
Python-bugs-list m
Changes by SilentGhost :
--
components: +Library (Lib) -Unicode
nosy: +lars.gustaebel
versions: +Python 3.5, Python 3.6 -Python 3.4
___
Python tracker
<http://bugs.python.org/issue25
Changes by SilentGhost :
--
components: +Interpreter Core -Argument Clinic
versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5
___
Python tracker
<http://bugs.python.org/issue25
Changes by SilentGhost :
--
nosy: +steven.daprano
versions: -Python 3.4
___
Python tracker
<http://bugs.python.org/issue26002>
___
___
Python-bugs-list mailin
SilentGhost added the comment:
Could you provide us with a sample file that demonstrates this behaviour?
--
nosy: +SilentGhost
___
Python tracker
<http://bugs.python.org/issue26
SilentGhost added the comment:
Arithmetic operations should not be used with booleans, they happen to work due
to boolean bean a subclass of int.
--
nosy: +SilentGhost
resolution: -> not a bug
stage: -> resolved
status: open -> closed
type: -&
SilentGhost added the comment:
Please use stackoverflow or python-tutor list to get help on this.
https://mail.python.org/pipermail/tutor/
What it looks like is the problem with your text editor not being able to
support EOL characters from a different OS.
--
nosy: +SilentGhost
SilentGhost added the comment:
Christof, you'd have to demonstrate the issue in more than just words. The
returned status code is hard-coded to be 2 in the error method and it does end
up being 2 when i run, could you post some output that led you to believe that
it is 1?
--
Changes by SilentGhost :
--
resolution: -> out of date
stage: -> resolved
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue11440>
___
___
SilentGhost added the comment:
It behaves exactly as described in documentation, the only thing I could
suggest is to re-read the following for details:
https://docs.python.org/3/library/os.path.html#os.path.split
--
nosy: +SilentGhost
resolution: -> not a bug
stage: -> re
SilentGhost added the comment:
> It seems to me, that this change in python is not nessesary.
> I don't, know how to find the commit, message who has changed this and why.
It was done in issue 13598. It's a bit puzzling that IPython decided to depend
on behaviour of a pri
Changes by SilentGhost :
--
keywords: +patch
nosy: +benjamin.peterson
stage: -> patch review
versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5
___
Python tracker
<http://bugs.python.org/issu
SilentGhost added the comment:
The patch indeed would be more useful, though I'd suggest to actually delete
the lines you think should be deleted, rather than just leave the commented out.
--
nosy: +SilentGhost
___
Python tracker
Changes by SilentGhost :
--
versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5
___
Python tracker
<http://bugs.python.org/issue26076>
___
___
Changes by SilentGhost :
--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware
type: crash -> compile error
___
Python tracker
<http://bugs.python.org/issu
SilentGhost added the comment:
I could submit a patch, but I'd switch over from getopt to argparse. I think
this exactly the case when such a change is warranted.
--
nosy: +SilentGhost
___
Python tracker
<http://bugs.python.org/is
SilentGhost added the comment:
Here is the patch that incorporates earlier changes from Vajrasky's patch as
well as wording from Evan's patch in issue24649. I've extended the test of
failures, but I'm not sure if much can be done about the test of successful
executions. I&
SilentGhost added the comment:
A re-write using argparse is submitted in the issue22642, that's why I'm
closing this issue. Changes from Evan's patch were incorporated in the
submitted patch there.
------
nosy: +SilentGhost
resolution: -> out of date
stage: needs patch
SilentGhost added the comment:
Here is the updated version of the patch that addresses Senthil's comments.
Besides re-flowing code, I've also added enforcement of --summary switch and
re-factored and expanded the test_failures. It probably would be good if
someone could test this
Changes by SilentGhost :
--
assignee: -> docs@python
components: +Documentation, Library (Lib)
nosy: +docs@python, yselivanov
stage: -> needs patch
versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4
___
Python tracker
Changes by SilentGhost :
--
components: +Library (Lib)
nosy: +gvanrossum, pitrou
versions: +Python 3.6 -Python 3.4
___
Python tracker
<http://bugs.python.org/issue26
Changes by SilentGhost :
--
components: +Library (Lib)
nosy: +haypo
___
Python tracker
<http://bugs.python.org/issue25957>
___
___
Python-bugs-list mailin
Changes by SilentGhost :
--
nosy: +haypo
stage: -> patch review
___
Python tracker
<http://bugs.python.org/issue25602>
___
___
Python-bugs-list mailing list
Un
Changes by SilentGhost :
--
nosy: +alanmcintyre, serhiy.storchaka, twouters
versions: +Python 3.5, Python 3.6 -Python 3.4
___
Python tracker
<http://bugs.python.org/issue26
Changes by SilentGhost :
--
nosy: +giampaolo.rodola
versions: +Python 3.6 -Python 3.4
___
Python tracker
<http://bugs.python.org/issue25491>
___
___
Python-bug
Changes by SilentGhost :
--
nosy: +benjamin.peterson
versions: +Python 3.6
___
Python tracker
<http://bugs.python.org/issue24945>
___
___
Python-bugs-list mailin
SilentGhost added the comment:
Serhiy, I cannot reproduce these leaks on recent checkout. Is this something
that's still happens for you?
--
nosy: +SilentGhost
___
Python tracker
<http://bugs.python.org/is
SilentGhost added the comment:
No, the shown code works just fine.
--
nosy: +SilentGhost
resolution: -> not a bug
stage: -> resolved
status: open -> closed
___
Python tracker
<http://bugs.python.or
Changes by SilentGhost :
--
components: +Library (Lib)
nosy: +gvanrossum, pitrou
versions: +Python 3.6 -Python 3.5
___
Python tracker
<http://bugs.python.org/issue26
SilentGhost added the comment:
Vasyl, this line in your code is causing the problem:
for row in readed:
The error reasonably clear states that it's due to your `fieldnames' parameter
being non-iterable. Again, this has nothing whatsoever to do with `dialect'
argument and d
SilentGhost added the comment:
It is, however, exactly what documentation says it should do:
> The “**” pattern means “this directory and all subdirectories, recursively”.
--
nosy: +SilentGhost
resolution: -> not a bug
stage: -> resolved
status: open
Changes by SilentGhost :
--
nosy: +benjamin.peterson
___
Python tracker
<http://bugs.python.org/issue26102>
___
___
Python-bugs-list mailing list
Unsubscribe:
SilentGhost added the comment:
For posixpath the fix is straightforward: just skip that assert if the home
ends up being '/' (the '/' is tested above).
For pathlib, I'm not entirely sure what the fix should be.
--
nosy: +SilentGhost, pitrou
versions: +Pytho
Changes by SilentGhost :
--
nosy: +brett.cannon, eric.snow, ncoghlan
___
Python tracker
<http://bugs.python.org/issue25682>
___
___
Python-bugs-list mailin
Changes by SilentGhost :
--
nosy: +georg.brandl
versions: +Python 3.6
___
Python tracker
<http://bugs.python.org/issue26092>
___
___
Python-bugs-list mailin
Changes by SilentGhost :
--
nosy: +georg.brandl
type: -> behavior
___
Python tracker
<http://bugs.python.org/issue26072>
___
___
Python-bugs-list mai
Changes by SilentGhost :
--
components: +Library (Lib) -Extension Modules
nosy: +eric.araujo
versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5
___
Python tracker
<http://bugs.python.org/issue26
Changes by SilentGhost :
--
keywords: +3.5regression
nosy: +serhiy.storchaka
type: -> behavior
versions: +Python 3.6
___
Python tracker
<http://bugs.python.org/issu
SilentGhost added the comment:
poostenr, this is demonstrably not a problem with the CPython, which this bug
tracker is about. There are few options available on the internet if you need
help with your code: mailing lists and irc are among them.
--
nosy: +SilentGhost
resolution
Changes by SilentGhost :
--
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue26126>
___
___
Python-bugs-list mailing list
Unsubscrib
SilentGhost added the comment:
Mark, your XFORMS dictionary contains this entry: 0x00C6: "ae"
It should be 'AE'. The same applies to 0x0152: "oe" which should be 'OE'.
--
nosy: +SilentGhost
resolution: -> not a bug
stage: -> resolved
SilentGhost added the comment:
Here is the patch. Most of the fixes are however for the tokenize function that
was for whatever reason linked to the module.
--
keywords: +patch
nosy: +SilentGhost
stage: -> patch review
type: -> behavior
Added file: http://bugs.python.org/fil
Changes by SilentGhost :
--
nosy: +benjamin.peterson, brett.cannon, georg.brandl, ncoghlan, yselivanov
___
Python tracker
<http://bugs.python.org/issue26
Changes by SilentGhost :
--
nosy: +haypo
___
Python tracker
<http://bugs.python.org/issue26003>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by SilentGhost :
--
nosy: +giampaolo.rodola
versions: +Python 3.6 -Python 3.4
___
Python tracker
<http://bugs.python.org/issue25458>
___
___
Python-bug
Changes by SilentGhost :
--
components: +Extension Modules
nosy: +ghaering
___
Python tracker
<http://bugs.python.org/issue24905>
___
___
Python-bugs-list mailin
Changes by SilentGhost :
--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware
___
Python tracker
<http://bugs.python.org/issue26
SilentGhost added the comment:
I'm adding Larry since it was his implementation of _Py_Uid_Converter in
issue15301 that seems to lead to this behaviour.
--
nosy: +SilentGhost, larry
versions: +Python 3.6 -Python 2.7, Python 3.5
___
Python tr
Changes by SilentGhost :
--
components: +Documentation
___
Python tracker
<http://bugs.python.org/issue25982>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by SilentGhost :
--
nosy: +giampaolo.rodola, josiahcarlson, stutzbach
___
Python tracker
<http://bugs.python.org/issue24906>
___
___
Python-bugs-list m
Changes by SilentGhost :
--
nosy: +alex, christian.heimes, dstufft, giampaolo.rodola, janssen, pitrou
stage: -> patch review
versions: +Python 3.6
___
Python tracker
<http://bugs.python.org/issu
SilentGhost added the comment:
> I there anything else I can do for this?
I think you've done all you could, it's just someone needs to commit it. I
don't think they're being rude on purpose - it's just that there are so many
committers in the nosy list that no on
SilentGhost added the comment:
Eric, Donald, is any one of you able to test this?
--
___
Python tracker
<http://bugs.python.org/issue25627>
___
___
Python-bug
SilentGhost added the comment:
Yes, version 12 is the final patch. It doesn't add those options. To copy my
opinion from the rietveld (https://bugs.python.org/review/19475/#msg14):
> I don't really think nanoseconds belong here. If they don't
> exist anywhere else in t
SilentGhost added the comment:
> What about milliseconds? I'll leave it for Guido to make a call on
> nanoseconds. My vote is +0.5.
The only reason I didn't mention milliseconds because they exist in timedelta
instantiation. And really, being the only place in the whole m
Changes by SilentGhost :
--
nosy: +brett.cannon
___
Python tracker
<http://bugs.python.org/issue26153>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by SilentGhost :
--
components: +Library (Lib)
nosy: +rhettinger
stage: -> test needed
___
Python tracker
<http://bugs.python.org/issue26150>
___
_
Changes by SilentGhost :
--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware
___
Python tracker
<http://bugs.python.org/issue26
Changes by SilentGhost :
--
nosy: +kbk, roger.serwy, terry.reedy
title: Buffer OverFlow -> Buffer OverFlow in IDLE
___
Python tracker
<http://bugs.python.org/issu
Changes by SilentGhost :
--
nosy: +alanmcintyre, serhiy.storchaka, twouters
___
Python tracker
<http://bugs.python.org/issue26185>
___
___
Python-bugs-list mailin
Changes by SilentGhost :
--
stage: -> patch review
___
Python tracker
<http://bugs.python.org/issue26185>
___
___
Python-bugs-list mailing list
Unsubscrib
Changes by SilentGhost :
--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware
___
Python tracker
<http://bugs.python.org/issue26
Changes by SilentGhost :
--
components: +asyncio
nosy: +giampaolo.rodola, gvanrossum, haypo, pitrou, yselivanov
___
Python tracker
<http://bugs.python.org/issue26
Changes by SilentGhost :
--
nosy: +bethard
versions: +Python 3.5, Python 3.6 -Python 3.4
___
Python tracker
<http://bugs.python.org/issue26181>
___
___
Python-bug
Changes by SilentGhost :
--
components: +asyncio
nosy: +giampaolo.rodola, gvanrossum, haypo, pitrou, yselivanov
___
Python tracker
<http://bugs.python.org/issue26
Changes by SilentGhost :
--
components: +Extension Modules
nosy: +doko
versions: -Python 3.2, Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/issue26
SilentGhost added the comment:
Assuming that you're talking about https://pypi.python.org/pypi/crypto/ - it is
unfortunate that pip is so lax with capitalisation rules when installing a
package, but as far as I can see there isn't a "Crypto" package anywhere and
you'r
SilentGhost added the comment:
If you're to drop the space between the argument and its value, e.g.
try_args('-a-a'), it seems to work as intended. The third example (
try_args("-a", "--")) still wouldn't work, but it looks like a reasonable
workarou
Changes by SilentGhost :
--
nosy: +giampaolo.rodola
___
Python tracker
<http://bugs.python.org/issue26209>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by SilentGhost :
--
nosy: +georg.brandl
versions: +Python 3.6 -Python 3.4
___
Python tracker
<http://bugs.python.org/issue26214>
___
___
Python-bugs-list m
Changes by SilentGhost :
--
versions: +Python 3.6 -Python 2.7
___
Python tracker
<http://bugs.python.org/issue26223>
___
___
Python-bugs-list mailing list
Unsub
New submission from SilentGhost:
You'd have to provide more information if you'd like that looked into.
--
nosy: +SilentGhost
versions: +Python 3.5 -Python 3.4
___
Python tracker
<http://bugs.python.o
SilentGhost added the comment:
I think it's worth saying that this wasn't a random choice intended to confuse
beginners. Strings used represent input that is identical to the command-line
input: if one wants to test it, one can just copy that string directly into the
propmpt, i
Changes by SilentGhost :
--
nosy: +michael.foord
___
Python tracker
<http://bugs.python.org/issue26232>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by SilentGhost :
--
components: +Extension Modules -Interpreter Core
nosy: +ezio.melotti, pitrou, rhettinger
versions: +Python 3.6 -Python 3.5
___
Python tracker
<http://bugs.python.org/issue26
SilentGhost added the comment:
Would you mind linking to the relevant part of documentation?
--
nosy: +SilentGhost
___
Python tracker
<http://bugs.python.org/issue26
SilentGhost added the comment:
It's due to issue 17536 and particularly 5a1429e9b621
I presume doko would be happy to follow up on that.
--
nosy: +SilentGhost, doko
___
Python tracker
<http://bugs.python.org/is
Changes by SilentGhost :
--
components: +Extension Modules, Library (Lib)
nosy: +benjamin.peterson
___
Python tracker
<http://bugs.python.org/issue26255>
___
___
Changes by SilentGhost :
--
components: +Extension Modules -Interpreter Core
nosy: +ezio.melotti, pitrou, rhettinger
___
Python tracker
<http://bugs.python.org/issue26
SilentGhost added the comment:
Well, you seem to suggest we add something to documentation to accommodate
people who don't read it in the first place.
--
___
Python tracker
<http://bugs.python.org/is
SilentGhost added the comment:
The docs seem to clearly show a str(x) as the way to produce the desired form
(without braces). https://docs.python.org/3/library/uuid.html#example
--
nosy: +SilentGhost
___
Python tracker
<http://bugs.python.
Changes by SilentGhost :
--
nosy: +pitrou
___
Python tracker
<http://bugs.python.org/issue26115>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by SilentGhost :
--
nosy: +twouters
___
Python tracker
<http://bugs.python.org/issue26271>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by SilentGhost :
--
components: +Extension Modules
nosy: +alanmcintyre, serhiy.storchaka, twouters
versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5
___
Python tracker
<http://bugs.python.org/issue26
Changes by SilentGhost :
--
nosy: +alanmcintyre, serhiy.storchaka, twouters
versions: +Python 3.6 -Python 3.4
___
Python tracker
<http://bugs.python.org/issue26
Changes by SilentGhost :
--
nosy: +benjamin.peterson, brett.cannon, haypo, skrah, yselivanov
___
Python tracker
<http://bugs.python.org/issue26285>
___
___
Pytho
1001 - 1100 of 1410 matches
Mail list logo