[issue26587] Possible duplicate entries in sys.path if .pth files are used with zip's

2016-03-20 Thread SilentGhost

SilentGhost added the comment:

Thanks for this, Mandeep. I don't think it is entirely the same issue that 
Wolfgang is describing. He's particularly concerned about the clash of .zip 
files from the sys.path with ones coming from .pth files for example. And while 
the proposed fix would resolve the issue, I don't feel it would be entirely 
correct. For the record, I'm not even sure sys.path is guaranteed to be contain 
no duplicates, at least I wasn't able to find a statement to that effect in the 
docs. In any case, I'm adding Brett here who was seemingly the last one to 
touch that bit of code.

I'm also attaching a path with what I think is a more appropriate and smaller 
fix.

--
keywords: +patch
nosy: +brett.cannon
stage: test needed -> patch review
Added file: http://bugs.python.org/file4/issue26587.diff

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26587>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26583] test_timestamp_overflow fails

2016-03-19 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +Macintosh, Tests
nosy: +ned.deily, ronaldoussoren
type:  -> behavior

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26583>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26570] comma-separated cookies with expires header do not parse properly

2016-03-19 Thread SilentGhost

SilentGhost added the comment:

This is not a regression and you can see that if you do

print(SimpleCookie('A=B; expires=Thu, 01-Jan-1970 00:00:00 GMT, C=D'))

The values of expires and Path attribute were parsed incorrectly, even though 
you got two cookies. The problem as far as I can see is a non-standard 
separator between attributes that you're trying to use, i.e. a comma. If you 
were to use a semi-colon (or a space) there would not be a problem in any of 
the versions.

--
nosy: +SilentGhost
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed
type:  -> behavior

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26570>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26580] Documentation for ftplib still references ftpmirror.py

2016-03-19 Thread SilentGhost

SilentGhost added the comment:

This patch removes the offending paragraph.

--
keywords: +patch
nosy: +SilentGhost
stage:  -> patch review
type:  -> behavior
versions: +Python 3.6
Added file: http://bugs.python.org/file42187/issue26580.diff

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26580>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26577] inspect.getclosurevars returns incorrect variable when using class member with the same name as other variable

2016-03-19 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +yselivanov
type:  -> behavior
versions:  -Python 3.3, Python 3.4

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26577>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26587] Possible duplicate entries in sys.path if .pth files are used with zip's

2016-03-18 Thread SilentGhost

SilentGhost added the comment:

Could you provide a code example of your using addsitedir that results in 
duplicates?

--
nosy: +SilentGhost
stage:  -> test needed
versions:  -Python 3.4

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26587>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26560] Error in assertion in wsgiref.handlers.BaseHandler.start_response

2016-03-15 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +pje
type:  -> behavior
versions: +Python 3.6

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26560>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26565] [ctypes] Add value attribute to non basic pointers.

2016-03-15 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +amaury.forgeotdarc, belopolsky, meador.inge
versions: +Python 3.6

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26565>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26549] co_stacksize is calculated from unoptimized code

2016-03-13 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +benjamin.peterson, brett.cannon, georg.brandl, ncoghlan, yselivanov

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26549>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26499] http.client.IncompleteRead from HTTPResponse read after part reading file

2016-03-13 Thread SilentGhost

SilentGhost added the comment:

Updated patch addresses the rietveld comments.

--
Added file: http://bugs.python.org/file42155/issue26499_5.diff

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26499>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26499] http.client.IncompleteRead from HTTPResponse read after part reading file

2016-03-12 Thread SilentGhost

SilentGhost added the comment:

OK, here is the patch including the tests that seem to exercise the behaviour.

--
Added file: http://bugs.python.org/file42151/issue26499_4.diff

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26499>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26536] Add the SIO_LOOPBACK_FAST_PATH option to socket.ioctl

2016-03-11 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +Windows
nosy: +paul.moore, pitrou, steve.dower, tim.golden, zach.ware
stage:  -> patch review

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26536>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12736] Request for python casemapping functions to use full not simple casemaps per Unicode's recommendation

2016-03-10 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
versions: +Python 3.4, Python 3.5, Python 3.6 -Python 2.7

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue12736>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26532] build fails with address sanitizer

2016-03-10 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +benjamin.peterson, haypo, serhiy.storchaka
versions: +Python 3.6

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26532>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26499] http.client.IncompleteRead from HTTPResponse read after part reading file

2016-03-09 Thread SilentGhost

SilentGhost added the comment:

All the highlighted issue are now fixed. The limit on n in read1 wasn't tested.

Your suggestion regarding testing went a bit over my head, Martin. So, just 
trying to make sure we're on the same page. ExtendedReadTest, where I thought 
placing these new tests, is already employing FakeSocket, but I'm not sure how 
one would add a second response and to what. In any case, some of the code in 
that class seems rather specific, so it's not clear if it could or should be 
reused.

--
Added file: http://bugs.python.org/file42106/issue26499_3.diff

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26499>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26499] http.client.IncompleteRead from HTTPResponse read after part reading file

2016-03-09 Thread SilentGhost

SilentGhost added the comment:

Here is the updated patch. I only included the additional fix for read1 since 
readlines is not overwritten in the HTTPConnection. Not sure how to write test 
for it, does it need a much longer body (compared to the one in tests) to 
produce this behaviour?

The larger refactoring might be appropriate for 3.6, but I believe these 
smaller fixed could go into the next micro release.

--
Added file: http://bugs.python.org/file42097/issue26499_2.diff

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26499>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26499] http.client.IncompleteRead from HTTPResponse read after part reading file

2016-03-07 Thread SilentGhost

SilentGhost added the comment:

As far as I'm able to track it, it was a refactoring in issue 19009 that is 
responsible for this regression (rev 49017c391564). I'm adding Kristján, so 
that he'd have a look at the attached fix and test.

--
keywords: +3.5regression, patch
nosy: +SilentGhost, kristjan.jonsson, serhiy.storchaka
stage:  -> patch review
versions: +Python 3.6
Added file: http://bugs.python.org/file42084/issue26499.diff

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26499>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26473] Python 3.5 not run

2016-03-02 Thread SilentGhost

SilentGhost added the comment:

As the installer says and as mentioned in documentation a minimum supported 
versions is Windows Vista.

--
nosy: +SilentGhost
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26473>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19475] Add timespec optional flag to datetime isoformat() to choose the precision

2016-03-02 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy:  -SilentGhost

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19475>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26452] Wrong line number attributed to comprehension expressions

2016-03-01 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +haypo, serhiy.storchaka
versions:  -Python 3.2, Python 3.3, Python 3.4

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26452>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26385] the call of tempfile.NamedTemporaryFile fails and leaves a file on the disk

2016-02-29 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26385>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue25910] Fixing links in documentation

2016-02-27 Thread SilentGhost

SilentGhost added the comment:

Perhaps, I'm misreading the log output, but it seems to me that it's 
Doc/tools/susp-ignored.csv that needs updating. Here is the attached patch.

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25910>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26430] quote marks problem on loaded file

2016-02-24 Thread SilentGhost

SilentGhost added the comment:

OK, sorry, but this is just nonsense. What most likely happens in your case is 
that the file doesn't contain a standard ASCII double quote, but one of it's 
fancy siblings.

For the note: I did test and naturally wasn't able to reproduce this.

--
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26430>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26430] quote marks problem on loaded file

2016-02-24 Thread SilentGhost

SilentGhost added the comment:

Could you please upload the test file that would allow us to reproduce this 
behaviour.

--
nosy: +SilentGhost

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26430>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue25801] ResourceWarning in test_zipfile64

2016-02-22 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
status: open -> languishing

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25801>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26405] tkinter askopenfilename doubleclick issue on windows

2016-02-22 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +Windows
nosy: +gpolo, paul.moore, serhiy.storchaka, steve.dower, tim.golden, zach.ware

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26405>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26411] Suggestion concerning compile-time warnings

2016-02-22 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +benjamin.peterson, brett.cannon, georg.brandl, ncoghlan, yselivanov

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26411>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue25910] Fixing links in documentation

2016-02-22 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
status: open -> languishing

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25910>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26401] Error in documentation for "compile" built-in function

2016-02-21 Thread SilentGhost

SilentGhost added the comment:

Updated patch.

--
Added file: http://bugs.python.org/file41989/issue26401_2.diff

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26401>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26401] Error in documentation for "compile" built-in function

2016-02-21 Thread SilentGhost

SilentGhost added the comment:

TypeError is raised in 3.4

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26401>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26402] Regression in Python 3.5 xmlrpc.client, raises RemoteDisconnected seemingly randomly.

2016-02-21 Thread SilentGhost

SilentGhost added the comment:

The code in question[0] was introduced in issue 3566: perhaps Martin could 
comment on existing implementation.

[0] https://hg.python.org/cpython/rev/eba80326ba53

--
components: +Library (Lib) -IO
nosy: +SilentGhost, martin.panter
stage:  -> test needed
type: crash -> behavior
versions: +Python 3.6

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26402>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26401] Error in documentation for "compile" built-in function

2016-02-21 Thread SilentGhost

SilentGhost added the comment:

Here is the patch.

--
keywords: +patch
nosy: +SilentGhost
versions: +Python 3.6
Added file: http://bugs.python.org/file41985/issue26401.diff

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26401>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26385] the call of tempfile.NamedTemporaryFile fails and leaves a file on the disk

2016-02-21 Thread SilentGhost

SilentGhost added the comment:

Then, I think the TypeError check could be dropped and 'wr' replaced by an 
obviously wrong value, both seem fairly trivial. I don't have a working 2.7 
checkout, so if anyone wants to extend the fix to that branch, they're more 
than welcome.

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26385>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26385] the call of tempfile.NamedTemporaryFile fails and leaves a file on the disk

2016-02-20 Thread SilentGhost

SilentGhost added the comment:

Here is the updated patch including fixes for except and order of deletion.

--
Added file: http://bugs.python.org/file41979/issue26385_3.diff

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26385>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26385] the call of tempfile.NamedTemporaryFile fails and leaves a file on the disk

2016-02-18 Thread SilentGhost

SilentGhost added the comment:

I wonder if Victor could clarify why bare except wasn't used in the python3 
version.

Anyway, here is the updated patch testing for TypeError as well.

--
nosy: +haypo
Added file: http://bugs.python.org/file41968/issue26385_2.diff

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26385>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26370] shelve filename inconsistent between platforms

2016-02-18 Thread SilentGhost

SilentGhost added the comment:

Would you like to try to submit a patch for a solution you think most 
appropriate?

--
nosy: +SilentGhost, georg.brandl
type: behavior -> enhancement
versions: +Python 3.6 -Python 3.5

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26370>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26374] concurrent_futures Executor.map semantics better specified in docs

2016-02-18 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +Library (Lib)
nosy: +bquinlan

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26374>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26381] Add 'geo' URI scheme (RFC 5870) to urllib.parse.uses_params

2016-02-18 Thread SilentGhost

New submission from SilentGhost:

Here is the spec: https://tools.ietf.org/html/rfc5870#section-3.3

--
nosy: +SilentGhost, orsenthil

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26381>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26385] the call of tempfile.NamedTemporaryFile fails and leaves a file on the disk

2016-02-18 Thread SilentGhost

SilentGhost added the comment:

Here is a naïve fix including a test.

--
keywords: +patch
nosy: +SilentGhost, georg.brandl
stage:  -> patch review
versions: +Python 3.5, Python 3.6
Added file: http://bugs.python.org/file41959/issue26385.diff

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26385>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26387] Race condition in sqlite module

2016-02-18 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +Extension Modules
nosy: +ghaering
versions:  -Python 3.2, Python 3.3

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26387>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15873] datetime: add ability to parse RFC 3339 dates and times

2016-02-18 Thread SilentGhost

SilentGhost added the comment:

Probably only other solution that I see is to add the third argument, an actual 
class, e.g.:

_parse_isodatetime(cls, string, datetime)

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue15873>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15873] datetime: add ability to parse RFC 3339 dates and times

2016-02-18 Thread SilentGhost

SilentGhost added the comment:

Mathieu, nothing was attached. The penalty's worth only a few if statements, I 
wouldn't worry too much about it. Besides, a C version is going to be provided 
as well, right?

Perhaps the following approach might solve the subclasses problem:

regex = dispatch.get(cls)
if not regex:
classes = datetime, date, time
cls = next((c for c in classes if issubclass(cls, c)), None)
if cls is None:   
raise TypeError
regex = dispatch[cls]

Perhaps, TypeError is unnecessary there and just propagating StopIteration 
would do. In that case the if clause would look like:

classes = datetime, date, time
cls = next(c for c in classes if issubclass(cls, c))
regex = dispatch[cls]

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue15873>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15873] datetime: add ability to parse RFC 3339 dates and times

2016-02-17 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +SilentGhost

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue15873>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26359] CPython build options for out-of-the box performance

2016-02-15 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +haypo

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26359>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26356] Registration

2016-02-13 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26356>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26333] Multiprocessing imap hangs when generator input errors

2016-02-10 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +jnoller, sbt
versions: +Python 3.5 -Python 3.4

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26333>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26334] bytes.translate() doesn't take keyword arguments; docs suggests it does

2016-02-10 Thread SilentGhost

SilentGhost added the comment:

I don't think docs suggest that in any way. The keyword arguments are typically 
described like this: https://docs.python.org/3/library/stdtypes.html#str.split

bytes.translate has a typical signature of a function with optional positional 
arguments.

--
nosy: +SilentGhost

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26334>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue25985] Use sys.version_info instead of sys.version

2016-02-10 Thread SilentGhost

SilentGhost added the comment:

No further comments from me.

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25985>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue25985] Use sys.version_info instead of sys.version

2016-02-08 Thread SilentGhost

SilentGhost added the comment:

> On a related note, I think that 
> https://hg.python.org/cpython/file/tip/Makefile.pre.in#l571 should get the 
> same treatment.

Agree, that should be included in the patch.

--
nosy: +SilentGhost

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25985>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue25226] "suffix" attribute not documented in logging.TimedRotatingFileHandler

2016-02-07 Thread SilentGhost

SilentGhost added the comment:

It isn't documented because it's an internal attribute. If it did work for 
someone, it's by accident. Naturally, Vinay would have to make a final 
judgement regarding this, but I'd be inclined to close as not a bug.

--
nosy: +SilentGhost

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25226>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24950] FAIL: test_expanduser when $HOME=/

2016-02-07 Thread SilentGhost

SilentGhost added the comment:

Here is the patch that addresses the issue in both tests. Felix, could you test 
it?

--
keywords: +patch
stage:  -> patch review
Added file: http://bugs.python.org/file41842/issue24950.diff

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue24950>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26299] wsgiref.util FileWrapper raises ValueError: I/O operation on closed file.

2016-02-07 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +pje
versions: +Python 3.6 -Python 3.4

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26299>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24950] FAIL: test_expanduser when $HOME=/

2016-02-07 Thread SilentGhost

SilentGhost added the comment:

> What if HOME is "//"?

Is this possible? What would be the result of these tests? Would they fail? As 
far as I understand my patch is just fixing problem introduced by fixes from 
issue 17809.

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue24950>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26269] zipfile should call lstat instead of stat if available

2016-02-04 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
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 <rep...@bugs.python.org>
<http://bugs.python.org/issue26269>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26285] Garbage collection of unused input sections from CPython binaries

2016-02-04 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +benjamin.peterson, brett.cannon, haypo, skrah, yselivanov

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26285>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26283] zipfile can not handle the path build by os.path.join()

2016-02-04 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +alanmcintyre, serhiy.storchaka, twouters
versions: +Python 3.6 -Python 3.4

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26283>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26271] freeze.py makefile uses the wrong flags variables

2016-02-04 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +twouters

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26271>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26115] pathlib.glob('**') returns only directories

2016-02-03 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +pitrou

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26115>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26267] UUID docs should say how to get "standard form"

2016-02-02 Thread SilentGhost

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 <rep...@bugs.python.org>
<http://bugs.python.org/issue26267>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26267] UUID docs should say how to get "standard form"

2016-02-02 Thread SilentGhost

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 <rep...@bugs.python.org>
<http://bugs.python.org/issue26267>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26263] Serialize array.array to JSON by default

2016-02-02 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +Extension Modules -Interpreter Core
nosy: +ezio.melotti, pitrou, rhettinger

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26263>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26255] symtable.Symbol.is_referenced() returns false for valid use

2016-02-01 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +Extension Modules, Library (Lib)
nosy: +benjamin.peterson

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26255>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26247] Document Chrome/Chromium for python2.7

2016-01-31 Thread SilentGhost

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 <rep...@bugs.python.org>
<http://bugs.python.org/issue26247>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26241] repr() and str() are identical for floats in 3.5

2016-01-30 Thread SilentGhost

SilentGhost added the comment:

Would you mind linking to the relevant part of documentation?

--
nosy: +SilentGhost

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26241>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26232] Mock(spec=spec) has no effect

2016-01-28 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +michael.foord

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26232>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26229] Make number serialization ES6/V8 compatible

2016-01-28 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +Extension Modules -Interpreter Core
nosy: +ezio.melotti, pitrou, rhettinger
versions: +Python 3.6 -Python 3.5

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26229>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20598] argparse docs: '7'.split() is confusing magic

2016-01-28 Thread SilentGhost

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, it might be harder to reconstruct it from a list of strings.

--
nosy: +SilentGhost

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue20598>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26230] Cookies do not correct if cookiename includes [ or ]

2016-01-28 Thread SilentGhost

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 <rep...@bugs.python.org>
<http://bugs.python.org/issue26230>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26214] textwrap should minimize number of breaks in extra long words

2016-01-27 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +georg.brandl
versions: +Python 3.6 -Python 3.4

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26214>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26223] decimal.to_eng_string() does not implement engineering notation in all cases.

2016-01-27 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
versions: +Python 3.6 -Python 2.7

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26223>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26209] TypeError in smtpd module with string arguments

2016-01-26 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +giampaolo.rodola

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26209>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26196] Argparse breaks when a switch is given an argument beginning with a dash

2016-01-25 Thread SilentGhost

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 
workaround to me.

--
nosy: +SilentGhost, bethard

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26196>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26188] Provide more helpful error message when `await` is called inside non-`async` method

2016-01-24 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +asyncio
nosy: +giampaolo.rodola, gvanrossum, haypo, pitrou, yselivanov

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26188>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26192] python3 k1om dissociation permanence: libffi

2016-01-24 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +Extension Modules
nosy: +doko
versions:  -Python 3.2, Python 3.3, Python 3.4

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26192>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26191] pip on Windows doesn't honor Case

2016-01-24 Thread SilentGhost

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're never encouraged to use such a capitalisation in their docs.

Feel free to submit an issue on pip tracker, but this doesn't at all seem 
suitable for this one.

--
nosy: +SilentGhost
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed
type: compile error -> behavior

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26191>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26181] argparse can't handle positional argument after list (help message is wrong)

2016-01-23 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +bethard
versions: +Python 3.5, Python 3.6 -Python 3.4

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26181>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26185] zipfile.ZipInfo slots can raise unexpected AttributeError

2016-01-23 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
stage:  -> patch review

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26185>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26185] zipfile.ZipInfo slots can raise unexpected AttributeError

2016-01-23 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +alanmcintyre, serhiy.storchaka, twouters

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26185>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26183] 2.7.11 won't clean install on Windows 10 x64

2016-01-23 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26183>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26182] Deprecation warnings for the future async and await keywords

2016-01-23 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +asyncio
nosy: +giampaolo.rodola, gvanrossum, haypo, pitrou, yselivanov

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26182>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26169] Buffer OverFlow in IDLE

2016-01-20 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +kbk, roger.serwy, terry.reedy
title: Buffer OverFlow -> Buffer OverFlow in IDLE

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26169>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26153] PyImport_GetModuleDict: no module dictionary! when `__del__` triggers a warning

2016-01-19 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +brett.cannon

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26153>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26155] 3.5.1 installer issue on Win 7 32 bit

2016-01-19 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26155>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19475] Add timespec optional flag to datetime isoformat() to choose the precision

2016-01-17 Thread SilentGhost

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 the module, why should they be suddenly introduced 
> here?
> of all places. It would be fine to use some generic solution that would enable
> or ease their addition in the future, but they shall not be added at this 
> time.

(there are altogether 27 messages there, which everyone's naturally CCed on).

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19475>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue25724] SSLv3 test failure on Ubuntu 16.04 LTS

2016-01-17 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +alex, christian.heimes, dstufft, giampaolo.rodola, janssen, pitrou
stage:  -> patch review
versions: +Python 3.6

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25724>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19475] Add timespec optional flag to datetime isoformat() to choose the precision

2016-01-17 Thread SilentGhost

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 one is feeling like it's their job.

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19475>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24905] Allow incremental I/O to blobs in sqlite3

2016-01-16 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +Extension Modules
nosy: +ghaering

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue24905>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26132] 2.7.11 Windows Installer issues on Win2008R2

2016-01-16 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26132>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue25458] ftplib: command response shift - mismatch

2016-01-16 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +giampaolo.rodola
versions: +Python 3.6 -Python 3.4

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25458>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26072] pdb fails to access variables closed over

2016-01-15 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +georg.brandl
type:  -> behavior

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26072>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26124] shlex.quote and pipes.quote do not quote shell keywords

2016-01-15 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
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 <rep...@bugs.python.org>
<http://bugs.python.org/issue26124>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26123] http.client status code constants incompatible with Python 3.4

2016-01-15 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
keywords: +3.5regression
nosy: +serhiy.storchaka
type:  -> behavior
versions: +Python 3.6

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26123>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26118] String performance issue using single quotes

2016-01-15 Thread SilentGhost

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:  -> not a bug
stage:  -> resolved
status: open -> closed

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26118>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26126] Possible subtle bug when normalizing and str.translate()ing

2016-01-15 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
status: open -> closed

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26126>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26126] Possible subtle bug when normalizing and str.translate()ing

2016-01-15 Thread SilentGhost

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

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26126>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26127] Broken link in docs for tokenize

2016-01-15 Thread SilentGhost

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/file41628/issue26127.diff

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26127>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26130] redundant local copy of a char pointer in classify in Parser\parser.c

2016-01-15 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +benjamin.peterson, brett.cannon, georg.brandl, ncoghlan, yselivanov

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26130>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26003] Issues with PyEval_InitThreads and PyGILState_Ensure

2016-01-15 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +haypo

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26003>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26092] doctest should allow custom sys.displayhook

2016-01-15 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
nosy: +georg.brandl
versions: +Python 3.6

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26092>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26103] Contradiction in definition of "data descriptor" between (dotted lookup behavior/datamodel documentation) and (inspect lib/descriptor how-to)

2016-01-14 Thread SilentGhost

Changes by SilentGhost <ghost@gmail.com>:


--
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 <rep...@bugs.python.org>
<http://bugs.python.org/issue26103>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



<    5   6   7   8   9   10   11   12   13   14   >